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
@@ -291,8 +291,8 @@ If you need to debug the import, it might be useful to collect the stack trace.
291
291
This is done by using the `--verbose` option.
292
292
|import.report
293
293
294
-
|--schema=<path> label:new[Introduced in 5.24] label:enterprise[Enterprise edition]
295
-
|File in which to store the Cypher schema commands to run as part of the data import.
294
+
|--schema=<path>
295
+
|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.
296
296
|
297
297
298
298
|--skip-bad-entries-logging[=true\|false]
@@ -313,8 +313,8 @@ In the event of multiple nodes within the same group having the same ID, the fir
313
313
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.
314
314
|false
315
315
316
-
|--strict[=true\|false] label:new[Introduced in 5.6]
317
-
| Whether or not the lookup of nodes referred to from relationships needs to be checked strict.
316
+
|--strict[=true\|false]
317
+
| label:new[Introduced in 5.6] Whether or not the lookup of nodes referred to from relationships needs to be checked strict.
318
318
If disabled, most but not all relationships referring to non-existent nodes will be detected.
319
319
If enabled all those relationships will be found but at the cost of lower performance.
320
320
|false label:changed[Changed in 5.8]
@@ -333,6 +333,7 @@ performance, this value should not be greater than the number of available proce
333
333
|
334
334
|===
335
335
336
+
336
337
[NOTE]
337
338
.Heap size for the import
338
339
====
@@ -455,7 +456,7 @@ For example:
455
456
456
457
[source, shell, role=noplay]
457
458
----
458
-
bin/neo4j-admin database import full neo4j --nodes=import/movies.csv --nodes=import/actors.csv --relationships=import/roles.csv --schema=import/schema.cypher
459
+
bin/neo4j-admin database import full neo4j --nodes=import/movies.csv --nodes=import/actors.csv --relationships=import/roles.csv --schema=import/schema.cypher
@@ -798,6 +799,10 @@ If you need to debug the import, it might be useful to collect the stack trace.
798
799
This is done by using the `--verbose` option.
799
800
|import.report
800
801
802
+
|--schema=<path> footnote:[The `--schema` option is available in this version but not yet supported. It will be functional in a future release.]
803
+
|label:new[Introduced in 5.24] Path to the file containing the Cypher commands for creating indexes and constraints during data import.
804
+
|
805
+
801
806
|--skip-bad-entries-logging[=true\|false]
802
807
|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.
803
808
|false
@@ -825,8 +830,8 @@ For incremental import into an existing database use `all` (which requires the d
825
830
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).
826
831
|all
827
832
828
-
|--strict[=true\|false] label:new[Introduced in 5.6]
829
-
| Whether or not the lookup of nodes referred to from relationships needs to be checked strict.
833
+
|--strict[=true\|false]
834
+
| label:new[Introduced in 5.6] Whether or not the lookup of nodes referred to from relationships needs to be checked strict.
830
835
If disabled, most but not all relationships referring to non-existent nodes will be detected.
831
836
If enabled all those relationships will be found but at the cost of lower performance.
0 commit comments