Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
09-04-2019 10:49 PM
Hi
I am trying to import my CSV from S3, I am using neo4j-admin import tool for that.
Is it possible to import a csv file from s3 using the neo4j-admin import tool ?
I couldn't find it in the documentation.
09-05-2019 12:12 AM
Make sure you enable CSV import option in the neo4j configuration file and try the below command -
LOAD CSV WITH HEADERS FROM 'http(s)://s3.amazonaws.com//.csv' AS line
CREATE (:Person{ Id: line.Id, Name: line.Name,Age: line.age})
09-05-2019 12:53 AM
Hi
I am trying to use neo4j-admin import tool . The csv has around 2mil records and according to the documentation LOAD CSV should be use for a small data set and neo4j-admin import tool for the larger dataset
09-05-2019 11:33 AM
the issue with neo4j-admin import
vs load csv
is neo4j-admin import can only be used on an empty graph databases whereas load csv
can be used on an empty graph or a graph which already has data
09-05-2019 10:17 PM
Hi Dana
That's what my question is ! lets assume my graph database is empty, can I then import the csv file directly from s3 using the neo4j-admin import tool ??
09-28-2020 08:39 PM
Hey Vella did you find a solution? I am trying to do the sme thing !
Thanks !
All the sessions of the conference are now available online