> Is there a particular reason for you to use EBS ? Instance Store are > recommended because they improve performances by reducing the I/O throttling.
> You should give the EC2 instance type (m1.xlarge / m1.large / ...) if you > want some feedback about the 2500 w/s, and also give the mean size of your > rows. The cluster was set up before I came onto the project, so I'm trying to get answers to these questions. > An other thing you should be aware of is that replicating the data to all > node reduce your performance, it is more or less like if you had only one > node (at performance level I mean). > Also, writing to different datacenters probably induce some network latency. In my understanding of how LOCAL_QUORUM works, the insert request is only waiting on (in my case) 2 nodes in the local datacenter to report a successful write . Ken.... ----- Original Message ----- From: "Alain RODRIGUEZ" <arodr...@gmail.com> To: user@cassandra.apache.org Sent: Wednesday, February 13, 2013 9:21:18 AM Subject: Re: Write performance expectations... Is there a particular reason for you to use EBS ? Instance Store are recommended because they improve performances by reducing the I/O throttling. An other thing you should be aware of is that replicating the data to all node reduce your performance, it is more or less like if you had only one node (at performance level I mean). Also, writing to different datacenters probably induce some network latency. You should give the EC2 instance type (m1.xlarge / m1.large / ...) if you want some feedback about the 2500 w/s, and also give the mean size of your rows. Alain 2013/2/13 < ka...@comcast.net > Hello, New member here, and I have (yet another) question on write performance. I'm using Apache Cassandra version 1.1, Python 2.7 and Pycassa 1.7. I have a cluster of 2 datacenters, each with 3 nodes, on AWS EC2 using EBS and the RandomPartioner. I'm writing to a column family in a keyspace that's replicated to all nodes in both datacenters, with a consistency level of LOCAL_QUORUM. I'm seeing write performance of around 2500 rows per second. Is this in the ballpark for this kind of configuration? Thanks in advance. Ken....