You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ROOT/pages/tools/neo4j-admin/neo4j-admin-import.adoc
+15-10Lines changed: 15 additions & 10 deletions
Display the source diff
Display the rich diff
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.
295
295
This is done by using the `--verbose` option.
296
296
|import.report
297
297
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.
300
300
|
301
301
302
302
|--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
317
317
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.
318
318
|false
319
319
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.
322
322
If disabled, most but not all relationships referring to non-existent nodes will be detected.
323
323
If enabled all those relationships will be found but at the cost of lower performance.
324
324
|false label:changed[Changed in 5.8]
@@ -337,6 +337,7 @@ performance, this value should not be greater than the number of available proce
337
337
|
338
338
|===
339
339
340
+
340
341
[NOTE]
341
342
.Heap size for the import
342
343
====
@@ -459,7 +460,7 @@ For example:
459
460
460
461
[source, shell, role=noplay]
461
462
----
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
@@ -806,6 +807,10 @@ If you need to debug the import, it might be useful to collect the stack trace.
806
807
This is done by using the `--verbose` option.
807
808
|import.report
808
809
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
+
809
814
|--skip-bad-entries-logging[=true\|false]
810
815
|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.
811
816
|false
@@ -833,8 +838,8 @@ For incremental import into an existing database use `all` (which requires the d
833
838
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).
834
839
|all
835
840
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.
838
843
If disabled, most but not all relationships referring to non-existent nodes will be detected.
839
844
If enabled all those relationships will be found but at the cost of lower performance.
0 commit comments