30.4.1 Graph Configuration when Exporting a Graph into Multiple Files
When exporting graph data into multiple files a
FileGraphStoringConfig can be used which contains the following
JSON fields:
Table 30-20 Graph Configuration when Exporting Graph into Multiple Files
| Field | Type | Description | Default |
|---|---|---|---|
| base_path | string | Base path to use for storing a graph; file paths will be
constructed using the following format _._, that
is, parent_path/my_graph_1.edges.
|
null |
| compression_scheme | enum[none, gzip] | The scheme to use for compression, or none to disable compression. | none |
| delimiter | character | Delimiter character used as separator when storing. The
characters ", {, }
and \n cannot be used as delimiters.
|
null |
| edge_extension | string | The extension to use when creating edge file partitions. | edges |
| initial_partition_index | integer | The value used as initial partition index, that is,
initial_partition_index=1024 -> my_graph_1024.edges,
my_graph_1025.edges.
|
1 |
| num_partitions | integer | The number of partitions that should be created, when exporting to multiple files. | 1 |
| row_extension | string | The extension to use when creating row file partitions. | rows |
| vertex_extension | string | The extension to use when creating vertex file partitions. | nodes |
Parent topic: Exporting a Graph into Multiple Files