Hi Dario,

Could you post the error message and stacktrace?

Did the error happen after initial import but still running in batch
inserter mode or normal server/embedded transactional mode?

Regards,
Johan

On Wed, Jun 29, 2011 at 4:30 PM, Dario Rexin <dario.re...@xing.com> wrote:
> Hi all,
>
> Recently i tried import a huge dataset into neo using the BatchInserter. I 
> also used the BatchInserterIndex. The import itself went very well and i was 
> able to read from the graph, but when i tried to insert something i always 
> got an error saying that no new transaction could be created. Here’s how I 
> used the index:
>
> // provider is a LuceneBatchInserterIndexProvider
> BatchInserterIndex urnIndex = provider.nodeIndex("urn", MapUtil.stringMap( 
> "type", "exact" ));
>
> for (Map.Entry<String, Long> entry : nodes.entrySet()) {
>      Map<String, Object> props = MapUtil.map("urn", entry.getKey());
>      urnIndex.add(entry.getValue(), props);
> }
>
> I also called shutdown() on the provider and the BatchInserter afterwards. Is 
> there anything i am missing?
>
>
> Cheers,
>
> Dario
_______________________________________________
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user

Reply via email to