aws-samples / amazon-neptune-samples

Samples and documentation for using the Amazon Neptune graph database service
MIT No Attribution
354 stars 141 forks source link

Is this dataset still available and in which zones? #1

Closed robfrank closed 6 years ago

robfrank commented 6 years ago

I'm testing the integration of our application with Amazon Neptune and I would like to load this dump onto my cluster.

My netpune is on eu-west-1. NOTE: I'm not an AWS expert.

I've got an Ec2 instance from where I'm trying to load the dump to my cluster. I gave this command:

curl -X POST \
    -H 'Content-Type: application/json' \
    http://mycluster.end.point:8182/loader -d '
    {
      "source" : "s3://neptune-data-ml/recommendation/",
      "accessKey" : "my arn",
      "secretKey" : "my secret key",
      "format" : "csv",
      "region" : "us-east-1", 
      "failOnError" : "FALSE"
    }'

It fails.

Is the dump available on eu-west-1 too? Is the dump still available

Thank you in advance.

beebs-systap commented 6 years ago

Hi,

You will need to copy the data set into eu-west-1. We'll work to update the samples for all of the now supported GA regions. There's an example here on doing this with the AWS CLI.

There's additional details on bulk loading here.

Thanks, --Brad

robfrank commented 6 years ago

Thanks for answer. As a suggesiton, It could be useful to link this repo to the official documentation.