-
Notifications
You must be signed in to change notification settings - Fork 83
Add footnote that --schema is not supported in 5.24 #1870
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
084125c
05c4709
309fb5f
14d0f30
f71616d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -295,8 +295,8 @@ If you need to debug the import, it might be useful to collect the stack trace. | |
| This is done by using the `--verbose` option. | ||
| |import.report | ||
|
|
||
| |--schema=<path> label:new[Introduced in 5.24] label:enterprise[Enterprise edition] | ||
| |Path to the file containing the Cypher commands for creating indexes and constraints during data import. | ||
| |--schema=<path> | ||
| |label:new[Introduced in 5.24] label:enterprise[Enterprise edition] Path to the file containing the Cypher commands for creating indexes and constraints during data import. | ||
| | | ||
|
|
||
| |--skip-bad-entries-logging[=true\|false] | ||
|
|
@@ -317,8 +317,8 @@ In the event of multiple nodes within the same group having the same ID, the fir | |
| Skipped nodes will be logged, containing at most the number of entities specified by `--bad-tolerance`, unless otherwise specified by the `--skip-bad-entries-logging` option. | ||
| |false | ||
|
|
||
| |--strict[=true\|false] label:new[Introduced in 5.6] | ||
| | Whether or not the lookup of nodes referred to from relationships needs to be checked strict. | ||
| |--strict[=true\|false] | ||
| | label:new[Introduced in 5.6] Whether or not the lookup of nodes referred to from relationships needs to be checked strict. | ||
| If disabled, most but not all relationships referring to non-existent nodes will be detected. | ||
| If enabled all those relationships will be found but at the cost of lower performance. | ||
| |false label:changed[Changed in 5.8] | ||
|
|
@@ -337,6 +337,7 @@ performance, this value should not be greater than the number of available proce | |
| | | ||
| |=== | ||
|
|
||
|
|
||
| [NOTE] | ||
| .Heap size for the import | ||
| ==== | ||
|
|
@@ -459,7 +460,7 @@ For example: | |
|
|
||
| [source, shell, role=noplay] | ||
| ---- | ||
| bin/neo4j-admin database import full neo4j --nodes=import/movies.csv --nodes=import/actors.csv --relationships=import/roles.csv --schema=import/schema.cypher | ||
| bin/neo4j-admin database import full neo4j --nodes=import/movies.csv --nodes=import/actors.csv --relationships=import/roles.csv --schema=import/schema.cypher | ||
| ---- | ||
|
|
||
|
|
||
|
|
@@ -587,9 +588,9 @@ neo4j-admin database import incremental [-h] [--expand-commands] --force [--verb | |
| [--delimiter=<char>] [--high-parallel-io=on|off|auto] | ||
| [--id-type=string|integer|actual] [--input-encoding=<character-set>] | ||
| [--max-off-heap-memory=<size>] [--quote=<char>] [--read-buffer-size=<size>] | ||
| [--report-file=<path>] [--stage=all|prepare|build|merge] [--threads=<num>] | ||
| --nodes=[<label>[:<label>]...=]<files>... [--nodes=[<label>[:<label>]...=] | ||
| <files>...]... [--relationships=[<type>=]<files>...]... <database> | ||
| [--report-file=<path>] [--schema=<path>] [--stage=all|prepare|build|merge] | ||
| [--threads=<num>] --nodes=[<label>[:<label>]...=]<files>... [--nodes=[<label> | ||
| [:<label>]...=]<files>...]... [--relationships=[<type>=]<files>...]... <database> | ||
| ---- | ||
|
|
||
| === Description | ||
|
|
@@ -806,6 +807,10 @@ If you need to debug the import, it might be useful to collect the stack trace. | |
| This is done by using the `--verbose` option. | ||
| |import.report | ||
|
|
||
| |--schema=<path> footnote:[The optional `--schema` option is available in this version but not yet supported. It will be functional in a future release.] | ||
|
||
| |label:new[Introduced in 5.24] Path to the file containing the Cypher commands for creating indexes and constraints during data import. | ||
| | | ||
|
|
||
| |--skip-bad-entries-logging[=true\|false] | ||
| |When set to `true`, the details of bad entries are not written in the log. Disabling logging can improve performance when the data contains lots of faults. Cleaning the data before importing it is highly recommended because faults dramatically affect the tool's performance even without logging. | ||
| |false | ||
|
|
@@ -833,8 +838,8 @@ For incremental import into an existing database use `all` (which requires the d | |
| For semi-online incremental import run `prepare` (on a stopped database) followed by `build` (on a potentially running database) and finally `merge` (on a stopped database). | ||
| |all | ||
|
|
||
| |--strict[=true\|false] label:new[Introduced in 5.6] | ||
| | Whether or not the lookup of nodes referred to from relationships needs to be checked strict. | ||
| |--strict[=true\|false] | ||
| | label:new[Introduced in 5.6] Whether or not the lookup of nodes referred to from relationships needs to be checked strict. | ||
| If disabled, most but not all relationships referring to non-existent nodes will be detected. | ||
| If enabled all those relationships will be found but at the cost of lower performance. | ||
| |false label:changed[Changed in 5.8] | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.