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
ca1c4431
Commit
ca1c4431
authored
9 years ago
by
Manish R Jain
Browse files
Options
Downloads
Patches
Plain Diff
Fixes after testing uid assignment and query execution over multiple workers
parent
749b981d
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Dockerfile
+2
-2
2 additions, 2 deletions
Dockerfile
query/query.go
+7
-8
7 additions, 8 deletions
query/query.go
worker/task.go
+4
-2
4 additions, 2 deletions
worker/task.go
worker/worker.go
+1
-0
1 addition, 0 deletions
worker/worker.go
with
14 additions
and
12 deletions
Dockerfile
+
2
−
2
View file @
ca1c4431
# Dockerfile for DGraph
# Dockerfile for DGraph
FROM
golang:1.
4
.3
FROM
golang:1.
5
.3
MAINTAINER
Manish Jain <manishrjain@gmail.com>
MAINTAINER
Manish Jain <manishrjain@gmail.com>
# Get the necessary packages.
# Get the necessary packages.
...
@@ -21,7 +21,7 @@ ENV LD_LIBRARY_PATH "/usr/local/lib"
...
@@ -21,7 +21,7 @@ ENV LD_LIBRARY_PATH "/usr/local/lib"
# Install DGraph and update dependencies to right versions.
# Install DGraph and update dependencies to right versions.
RUN
go get
-v
github.com/robfig/glock
&&
\
RUN
go get
-v
github.com/robfig/glock
&&
\
go get
-v
github.com/dgraph-io/dgraph/...
&&
\
go get
-v
github.com/dgraph-io/dgraph/...
&&
\
glock
sync
github.com/dgraph-io/dgraph
&&
echo
"v0.
1.3
"
glock
sync
github.com/dgraph-io/dgraph
&&
echo
"v0.
2.0
"
# Run some tests, don't build an image if we're failing tests.
# Run some tests, don't build an image if we're failing tests.
RUN
go
test
github.com/dgraph-io/dgraph/...
RUN
go
test
github.com/dgraph-io/dgraph/...
...
...
This diff is collapsed.
Click to expand it.
query/query.go
+
7
−
8
View file @
ca1c4431
...
@@ -27,7 +27,6 @@ import (
...
@@ -27,7 +27,6 @@ import (
"github.com/dgraph-io/dgraph/gql"
"github.com/dgraph-io/dgraph/gql"
"github.com/dgraph-io/dgraph/posting"
"github.com/dgraph-io/dgraph/posting"
"github.com/dgraph-io/dgraph/task"
"github.com/dgraph-io/dgraph/task"
"github.com/dgraph-io/dgraph/uid"
"github.com/dgraph-io/dgraph/worker"
"github.com/dgraph-io/dgraph/worker"
"github.com/dgraph-io/dgraph/x"
"github.com/dgraph-io/dgraph/x"
"github.com/google/flatbuffers/go"
"github.com/google/flatbuffers/go"
...
@@ -275,15 +274,15 @@ func newGraph(euid uint64, exid string) (*SubGraph, error) {
...
@@ -275,15 +274,15 @@ func newGraph(euid uint64, exid string) (*SubGraph, error) {
// This would set the Result field in SubGraph,
// This would set the Result field in SubGraph,
// and populate the children for attributes.
// and populate the children for attributes.
if
len
(
exid
)
>
0
{
if
len
(
exid
)
>
0
{
// instanceIdx = 0, numInstances = 1 by default
xidToUid
:=
make
(
map
[
string
]
uint64
)
u
,
err
:=
uid
.
GetOrAssign
(
exid
,
0
,
1
)
xidToUid
[
exid
]
=
0
if
err
!=
nil
{
if
err
:=
worker
.
GetOrAssignUidsOverNetwork
(
&
xidToUid
);
err
!=
nil
{
x
.
Err
(
glog
,
err
)
.
WithField
(
"xid"
,
exid
)
.
Error
(
glog
.
WithError
(
err
)
.
Error
(
"While getting uids over network"
)
"While GetOrAssign uid from external id"
)
return
nil
,
err
return
nil
,
err
}
}
glog
.
WithField
(
"xid"
,
exid
)
.
WithField
(
"_uid_"
,
u
)
.
Debug
(
"GetOrAssign"
)
euid
=
u
euid
=
xidToUid
[
exid
]
glog
.
WithField
(
"xid"
,
exid
)
.
WithField
(
"uid"
,
euid
)
.
Debug
(
"GetOrAssign"
)
}
}
if
euid
==
0
{
if
euid
==
0
{
...
...
This diff is collapsed.
Click to expand it.
worker/task.go
+
4
−
2
View file @
ca1c4431
...
@@ -16,6 +16,8 @@ func ProcessTaskOverNetwork(qu []byte) (result []byte, rerr error) {
...
@@ -16,6 +16,8 @@ func ProcessTaskOverNetwork(qu []byte) (result []byte, rerr error) {
attr
:=
string
(
q
.
Attr
())
attr
:=
string
(
q
.
Attr
())
idx
:=
farm
.
Fingerprint64
([]
byte
(
attr
))
%
numInstances
idx
:=
farm
.
Fingerprint64
([]
byte
(
attr
))
%
numInstances
glog
.
WithField
(
"idx"
,
idx
)
.
WithField
(
"attr"
,
attr
)
.
WithField
(
"numInstances"
,
numInstances
)
.
Debug
(
"ProcessTaskOverNetwork"
)
var
runHere
bool
var
runHere
bool
if
attr
==
"_xid_"
||
attr
==
"_uid_"
{
if
attr
==
"_xid_"
||
attr
==
"_uid_"
{
...
@@ -39,8 +41,8 @@ func ProcessTaskOverNetwork(qu []byte) (result []byte, rerr error) {
...
@@ -39,8 +41,8 @@ func ProcessTaskOverNetwork(qu []byte) (result []byte, rerr error) {
if
err
:=
pool
.
Call
(
"Worker.ServeTask"
,
query
,
reply
);
err
!=
nil
{
if
err
:=
pool
.
Call
(
"Worker.ServeTask"
,
query
,
reply
);
err
!=
nil
{
glog
.
WithField
(
"call"
,
"Worker.ServeTask"
)
.
Fatal
(
err
)
glog
.
WithField
(
"call"
,
"Worker.ServeTask"
)
.
Fatal
(
err
)
}
}
glog
.
WithField
(
"reply
"
,
string
(
reply
.
Data
))
.
WithField
(
"addr"
,
addr
)
.
glog
.
WithField
(
"reply
_len"
,
len
(
reply
.
Data
))
.
WithField
(
"addr"
,
addr
)
.
Info
(
"Got reply from server"
)
Debug
(
"Got reply from server"
)
return
reply
.
Data
,
nil
return
reply
.
Data
,
nil
}
}
...
...
This diff is collapsed.
Click to expand it.
worker/worker.go
+
1
−
0
View file @
ca1c4431
...
@@ -126,6 +126,7 @@ func (w *Worker) ServeTask(query *conn.Query, reply *conn.Reply) (rerr error) {
...
@@ -126,6 +126,7 @@ func (w *Worker) ServeTask(query *conn.Query, reply *conn.Reply) (rerr error) {
q
:=
new
(
task
.
Query
)
q
:=
new
(
task
.
Query
)
q
.
Init
(
query
.
Data
,
uo
)
q
.
Init
(
query
.
Data
,
uo
)
attr
:=
string
(
q
.
Attr
())
attr
:=
string
(
q
.
Attr
())
glog
.
WithField
(
"attr"
,
attr
)
.
Debug
(
"ServeTask"
)
if
farm
.
Fingerprint64
([]
byte
(
attr
))
%
numInstances
==
instanceIdx
{
if
farm
.
Fingerprint64
([]
byte
(
attr
))
%
numInstances
==
instanceIdx
{
reply
.
Data
,
rerr
=
processTask
(
query
.
Data
)
reply
.
Data
,
rerr
=
processTask
(
query
.
Data
)
...
...
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