Hi all,
I want to deploy a dgraph live loader to load the .rdf files for a server. It works fine when I manually download the .rdf.gz file, unzip it and deploy the live loader locally, by using the following code:
dgraph live -f g01.rdf -a alpha:9080
However, when I tried to do get the g01.rdf.gz directly from the AWS S3, it always shows up that there is no files in the folder. Here is the code that I tried:
dgraph live -C -f s3:///bucket-name/directory-with-rdf -a alpha:9080
I have input my access id and secret id as environment variable so this part should be fine. Can anyone help me with this? Thanks!