Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
BatchInserter Deprecated?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  9 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Marko Rodriguez  
View profile  
 More options Apr 28 2012, 1:35 pm
From: Marko Rodriguez <okramma...@gmail.com>
Date: Sat, 28 Apr 2012 11:35:47 -0600
Local: Sat, Apr 28 2012 1:35 pm
Subject: BatchInserter Deprecated?
Hello,

I noticed that BatchInserter and BatchInserterIndexProvider and both deprecated. What are the new classes for this functionality?

Thank you,
Marko.

http://markorodriguez.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Neubauer  
View profile  
 More options Apr 28 2012, 3:54 pm
From: Peter Neubauer <peter.neuba...@neotechnology.com>
Date: Sat, 28 Apr 2012 21:54:41 +0200
Local: Sat, Apr 28 2012 3:54 pm
Subject: Re: [Neo4j] BatchInserter Deprecated?
Marko,
since the BatchInserter is more of a unsafe utility to use in initial
imports and has far less guarantees than the full API, we moved it to
https://github.com/neo4j/community/tree/master/kernel/src/main/java/o...
where it better signals the risks you are taking ;)

Cheers,

/peter neubauer

G:  neubauer.peter
S:  peter.neubauer
P:  +46 704 106975
L:   http://www.linkedin.com/in/neubauer
T:   @peterneubauer

If you can write, you can code - @coderdojomalmo
If you can sketch, you can use a graph database - @neo4j


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Pablo Pareja  
View profile  
 More options Apr 28 2012, 4:20 pm
From: Pablo Pareja <ppar...@era7.com>
Date: Sat, 28 Apr 2012 16:20:10 -0400
Local: Sat, Apr 28 2012 4:20 pm
Subject: Re: [Neo4j] BatchInserter Deprecated?

Does that mean that maybe after a few more releases it won't be supported
anymore??
Cheers,

Pablo

On Sat, Apr 28, 2012 at 3:54 PM, Peter Neubauer <

--
Pablo Pareja Tobes

My site     http://about.me/pablopareja
LinkedIn    http://www.linkedin.com/in/pabloparejatobes
Twitter       http://www.twitter.com/pablopareja

Creator of Bio4j --> http://www.bio4j.com

http://www.ohnosequences.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Hunger  
View profile  
 More options Apr 28 2012, 4:23 pm
From: Michael Hunger <michael.hun...@neotechnology.com>
Date: Sat, 28 Apr 2012 22:23:52 +0200
Local: Sat, Apr 28 2012 4:23 pm
Subject: Re: [Neo4j] BatchInserter Deprecated?

Right now that's not on the horizon. It was only deprecating the code in the old package and having it delegate to the place in the new package.

Michael

Am 28.04.2012 um 22:20 schrieb Pablo Pareja:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Pablo Pareja  
View profile  
 More options Apr 28 2012, 4:32 pm
From: Pablo Pareja <ppar...@era7.com>
Date: Sat, 28 Apr 2012 16:32:04 -0400
Local: Sat, Apr 28 2012 4:32 pm
Subject: Re: [Neo4j] BatchInserter Deprecated?

Ok.
By the way, do you have any numbers of how much is actually the difference
(in terms of insertion time) between the standard API and the Batch
insertion mode?

Pablo

On Sat, Apr 28, 2012 at 4:23 PM, Michael Hunger <

--
Pablo Pareja Tobes

My site     http://about.me/pablopareja
LinkedIn    http://www.linkedin.com/in/pabloparejatobes
Twitter       http://www.twitter.com/pablopareja

Creator of Bio4j --> http://www.bio4j.com

http://www.ohnosequences.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Hunger  
View profile  
 More options Apr 28 2012, 4:39 pm
From: Michael Hunger <michael.hun...@neotechnology.com>
Date: Sat, 28 Apr 2012 22:39:47 +0200
Local: Sat, Apr 28 2012 4:39 pm
Subject: Re: [Neo4j] BatchInserter Deprecated?

depends on many factors:

- tx size
- do you add to indexes
- do you query indexes during insert
- available memory
- disk performance (for tx-flushes)

- transactions have to be kept in memory (thread local) the use much more concurrency aware datastructures (e.g. CHM) and they must be flushed to disk during commit

I had no issues inserting 3M nodes/s with the batch inserter on my Mac.

Am 28.04.2012 um 22:32 schrieb Pablo Pareja:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Pablo Pareja  
View profile  
 More options Apr 28 2012, 4:48 pm
From: Pablo Pareja <ppar...@era7.com>
Date: Sat, 28 Apr 2012 16:48:21 -0400
Local: Sat, Apr 28 2012 4:48 pm
Subject: Re: [Neo4j] BatchInserter Deprecated?

In my case:

- tx size --> (It would be very variable mainly because of the index
retrieving/flushing operations)
- do you add to indexes --> YES
- do you query indexes during insert --> YES
- available memory --> I could have up to 32 GB RAM
- disk performance (for tx-flushes) --> I don't know....

Pablo

On Sat, Apr 28, 2012 at 4:39 PM, Michael Hunger <

--
Pablo Pareja Tobes

My site     http://about.me/pablopareja
LinkedIn    http://www.linkedin.com/in/pabloparejatobes
Twitter       http://www.twitter.com/pablopareja

Creator of Bio4j --> http://www.bio4j.com

http://www.ohnosequences.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Hunger  
View profile  
 More options Apr 28 2012, 5:01 pm
From: Michael Hunger <michael.hun...@neotechnology.com>
Date: Sat, 28 Apr 2012 23:01:17 +0200
Local: Sat, Apr 28 2012 5:01 pm
Subject: Re: [Neo4j] BatchInserter Deprecated?

Pablo,

perhaps you can find the time to write a quick data generator (in memory no file reading) and test it with the batch-inserter and the core-API and publish it as a GH project (and blog post)?

That would be awesome.

Cheers

Michael

Am 28.04.2012 um 22:48 schrieb Pablo Pareja:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Pablo Pareja  
View profile  
 More options Apr 28 2012, 5:53 pm
From: Pablo Pareja <ppar...@era7.com>
Date: Sat, 28 Apr 2012 17:53:30 -0400
Local: Sat, Apr 28 2012 5:53 pm
Subject: Re: [Neo4j] BatchInserter Deprecated?

Hi Michael,

Yeah, that'd be a good idea. I'll get into it if I can find some time.

Cheers,

Pablo

On Sat, Apr 28, 2012 at 5:01 PM, Michael Hunger <

--
Pablo Pareja Tobes

My site     http://about.me/pablopareja
LinkedIn    http://www.linkedin.com/in/pabloparejatobes
Twitter       http://www.twitter.com/pablopareja

Creator of Bio4j --> http://www.bio4j.com

http://www.ohnosequences.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »