Up and Running with Cassandra

2009-07-06 Thread Evan Weaver
In case you missed it, a big introductory post: http://blog.evanweaver.com/articles/2009/07/06/up-and-running-with-cassandra/ Evan -- Evan Weaver

Re: Table Index

2009-07-06 Thread Mark Robson
2009/7/7 Vijay > The reason i am asking is i have multiple columns which a user can query on > like UID, URL, TAGS (all of them are unique) but how can i get to them > without getting stuck with the rowid? coz rowid can be one of those and > the user at any time can know only one Yo

Re: cassandra Cli example from wiki error

2009-07-06 Thread Kevin Castiglione
thanks a lot, it works now! On Mon, Jul 6, 2009 at 5:41 PM, Jonathan Ellis wrote: > Sorry, 277 is the right issue. Just one patch. > > Once it's applied it will be in svn trunk. > > On Mon, Jul 6, 2009 at 7:35 PM, Kevin > Castiglione wrote: > > thanks for this: > > http://issues.apache.org/jira

Re: cassandra Cli example from wiki error

2009-07-06 Thread Jonathan Ellis
Sorry, 277 is the right issue. Just one patch. Once it's applied it will be in svn trunk. On Mon, Jul 6, 2009 at 7:35 PM, Kevin Castiglione wrote: > thanks for this: > http://issues.apache.org/jira/browse/CASSANDRA-272 > > do i need to apply all 3 patches? > > or can you tell me which svn versio

Re: cassandra Cli example from wiki error

2009-07-06 Thread Kevin Castiglione
thanks for this: http://issues.apache.org/jira/browse/CASSANDRA-272 do i need to apply all 3 patches? or can you tell me which svn version i can use so that it is working? thanks again! On Mon, Jul 6, 2009 at 5:31 PM, Jonathan Ellis wrote: > This is a known problem in trunk. It's fixed by the

Re: cassandra Cli example from wiki error

2009-07-06 Thread Jonathan Ellis
This is a known problem in trunk. It's fixed by the patch in issue 272, which should be applied tonight or tomorrow. -Jonathan On Mon, Jul 6, 2009 at 7:27 PM, Kevin Castiglione wrote: > hi > i just got cassandra compiled. > but the cli example from wiki is not working. the conf files are untouch

cassandra Cli example from wiki error

2009-07-06 Thread Kevin Castiglione
hi i just got cassandra compiled. but the cli example from wiki is not working. the conf files are untouched. can you help me out here! thanks CLI output: ./cassandra-cli --host localhost --port 9160 Connected to localhost/9160 Welcome to cassandra CLI. Type 'help' or '?' for help. Type 'quit' or

Re: Table Index

2009-07-06 Thread Vijay
Thanks Sandeep for your response, but how do i get to the data, when i dont know the rowid? i have a unique value which i am querying for in the table but i dont know the ROWNAME. Is there a way? or should i just create another table and store the name in there? "The indexing you see in th

Re: Table Index

2009-07-06 Thread Sandeep Tata
Cassandra does not currently have secondary indexes. The indexing you see in the code is just a mechanism to get at the (known) keys and columns quickly. On Mon, Jul 6, 2009 at 3:59 PM, Vijay wrote: > Hi, > I think this is a very simple question and might have been asked before > but couldn't

Table Index

2009-07-06 Thread Vijay
Hi, I think this is a very simple question and might have been asked before but couldn't find answer elsewhere Sorry if it is repetitive. We are trying to use Cassandre and i am stuck in the datamodel. Do we have indexed table? i see some classes but dont know what they will be used fo

Re: python client?

2009-07-06 Thread Evan Weaver
Digg is planning to release an idiomatic Python client real-soon-now, but in the meantime you have to use Thrift. Evan On Mon, Jul 6, 2009 at 9:56 AM, Anthony Molinaro wrote: > Hi, > > Cassandra uses thrift for clients.  It's described here > > http://wiki.apache.org/cassandra/ThriftInterface > >

Re: python client?

2009-07-06 Thread Anthony Molinaro
Hi, Cassandra uses thrift for clients. It's described here http://wiki.apache.org/cassandra/ThriftInterface -Anthony On Mon, Jul 06, 2009 at 09:44:49AM -0700, Kevin Castiglione wrote: > is there a python client available? where do i access it from? > thanks! -- --

python client?

2009-07-06 Thread Kevin Castiglione
is there a python client available? where do i access it from? thanks!