currently im working with Neo4j + Neo4j Spatial and i would like to ask you if there is a way to import shapefiles into the database in batches, the same way they do with OSM files, the reason for this is because im dealing with a huge dataset (100GB+) and the layer+index is definitly slowing me down when inserting hundreds of thousands of geometries, while using the standard ShapeFileImporter class
My question is: Is there a way to import shapefiles in batches and after the insertion, we do the database.reIndex() the same way we do with .osm files??
Im using neo4j 2.1.2 and neo4j-spatial 0.13
ps.: I also tried setting my GraphDatabaseService with the following:
.setConfig(GraphDatabaseSettings.node_auto_indexing, "false")
.setConfig(GraphDatabaseSettings.relationship_auto_indexing,"false")
but it seems that the ShapeFileImporter creates and uses them anyway.