Hi I can query but received an error message while doing an insert:
{
"name": "t",
"url": "http://localhost:8080/mutate?commitNow=true",
"errors": [
{
"message": "cannot retrieve predicate information: No connection exists",
"extensions": {
"code": "ErrorInvalidRequest"
}
}
]
}
The dgraph alpha server message:
Move predicate request: predicate:"name" source_gid:1 dest_gid:2 txn_ts:3440019
The dgraph zero server message:
I0825 04:40:16.655843 30155 zero.go:438] Connected: cluster_info_only:true
I0825 04:40:16.656903 30155 zero.go:420] Got connection request: id:1 addr:"localhost:7080"
I0825 04:40:16.657287 30155 zero.go:551] Connected: id:1 addr:"localhost:7080"
I0825 04:47:30.954485 30155 tablet.go:208]
Groups sorted by size: [{gid:2 size:0} {gid:1 size:240067445}]
I0825 04:47:30.954536 30155 tablet.go:213] size_diff 240067445
I0825 04:47:30.954946 30155 tablet.go:108] Going to move predicate: [name], size: [70 MB] from group 1 to 2
I0825 04:47:30.955069 30155 tablet.go:135] Starting move: predicate:"name" source_gid:1 dest_gid:2 txn_ts:3440019
E0825 04:47:30.958280 30155 tablet.go:70] while calling MovePredicate: rpc error: code = Unknown desc = Unable to find a connection for group: 2
My dgraph version is:
v1.2.6
on ubuntu 18
If my understanding of the error message is correct,
dgraph is detecting a few clusters and it is trying to move it to another cluster,
I don’t think I set up any new cluster as this is on a single machine that I SSH into
is there anyway to solve this problem please?