RE: Getting Cassandra 0.7 beta2 to work - creating keyspaces

2010-10-10 Thread Andre
That's it. Now I can actually have a play with it. Thanks Nicolas From: Nicolas Mathieu [mailto:nico...@gmail.com] Sent: 10 October 2010 22:29 To: user@cassandra.apache.org Subject: Re: Getting Cassandra 0.7 beta2 to work - creating keyspaces Since 0.7 beta 2 or something, locators

Re: Getting Cassandra 0.7 beta2 to work - creating keyspaces

2010-10-10 Thread Nicolas Mathieu
kUnawareStrategy"); ks.setName("Keyspace1"); ks.setCf_defs(cl); client.system_add_keyspace(ks); } *From:* Nicolas Mathieu [mailto:nico...@gmail.com] *Sent:* 10 October 2010 18:35 *To:* user@cassandra.apache.org *Subject:* Re: Getting Cassan

RE: Getting Cassandra 0.7 beta2 to work - creating keyspaces

2010-10-10 Thread Andre
cl); client.system_add_keyspace(ks); } From: Nicolas Mathieu [mailto:nico...@gmail.com] Sent: 10 October 2010 18:35 To: user@cassandra.apache.org Subject: Re: Getting Cassandra 0.7 beta2 to work - creating keyspaces Try this : TFramedTranspor transport = new TFramedTr

Re: Getting Cassandra 0.7 beta2 to work - creating keyspaces

2010-10-10 Thread Nicolas Mathieu
Try this : TFramedTranspor transport = new TFramedTransport(new TSocket(host, port)); Cassandra.Client cassandraConn = new Cassandra.Client(new TBinaryProtocol(transport)); transport.open(); It is now Framed transport ;-) Hope that helps Nico008 On 10/10/2010 18:40, Andre wrote: Hi everyon