I generated data from bulkloader using --reduce_shards=2 by following documentation at here
This generates 2 p directories on which I ran alphas following this link
Commands I used
dgraph zero --my=IPADDR:5080 on top directory
Then I cd to out directory and run one alpha on /0/p using dgraph alpha --lru_mb=4096 --my=IPADDR:7080 --zero=localhost:5080
If I check ratel at this point it's all good
Then I cd to out directory and run second alpha on /1/p using dgraph alpha --lru_mb=4096 --my=IPADDR:7081 --zero=localhost:5080 -o=1
This runs fine, but data from this /1/p directory is not loaded, and ratel starts showing error in schema
Other 2 options I tried
I did bulk load using
--reduce_shards=1and just running one alpha, everything works fineI stopped first alpha and ran alpha on
/1/pthe other predicates start showing up and it runs fine, but now/0/pdata is gone