Loads a graph stored in indexed CSV format from HDFS or the local file system
The CSV files must be stored following this schema:
# Nodes
all files describing nodes are stored in a subfolder called "nodes"
create one file for each possible label combination that exists in the data, i.e. there must not be overlapping
entities in different files (e.g. all nodes with labels :Person:Employee in a single file and all nodes that
have label :Person exclusively in another file)
for every node csv file create a schema file called FILE_NAME.csv.SCHEMA
for information about the structure of the node schema file see CsvNodeSchema
# Relationships
all files describing relationships are stored in a subfolder called "relationships"
create one csv file per relationship type
for every relationship csv file create a schema file called FILE_NAME.csv.SCHEMA
for information about the structure of the relationship schema file see CsvRelSchema
Loads a graph stored in indexed CSV format from HDFS or the local file system The CSV files must be stored following this schema: # Nodes