Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dgraph
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
dgraph
Commits
69f0e9dd
Commit
69f0e9dd
authored
8 years ago
by
Pawan Rawal
Browse files
Options
Downloads
Patches
Plain Diff
Adding Latency to protocol buffer response.
parent
d726deae
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
client/go/main.go
+2
-2
2 additions, 2 deletions
client/go/main.go
query/graph/graphresponse.pb.go
+66
-23
66 additions, 23 deletions
query/graph/graphresponse.pb.go
query/graph/graphresponse.proto
+12
-1
12 additions, 1 deletion
query/graph/graphresponse.proto
server/main.go
+10
-3
10 additions, 3 deletions
server/main.go
with
90 additions
and
29 deletions
client/go/main.go
+
2
−
2
View file @
69f0e9dd
...
...
@@ -42,12 +42,12 @@ func main() {
c
:=
graph
.
NewDGraphClient
(
conn
)
r
,
err
:=
c
.
Query
(
context
.
Background
(),
&
graph
.
Request
{
Query
:
*
q
})
r
esp
,
err
:=
c
.
Query
(
context
.
Background
(),
&
graph
.
Request
{
Query
:
*
q
})
if
err
!=
nil
{
x
.
Err
(
glog
,
err
)
.
Fatal
(
"Error in getting response from server"
)
}
// TODO(pawan): Remove this later
fmt
.
Printf
(
"Subgraph %+v"
,
r
)
fmt
.
Printf
(
"Subgraph %+v"
,
r
esp
.
N
)
}
This diff is collapsed.
Click to expand it.
query/graph/graphresponse.pb.go
+
66
−
23
View file @
69f0e9dd
...
...
@@ -11,7 +11,9 @@ It is generated from these files:
It has these top-level messages:
Request
Value
Latency
Node
Response
*/
package
graph
...
...
@@ -51,6 +53,17 @@ func (m *Value) String() string { return proto.CompactTextString(m) }
func
(
*
Value
)
ProtoMessage
()
{}
func
(
*
Value
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor0
,
[]
int
{
1
}
}
type
Latency
struct
{
Parsing
string
`protobuf:"bytes,1,opt,name=parsing" json:"parsing,omitempty"`
Processing
string
`protobuf:"bytes,2,opt,name=processing" json:"processing,omitempty"`
Pb
string
`protobuf:"bytes,3,opt,name=pb" json:"pb,omitempty"`
}
func
(
m
*
Latency
)
Reset
()
{
*
m
=
Latency
{}
}
func
(
m
*
Latency
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
Latency
)
ProtoMessage
()
{}
func
(
*
Latency
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor0
,
[]
int
{
2
}
}
type
Node
struct
{
Uid
uint64
`protobuf:"varint,1,opt,name=uid" json:"uid,omitempty"`
Xid
string
`protobuf:"bytes,2,opt,name=xid" json:"xid,omitempty"`
...
...
@@ -62,7 +75,7 @@ type Node struct {
func
(
m
*
Node
)
Reset
()
{
*
m
=
Node
{}
}
func
(
m
*
Node
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
Node
)
ProtoMessage
()
{}
func
(
*
Node
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor0
,
[]
int
{
2
}
}
func
(
*
Node
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor0
,
[]
int
{
3
}
}
func
(
m
*
Node
)
GetProperties
()
map
[
string
]
*
Value
{
if
m
!=
nil
{
...
...
@@ -78,10 +91,36 @@ func (m *Node) GetChildren() []*Node {
return
nil
}
type
Response
struct
{
N
*
Node
`protobuf:"bytes,1,opt,name=n" json:"n,omitempty"`
L
*
Latency
`protobuf:"bytes,2,opt,name=l" json:"l,omitempty"`
}
func
(
m
*
Response
)
Reset
()
{
*
m
=
Response
{}
}
func
(
m
*
Response
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
Response
)
ProtoMessage
()
{}
func
(
*
Response
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor0
,
[]
int
{
4
}
}
func
(
m
*
Response
)
GetN
()
*
Node
{
if
m
!=
nil
{
return
m
.
N
}
return
nil
}
func
(
m
*
Response
)
GetL
()
*
Latency
{
if
m
!=
nil
{
return
m
.
L
}
return
nil
}
func
init
()
{
proto
.
RegisterType
((
*
Request
)(
nil
),
"graph.Request"
)
proto
.
RegisterType
((
*
Value
)(
nil
),
"graph.Value"
)
proto
.
RegisterType
((
*
Latency
)(
nil
),
"graph.Latency"
)
proto
.
RegisterType
((
*
Node
)(
nil
),
"graph.Node"
)
proto
.
RegisterType
((
*
Response
)(
nil
),
"graph.Response"
)
}
// Reference imports to suppress errors if they are not otherwise used.
...
...
@@ -95,7 +134,7 @@ const _ = grpc.SupportPackageIsVersion2
// Client API for DGraph service
type
DGraphClient
interface
{
Query
(
ctx
context
.
Context
,
in
*
Request
,
opts
...
grpc
.
CallOption
)
(
*
Nod
e
,
error
)
Query
(
ctx
context
.
Context
,
in
*
Request
,
opts
...
grpc
.
CallOption
)
(
*
Respons
e
,
error
)
}
type
dGraphClient
struct
{
...
...
@@ -106,8 +145,8 @@ func NewDGraphClient(cc *grpc.ClientConn) DGraphClient {
return
&
dGraphClient
{
cc
}
}
func
(
c
*
dGraphClient
)
Query
(
ctx
context
.
Context
,
in
*
Request
,
opts
...
grpc
.
CallOption
)
(
*
Nod
e
,
error
)
{
out
:=
new
(
Nod
e
)
func
(
c
*
dGraphClient
)
Query
(
ctx
context
.
Context
,
in
*
Request
,
opts
...
grpc
.
CallOption
)
(
*
Respons
e
,
error
)
{
out
:=
new
(
Respons
e
)
err
:=
grpc
.
Invoke
(
ctx
,
"/graph.DGraph/Query"
,
in
,
out
,
c
.
cc
,
opts
...
)
if
err
!=
nil
{
return
nil
,
err
...
...
@@ -118,7 +157,7 @@ func (c *dGraphClient) Query(ctx context.Context, in *Request, opts ...grpc.Call
// Server API for DGraph service
type
DGraphServer
interface
{
Query
(
context
.
Context
,
*
Request
)
(
*
Nod
e
,
error
)
Query
(
context
.
Context
,
*
Request
)
(
*
Respons
e
,
error
)
}
func
RegisterDGraphServer
(
s
*
grpc
.
Server
,
srv
DGraphServer
)
{
...
...
@@ -156,22 +195,26 @@ var _DGraph_serviceDesc = grpc.ServiceDesc{
}
var
fileDescriptor0
=
[]
byte
{
// 268 bytes of a gzipped FileDescriptorProto
0x1f
,
0x8b
,
0x08
,
0x00
,
0x00
,
0x09
,
0x6e
,
0x88
,
0x02
,
0xff
,
0x5c
,
0x90
,
0x41
,
0x4f
,
0x83
,
0x40
,
0x10
,
0x85
,
0xa5
,
0xb0
,
0xd5
,
0x0e
,
0x46
,
0xcd
,
0xea
,
0x01
,
0xab
,
0x89
,
0xcd
,
0x1e
,
0xb4
,
0x27
,
0x62
,
0xf0
,
0x62
,
0xf4
,
0xaa
,
0xf1
,
0x60
,
0x62
,
0x74
,
0x0f
,
0xde
,
0xa9
,
0x4c
,
0x2c
,
0xb1
,
0x01
,
0xdc
,
0x5d
,
0x8c
,
0xfd
,
0xed
,
0x5e
,
0x64
,
0x06
,
0x44
,
0xd2
,
0xdb
,
0xe3
,
0x7d
,
0xb3
,
0xc3
,
0x9b
,
0x07
,
0x87
,
0xef
,
0x26
,
0xad
,
0x96
,
0x06
,
0x6d
,
0x55
,
0x16
,
0x16
,
0xe3
,
0xca
,
0x94
,
0xae
,
0x94
,
0x82
,
0x4d
,
0x75
,
0x06
,
0xdb
,
0x1a
,
0x3f
,
0x6b
,
0xb4
,
0x4e
,
0x1e
,
0x81
,
0x68
,
0x84
,
0x59
,
0x47
,
0xde
,
0xcc
,
0x9b
,
0x4f
,
0x74
,
0xfb
,
0xa1
,
0x8e
,
0x41
,
0xbc
,
0xa6
,
0xab
,
0x1a
,
0xe5
,
0x01
,
0xf8
,
0xd6
,
0x99
,
0x0e
,
0x92
,
0x54
,
0x3f
,
0x1e
,
0x04
,
0x4f
,
0x65
,
0xc6
,
0xa8
,
0xce
,
0x33
,
0x46
,
0x81
,
0x26
,
0x49
,
0xce
,
0x77
,
0xe3
,
0x8c
,
0xda
,
0xe1
,
0x46
,
0xca
,
0x53
,
0x98
,
0xa4
,
0xce
,
0x99
,
0x7c
,
0x51
,
0x3b
,
0x8c
,
0x7c
,
0xf6
,
0xff
,
0x0d
,
0x79
,
0x0b
,
0xd0
,
0xc4
,
0xaa
,
0xd0
,
0xb8
,
0x1c
,
0x6d
,
0x14
,
0xcc
,
0xfc
,
0x79
,
0x98
,
0x9c
,
0xc4
,
0x1c
,
0x31
,
0xa6
,
0x5f
,
0xc4
,
0xcf
,
0x3d
,
0xbd
,
0x2f
,
0x9c
,
0x59
,
0xeb
,
0xc1
,
0xb8
,
0xbc
,
0x80
,
0x9d
,
0xb7
,
0x65
,
0xbe
,
0xca
,
0x0c
,
0x16
,
0x91
,
0xe0
,
0xa7
,
0xe1
,
0xe0
,
0xa9
,
0xee
,
0xe1
,
0xf4
,
0x11
,
0xf6
,
0x37
,
0xf6
,
0x50
,
0xd0
,
0x0f
,
0xfc
,
0x3b
,
0x99
,
0xa4
,
0x54
,
0x20
,
0xbe
,
0xe8
,
0x60
,
0x0e
,
0x1f
,
0x26
,
0xbb
,
0xdd
,
0x2a
,
0x2e
,
0x41
,
0xb7
,
0xe8
,
0x66
,
0x74
,
0xed
,
0x25
,
0x97
,
0x30
,
0xbe
,
0x7b
,
0x20
,
0x24
,
0xcf
,
0x41
,
0xbc
,
0x50
,
0x57
,
0x72
,
0xaf
,
0x9b
,
0xed
,
0x1a
,
0x9d
,
0x0e
,
0x63
,
0xa8
,
0xad
,
0xc5
,
0x98
,
0x9b
,
0xbf
,
0xfa
,
0x0d
,
0x00
,
0x00
,
0xff
,
0xff
,
0xe1
,
0x8a
,
0xe7
,
0x89
,
0x90
,
0x01
,
0x00
,
0x00
,
// 336 bytes of a gzipped FileDescriptorProto
0x1f
,
0x8b
,
0x08
,
0x00
,
0x00
,
0x09
,
0x6e
,
0x88
,
0x02
,
0xff
,
0x5c
,
0x52
,
0x4d
,
0x4f
,
0x02
,
0x31
,
0x10
,
0xb5
,
0xc0
,
0xf2
,
0x31
,
0x18
,
0x30
,
0xa3
,
0x87
,
0x05
,
0x8d
,
0x92
,
0x5e
,
0x24
,
0x1e
,
0xf6
,
0x80
,
0x1e
,
0x8c
,
0x1e
,
0xd5
,
0x78
,
0xd0
,
0x18
,
0xad
,
0x89
,
0xf7
,
0x05
,
0x1a
,
0xd8
,
0xb8
,
0xe9
,
0xae
,
0x6d
,
0xd7
,
0xc8
,
0x6f
,
0xf7
,
0xe2
,
0x76
,
0xb6
,
0x20
,
0xe1
,
0xf6
,
0xe6
,
0xbd
,
0xe9
,
0x7b
,
0xed
,
0x4c
,
0xe1
,
0x70
,
0xa1
,
0xe3
,
0x7c
,
0xa9
,
0xa5
,
0xc9
,
0x33
,
0x65
,
0x64
,
0x94
,
0xeb
,
0xcc
,
0x66
,
0x18
,
0x10
,
0xc9
,
0xcf
,
0xa0
,
0x25
,
0xe4
,
0x57
,
0x21
,
0x8d
,
0xc5
,
0x23
,
0x08
,
0x4a
,
0xa0
,
0x57
,
0x21
,
0x1b
,
0xb1
,
0x71
,
0x47
,
0x54
,
0x05
,
0x1f
,
0x40
,
0xf0
,
0x11
,
0xa7
,
0x85
,
0xc4
,
0x03
,
0xa8
,
0x1b
,
0xab
,
0xbd
,
0xe8
,
0x20
,
0x7f
,
0x87
,
0xd6
,
0x73
,
0x6c
,
0xa5
,
0x9a
,
0xad
,
0x30
,
0x84
,
0x56
,
0x1e
,
0x6b
,
0x93
,
0xa8
,
0x85
,
0x6f
,
0x58
,
0x97
,
0x78
,
0x0a
,
0x50
,
0x06
,
0xce
,
0xa4
,
0x21
,
0xb1
,
0x46
,
0xe2
,
0x16
,
0x83
,
0x3d
,
0xa8
,
0xe5
,
0xd3
,
0xb0
,
0x4e
,
0x7c
,
0x89
,
0xf8
,
0x2f
,
0x83
,
0xc6
,
0x4b
,
0x36
,
0xa7
,
0xbc
,
0x22
,
0x99
,
0x93
,
0x5d
,
0x43
,
0x38
,
0xe8
,
0x98
,
0x9f
,
0x92
,
0xa9
,
0x3c
,
0x1c
,
0xc4
,
0x13
,
0xe8
,
0xc4
,
0xd6
,
0xea
,
0x64
,
0x5a
,
0x58
,
0xe9
,
0x3d
,
0xfe
,
0x09
,
0xbc
,
0xa5
,
0xe8
,
0x5c
,
0x6a
,
0x9b
,
0x48
,
0x13
,
0x36
,
0x46
,
0xf5
,
0x71
,
0x77
,
0x72
,
0x1c
,
0xd1
,
0xbb
,
0x23
,
0x17
,
0x11
,
0xbd
,
0x6e
,
0xd4
,
0x07
,
0x65
,
0xf5
,
0x4a
,
0x6c
,
0xb5
,
0xe3
,
0x39
,
0xb4
,
0x67
,
0xcb
,
0x24
,
0x9d
,
0x6b
,
0xa9
,
0xc2
,
0x80
,
0x8e
,
0x76
,
0xb7
,
0x8e
,
0x8a
,
0x8d
,
0x38
,
0x7c
,
0x82
,
0xfe
,
0x8e
,
0x8f
,
0xbb
,
0xe8
,
0xa7
,
0x5c
,
0xcf
,
0xd1
,
0x41
,
0xe4
,
0x10
,
0x7c
,
0xbb
,
0x29
,
0xd2
,
0xe5
,
0xbb
,
0x93
,
0x7d
,
0x6f
,
0x45
,
0x93
,
0x15
,
0x95
,
0x74
,
0x53
,
0xbb
,
0x66
,
0xfc
,
0x0e
,
0xda
,
0xc2
,
0xef
,
0x09
,
0x07
,
0xc0
,
0x14
,
0x79
,
0xec
,
0x44
,
0x33
,
0x55
,
0xbe
,
0x9b
,
0xa5
,
0xde
,
0xaa
,
0xe7
,
0x25
,
0xbf
,
0x09
,
0xc1
,
0xd2
,
0xc9
,
0x15
,
0x34
,
0xef
,
0x1f
,
0x1d
,
0x89
,
0x17
,
0x10
,
0xbc
,
0xb9
,
0x2d
,
0xe2
,
0xba
,
0xcb
,
0xef
,
0x7a
,
0xd8
,
0xdf
,
0xd4
,
0x55
,
0x18
,
0xdf
,
0x9b
,
0x36
,
0xe9
,
0x5f
,
0x5c
,
0xfe
,
0x05
,
0x00
,
0x00
,
0xff
,
0xff
,
0xeb
,
0x75
,
0x69
,
0x89
,
0x2e
,
0x02
,
0x00
,
0x00
,
}
This diff is collapsed.
Click to expand it.
query/graph/graphresponse.proto
+
12
−
1
View file @
69f0e9dd
...
...
@@ -5,7 +5,7 @@ syntax="proto3";
package
graph
;
service
DGraph
{
rpc
Query
(
Request
)
returns
(
Nod
e
)
{}
rpc
Query
(
Request
)
returns
(
Respons
e
)
{}
}
message
Request
{
...
...
@@ -16,6 +16,12 @@ message Value {
string
str
=
1
;
}
message
Latency
{
string
parsing
=
1
;
string
processing
=
2
;
string
pb
=
3
;
}
message
Node
{
uint64
uid
=
1
;
string
xid
=
2
;
...
...
@@ -23,3 +29,8 @@ message Node {
map
<
string
,
Value
>
properties
=
4
;
repeated
Node
children
=
5
;
// Each node can have multiple children
}
message
Response
{
Node
n
=
1
;
Latency
l
=
2
;
}
This diff is collapsed.
Click to expand it.
server/main.go
+
10
−
3
View file @
69f0e9dd
...
...
@@ -209,8 +209,10 @@ type server struct{}
// This method is used to execute the query and return the response to the
// client as a protocol buffer message.
func
(
s
*
server
)
Query
(
ctx
context
.
Context
,
req
*
graph
.
Request
)
(
*
graph
.
Node
,
error
)
{
resp
:=
new
(
graph
.
Node
)
req
*
graph
.
Request
)
(
*
graph
.
Response
,
error
)
{
node
:=
new
(
graph
.
Node
)
gl
:=
new
(
graph
.
Latency
)
resp
:=
new
(
graph
.
Response
)
if
len
(
req
.
Query
)
==
0
{
glog
.
Error
(
"While reading query"
)
return
resp
,
fmt
.
Errorf
(
"Empty query"
)
...
...
@@ -245,11 +247,16 @@ func (s *server) Query(ctx context.Context,
l
.
Processing
=
time
.
Since
(
l
.
Start
)
-
l
.
Parsing
glog
.
WithField
(
"q"
,
req
.
Query
)
.
Debug
(
"Graph processed."
)
resp
,
err
=
sg
.
ToProtocolBuffer
(
&
l
)
node
,
err
=
sg
.
ToProtocolBuffer
(
&
l
)
if
err
!=
nil
{
x
.
Err
(
glog
,
err
)
.
Error
(
"While converting to protocol buffer."
)
return
resp
,
err
}
resp
.
N
=
node
gl
.
Parsing
,
gl
.
Processing
,
gl
.
Pb
=
l
.
Parsing
.
String
(),
l
.
Processing
.
String
(),
l
.
ProtocolBuffer
.
String
()
resp
.
L
=
gl
return
resp
,
err
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment