Skip to content

Commit af1d968

Browse files
committed
Cypher: Update README
1 parent 6dd0c77 commit af1d968

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cypher/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ The default environment variables (e.g. Neo4j version, container name, etc.) are
1717

1818
## Generating the data set
1919

20-
The Neo4j implementation expects the data to be in `composite-projected-fk` CSV layout, without headers and with quoted fields.
21-
To generate data that confirms this requirement, run Datagen with the `--explode-edges` and the `--format-options header=false,quoteAll=true` options.
20+
The Neo4j implementation expects the data to be in `composite-projected-fk` CSV layout, without headers and with quoted fields, with the datetimes serialized as epoch milliseconds.
21+
To generate data that confirms this requirement, run Datagen with the `--explode-edges`, `--epoch-millis`, and the `--format-options header=false,quoteAll=true` options.
2222
This implementation also supports compressed data sets, both for the initial load and for batches. To generate compressed data sets, include `compression=gzip` in the Datagen's `--format-options`. The scripts in this repository change between compressed and uncompressed representations.
2323

2424
(Rationale: Files should not have headers as these are provided separately in the `headers/` directory and quoting the fields in the CSV is required to [preserve trailing spaces](https://neo4j.com/docs/operations-manual/4.3/tools/neo4j-admin-import/#import-tool-header-format).)
@@ -37,11 +37,11 @@ tools/run.py \
3737
--cores $(nproc) \
3838
--memory ${LDBC_SNB_DATAGEN_MAX_MEM} \
3939
-- \
40+
--mode bi \
4041
--format csv \
4142
--scale-factor ${SF} \
42-
--explode-edges \
43-
--mode bi \
4443
--output-dir out-sf${SF}/ \
44+
--explode-edges \
4545
--epoch-millis \
4646
--format-options header=false,quoteAll=true,compression=gzip
4747
```

0 commit comments

Comments
 (0)