kbchoi
(규빈 최)
July 29, 2025, 7:53am
5
matthewmcneely:
when using “Host bind mounts”. Try using a docker volume instead:
docker volume create dgraph_out
docker run -v dgraph_out:/out <rest of commands>
Then you’ll have to copy the bulk loader output files (posting, etc) from the docker volume to your host system.
Side note: If you’re ultimately going to run the graph on a Linux box, you might consider just running the bulk loader on that system (where you can install the Dgraph CLI) and skip all the Windows quirks.
I see, is there a loading limit for bulk loader? cause I know live loader tries not to go over 15MB per batch, I’m assuming that isn’t the case with Bulk Loader?