I'm using the BatchInsert and LuceneIndexBatchInserter api's to create my graph (~10000 nodes for now). The thing is BatchInserter.createNode(...) returns a long.

BatchInserter inserter = new BatchInserterImpl( DB_PATH, BatchInserterImpl.loadProperties(   "neo4j.props" ) );
long node = inserter.createNode(properties);

where properties is a Map(String,Object).

What I really need is to get a new node of type Node.

Node node = inserter.createNode(properties);

This way I can use the shortestPath api and pass in a startNode and targetNode.

So, basically, is there someway that I can get a node from the Index as a Node and not a long?

Maybe if someone could just explain why the batchInserter returns a node of type long instead of type Node? Hope this makes sense to someone, Thanks.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

The batch inserter isn't intended for normal usage, it's only for inserting data. If you look at the wiki page you'll see that you use the longs when creating the relationships. SO what you do is:

  1. insert data
  2. shutdown batchinserter
  3. start graphdb
  4. go ahead with shortest path and whatever you like
link|improve this answer
Wouldn't I have to start the graphdb before shutting down the batchInserter in order to transfer the indexes to the graphdb so I can use them? or am I missing something? btw Thanks for the help – mmay Jul 28 '10 at 14:14
Not sure what you mean here, but when shutting the batchinserter down the data will be in the DB, and after starting the embedded graphdb you can read from and write to this DB. Maybe this is what you're looking for: Indexing with BatchInserter ? – nawroth Jul 28 '10 at 20:30
Okay I got it. I was under the impression that when you shut down the BatchInserter and IndexBatchInserter the indexes would be deleted. I can see that this is not the case though. Thanks! – mmay Jul 29 '10 at 15:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.