Skip to content

Commit 1f5a583

Browse files
Add footnote that --schema is not supported in 5.24 (#1870)
Co-authored-by: NataliaIvakina <[email protected]>
1 parent dcd7e3c commit 1f5a583

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

modules/ROOT/pages/tools/neo4j-admin/neo4j-admin-import.adoc

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -295,8 +295,8 @@ If you need to debug the import, it might be useful to collect the stack trace.
295295
This is done by using the `--verbose` option.
296296
|import.report
297297

298-
|--schema=<path> label:new[Introduced in 5.24] label:enterprise[Enterprise edition]
299-
|Path to the file containing the Cypher commands for creating indexes and constraints during data import.
298+
|--schema=<path>
299+
|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.
300300
|
301301

302302
|--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
317317
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.
318318
|false
319319

320-
|--strict[=true\|false] label:new[Introduced in 5.6]
321-
| Whether or not the lookup of nodes referred to from relationships needs to be checked strict.
320+
|--strict[=true\|false]
321+
| label:new[Introduced in 5.6] Whether or not the lookup of nodes referred to from relationships needs to be checked strict.
322322
If disabled, most but not all relationships referring to non-existent nodes will be detected.
323323
If enabled all those relationships will be found but at the cost of lower performance.
324324
|false label:changed[Changed in 5.8]
@@ -337,6 +337,7 @@ performance, this value should not be greater than the number of available proce
337337
|
338338
|===
339339

340+
340341
[NOTE]
341342
.Heap size for the import
342343
====
@@ -459,7 +460,7 @@ For example:
459460

460461
[source, shell, role=noplay]
461462
----
462-
bin/neo4j-admin database import full neo4j --nodes=import/movies.csv --nodes=import/actors.csv --relationships=import/roles.csv --schema=import/schema.cypher
463+
bin/neo4j-admin database import full neo4j --nodes=import/movies.csv --nodes=import/actors.csv --relationships=import/roles.csv --schema=import/schema.cypher
463464
----
464465

465466

@@ -587,9 +588,9 @@ neo4j-admin database import incremental [-h] [--expand-commands] --force [--verb
587588
[--delimiter=<char>] [--high-parallel-io=on|off|auto]
588589
[--id-type=string|integer|actual] [--input-encoding=<character-set>]
589590
[--max-off-heap-memory=<size>] [--quote=<char>] [--read-buffer-size=<size>]
590-
[--report-file=<path>] [--stage=all|prepare|build|merge] [--threads=<num>]
591-
--nodes=[<label>[:<label>]...=]<files>... [--nodes=[<label>[:<label>]...=]
592-
<files>...]... [--relationships=[<type>=]<files>...]... <database>
591+
[--report-file=<path>] [--schema=<path>] [--stage=all|prepare|build|merge]
592+
[--threads=<num>] --nodes=[<label>[:<label>]...=]<files>... [--nodes=[<label>
593+
[:<label>]...=]<files>...]... [--relationships=[<type>=]<files>...]... <database>
593594
----
594595

595596
=== Description
@@ -806,6 +807,10 @@ If you need to debug the import, it might be useful to collect the stack trace.
806807
This is done by using the `--verbose` option.
807808
|import.report
808809

810+
|--schema=<path> footnote:[The `--schema` option is available in this version but not yet supported. It will be functional in a future release.]
811+
|label:new[Introduced in 5.24] Path to the file containing the Cypher commands for creating indexes and constraints during data import.
812+
|
813+
809814
|--skip-bad-entries-logging[=true\|false]
810815
|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.
811816
|false
@@ -833,8 +838,8 @@ For incremental import into an existing database use `all` (which requires the d
833838
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).
834839
|all
835840

836-
|--strict[=true\|false] label:new[Introduced in 5.6]
837-
| Whether or not the lookup of nodes referred to from relationships needs to be checked strict.
841+
|--strict[=true\|false]
842+
| label:new[Introduced in 5.6] Whether or not the lookup of nodes referred to from relationships needs to be checked strict.
838843
If disabled, most but not all relationships referring to non-existent nodes will be detected.
839844
If enabled all those relationships will be found but at the cost of lower performance.
840845
|false label:changed[Changed in 5.8]

0 commit comments

Comments
 (0)