Astyanax javax.persistence.PersistenceException: failed to construct entity

2013-06-14 Thread Joe Greenawalt
Hi trying to use Astyanax Entity persister. https://github.com/Netflix/astyanax/wiki/Entity-persister Playing around, so this is all in a JUnit test. Everything seems to work, except when getting the object by id with .get(id). Looks like it fails when trying to create the object to map it back

Re: CQL3 Driver, DESCRIBE

2013-06-10 Thread Joe Greenawalt
> driver (I don't know for the .Net one but it's probably true there too) you > can just get the equivalent through the > Cluster.getMetadadata().getKeyspace() method. > > -- > Sylvain > > > On Sun, Jun 9, 2013 at 3:49 PM, Joe Greenawalt > wrote: > >

CQL3 Driver, DESCRIBE

2013-06-09 Thread Joe Greenawalt
Hi, I was playing around with the datastax driver today, and I wanted to call "DESCRIBE TABLE ;". But got a syntax error: line 1:0 no viable alternative at input 'describe'. Is that functionality just not implemented in the 1.0 driver? If that's true: Does anyone know if its planned? Is ther

Re: Dynamic Columns Question Cassandra 1.2.5, Datastax Java Driver 1.0

2013-06-06 Thread Joe Greenawalt
wrote an more in-depth >> answer: >> http://www.datastax.com/dev/blog/does-cql-support-dynamic-columns-wide-rows >> >> On Thu, Jun 6, 2013 at 8:02 AM, Joe Greenawalt >> wrote: >> > Hi, >> > I'm having some problems figuring out how to append a

Dynamic Columns Question Cassandra 1.2.5, Datastax Java Driver 1.0

2013-06-06 Thread Joe Greenawalt
Hi, I'm having some problems figuring out how to append a dynamic column on a column family using the datastax java driver 1.0 and CQL3 on Cassandra 1.2.5. Below is what i'm trying: *cqlsh:simplex> create table user (firstname text primary key, lastname text); cqlsh:simplex> insert into user (fir