Re: low performance inserting

2011-05-04 Thread charles THIBAULT
cubator-apache-org.3065146.n2.nabble.com/low-performance-inserting-tp6326832p6327957.html > Sent from the cassandra-u...@incubator.apache.org mailing list archive at > Nabble.com. >

Re: low performance inserting

2011-05-03 Thread mcasandra
Did you do a bulk upload with mysql from the same machine or separate insert/commit for each row? And did you run inserts from the same machine as the mysqld server? -- View this message in context: http://cassandra-user-incubator-apache-org.3065146.n2.nabble.com/low-performance-inserting

Re: low performance inserting

2011-05-03 Thread charles THIBAULT
Hi Sylvain, thanks for your answer. I'd make a test with the stress utility inserting 100 000 rows with 10 columns per row I use these options: -o insert -t 5 -n 10 -c 10 -d 192.168.1.210,192.168.1.211,... result: 161 seconds with MySQL using inserts (after a dump): 1.79 second Charles 201

Re: low performance inserting

2011-05-03 Thread Sylvain Lebresne
There is probably a fair number of things you'd have to make sure you do to improve the write performance on the Cassandra side (starting by using multiple threads to do the insertion), but the first thing is probably to start comparing things that are at least mildly comparable. If you do inserts

Re: low performance inserting

2011-05-03 Thread Roland Gude
Hi, Not sure this is the case for your Bad Performance, but you are Meassuring Data creation and Insertion together. Your Data creation involves Lots of class casts which are probably quite Slow. Try Timing only the b.send Part and See how Long that Takes. Roland Am 03.05.2011 um 12:30 schrieb

low performance inserting

2011-05-03 Thread charles THIBAULT
Hello everybody, first: sorry for my english in advance!! I'm getting started with Cassandra on a 5 nodes cluster inserting data with the pycassa API. I've read everywere on internet that cassandra's performance are better than MySQL because of the writes append's only into commit logs files. W