Skip to content
Snippets Groups Projects
Commit ca1c4431 authored by Manish R Jain's avatar Manish R Jain
Browse files

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
# 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/...
......
...@@ -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 {
......
...@@ -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
} }
......
...@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment