Re: Expanding cluster to include a new DR datacenter

2012-08-22 Thread Tyler Hobbs
If you didn't see this particular section, you may find it useful: http://www.datastax.com/docs/1.1/operations/cluster_management#adding-a-data-center-to-a-cluster Some comments inline: On Wed, Aug 22, 2012 at 3:43 PM, Bryce Godfrey wrote: > We are in the process of building out a new DR system

Re: A few questions about Cassandra's native protocol

2012-08-22 Thread Christoph Hack
On Wed, Aug 22, 2012 at 11:00 PM, Rob Coli wrote: > FWIW, while I suppose a client author is technically a "user" of > Cassandra, you appear to be making suggestions related to the > development of Cassandra. As I understand the conceptual seperation > between lists, you probably want to send such

Re: A few questions about Cassandra's native protocol

2012-08-22 Thread Rob Coli
On Wed, Aug 22, 2012 at 2:12 AM, Christoph Hack wrote: > 4. Prepared Statements FWIW, while I suppose a client author is technically a "user" of Cassandra, you appear to be making suggestions related to the development of Cassandra. As I understand the conceptual seperation between lists, you pro

Expanding cluster to include a new DR datacenter

2012-08-22 Thread Bryce Godfrey
We are in the process of building out a new DR system in another Data Center, and we want to mirror our Cassandra environment to that DR. I have a couple questions on the best way to do this after reading the documentation on the Datastax website. We didn't initially plan for this to be a DR s

Re: Cluster per Application vs. Multi-Application Clusters

2012-08-22 Thread Hiller, Dean
True, all in one cluster is very comparable to putting your application on amazon's cloud. When you have lots of apps, you can benefit from a batch job at night using resources that are not used by your day job apps. Always tradeoffs of course as if both apps go off at the same timeŠ.well, you get

Re: Why so slow?

2012-08-22 Thread Rob Coli
On Sun, Aug 19, 2012 at 11:09 AM, Peter Morris wrote: > Is the Windows community edition crippled for network use perhaps, or could > the problem be something else? It's not "crippled" but it underperforms Cassandra on Linux. Cassandra contains various Linux specific optimizations which result in

Deleting a row from a counter CF

2012-08-22 Thread Oleg Dulin
I get this: InvalidRequestException(why:invalid operation for commutative columnfamily Any thoughts ? We use Pelops...

Re: Cluster per Application vs. Multi-Application Clusters

2012-08-22 Thread Edward Capriolo
If you are staring out small one logical/physical cluster is probably the best and only approach. Long term this is very case by case dependent but I generally believe Cluster per Application is the best approach. Although I consider it "Cluster per QOS" For our use cases I find that two applicat

Re: nodetool repair - when is it not needed ?

2012-08-22 Thread Rob Coli
On Wed, Aug 22, 2012 at 8:37 AM, Senthilvel Rangaswamy wrote: > We are running Cassandra 1.1.2 on EC2. Our database is primarily all > counters and we don't do any > deletes. > > Does nodetool repair do anything for such a database. All the docs I read > for nodetool repair suggests > that nodetoo

nodetool repair - when is it not needed ?

2012-08-22 Thread Senthilvel Rangaswamy
We are running Cassandra 1.1.2 on EC2. Our database is primarily all counters and we don't do any deletes. Does nodetool repair do anything for such a database. All the docs I read for nodetool repair suggests that nodetool repair is needed only if there is deletes. Thanks, Senthil

Re: Cluster per Application vs. Multi-Application Clusters

2012-08-22 Thread Hiller, Dean
Just an opinion here as we are having to do this ourselves loading tons of researchers datasets into one clusters. We are going the path of one keyspace as it makes it easier if you ever want to mine the data so you don't have to keep building different clients for another keyspace. We ended u

Re: A few questions about Cassandra's native protocol

2012-08-22 Thread Christoph Hack
4. Prepared Statements It should be possible to prepare statements that do not take any arguments. This simplifies the client development significantly (otherwise everybody has to write his own parser to determine the number of arguments) and might also speed up common queries. The current impleme

Re: Heap size question

2012-08-22 Thread Tamar Fraenkel
Hi! I am running 1.0.8. So if I understand correctly both Memtable and Key cache are stored in the heap. (I don't have row cache) SSTables are mapped to operating system's virtual memory system, so if I increase heap I guess there will be less memory for this? I have seen the changes in 1.1, but