Error "Mixing specified and unspecified group belongings in a single import isn't supported" when using neo4j-import command -


i'm trying import fair amount of data neo4j, takes long imported using load csv way.

for reason i'm trying neo4j-import command got following error , haven't found information or means exactly. error is:

 2015-04-29 14:34:06.225+0000 error [org.neo4j]: error during import mixing specified , unspecified group belongings in single import isn't supported java.lang.runtimeexception: mixing specified , unspecified group belongings in single import isn't supported     @ org.neo4j.unsafe.impl.batchimport.staging.stageexecution.stillexecuting(stageexecution.java:62)     @ org.neo4j.unsafe.impl.batchimport.staging.executionsupervisor.anystillexecuting(executionsupervisor.java:79)     @ org.neo4j.unsafe.impl.batchimport.staging.executionsupervisor.finishawaresleep(executionsupervisor.java:102)     @ org.neo4j.unsafe.impl.batchimport.staging.executionsupervisor.supervise(executionsupervisor.java:64)     @ org.neo4j.unsafe.impl.batchimport.staging.executionsupervisors.superviseexecution(executionsupervisors.java:80)     @ org.neo4j.unsafe.impl.batchimport.staging.executionsupervisors.supervisedynamicexecution(executionsupervisors.java:59)     @ org.neo4j.unsafe.impl.batchimport.parallelbatchimporter.executestages(parallelbatchimporter.java:239)     @ org.neo4j.unsafe.impl.batchimport.parallelbatchimporter.doimport(parallelbatchimporter.java:159)     @ org.neo4j.tooling.importtool.main(importtool.java:293)     @ org.neo4j.tooling.importtool.main(importtool.java:227) caused by: java.lang.illegalstateexception: mixing specified , unspecified group belongings in single import isn't supported     @ org.neo4j.unsafe.impl.batchimport.input.groups.getorcreate(groups.java:53)     @ org.neo4j.unsafe.impl.batchimport.input.csv.inputnodedeserialization.initialize(inputnodedeserialization.java:60)     @ org.neo4j.unsafe.impl.batchimport.input.csv.inputentitydeserializer.initialize(inputentitydeserializer.java:67)     @ org.neo4j.unsafe.impl.batchimport.input.csv.inputgroupsdeserializer.createnestediterator(inputgroupsdeserializer.java:74)     @ org.neo4j.unsafe.impl.batchimport.input.csv.inputgroupsdeserializer.createnestediterator(inputgroupsdeserializer.java:35)     @ org.neo4j.helpers.collection.nestingiterator.fetchnextornull(nestingiterator.java:67)     @ org.neo4j.helpers.collection.prefetchingiterator.peek(prefetchingiterator.java:60)     @ org.neo4j.helpers.collection.prefetchingiterator.hasnext(prefetchingiterator.java:46)     @ org.neo4j.unsafe.impl.batchimport.staging.iteratorbatcherstep.nextbatchornull(iteratorbatcherstep.java:53)     @ org.neo4j.unsafe.impl.batchimport.inputiteratorbatcherstep.nextbatchornull(inputiteratorbatcherstep.java:41)     @ org.neo4j.unsafe.impl.batchimport.staging.producerstep.process(producerstep.java:74)     @ org.neo4j.unsafe.impl.batchimport.staging.producerstep$1.run(producerstep.java:54) 

has experienced same issue or happens know how means?

thank much, juan m. sierra

i had error, , problem had defined "id space" in 1 of node header files.

i needed use id spaces because node identifiers not unique across node files (my nodes had sequential identifiers), used cool feature called id space: http://neo4j.com/docs/2.2.6/import-tool-header-format.html#_id_spaces

here example shows syntax id spaces: http://neo4j.com/docs/stable/import-tool-id-handling.html

in summary: if use id spaces, of nodes must have own id spaces. otherwise error "mixing specified , unspecified group belongings in single import".


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -