Re: Creating key spaces on the fly

2010-07-06 Thread Tharindu Mathew
Thanks Jess and Aaron for the replies. I will take a checkout and try again.

Re: Creating key spaces on the fly

2010-07-06 Thread aaron morton
Rather than creating a new keyspace consider using the domain as part of a key. Generally an application has a single keyspace and a few column families (enough to response to the queries you expect). Think about using the domain as the full or partial key, and then creating column families fo

Re: Creating key spaces on the fly

2010-07-06 Thread Jesse McConnell
it is possible on trunk now I believe.. jesse -- jesse mcconnell jesse.mcconn...@gmail.com On Tue, Jul 6, 2010 at 10:13, Tharindu Mathew wrote: > Hi everyone, > > I'm trying to use Cassandra to replace a RDBMS. > > My application handles domains. And, for every domain it creates a new DB > wi

Creating key spaces on the fly

2010-07-06 Thread Tharindu Mathew
Hi everyone, I'm trying to use Cassandra to replace a RDBMS. My application handles domains. And, for every domain it creates a new DB with a pre-defined set of tables. After reading the documentation, I assume that this should be handled on Cassandra by creating new key spaces. Could I know if