Prepare CSV files¶
With Studio, you can batch import vertex and edge data into Nebula Graph. Currently, only CSV files without headers and comma-separated data are supported. Each file represents vertex or edge data of one type.
To create applicable CSV files, process the source data as follows:
-
Generate CSV files for vertex and edge data:
user.csv
: Contains the vertices representing users with no property. TheuserId
column can be used as the vertex IDs.course.csv
: Contains the vertices representing courses with thecourseId
properties. ThecourseName
column can be used as the vertex IDs.-
actions.csv
contains:- The edges representing actions with the
actionId
,label
,duration
,feature0
,feature1
,feature2
, andfeature3
properties. For thelabel
column, 1 is replaced withTRUE
and 0 is replaced withFALSE
. - The
userId
column representing the source vertices of the edges. - The
courseName
column representing the destination vertices of the edges.
This figure shows an example of a CSV file with the header.
- The edges representing actions with the
-
Delete all the headers from the CSV files.
Last update: December 30, 2020