Re: Cassandra supported Avro data types

2013-01-03 Thread aaron morton
Collections might be what you are looking for http://www.datastax.com/dev/blog/cql3_collections Cheers - Aaron Morton Freelance Cassandra Developer New Zealand @aaronmorton http://www.thelastpickle.com On 4/01/2013, at 11:35 AM, Renato Marroquín Mogrovejo wrote: > Thanks Aar

Re: Cassandra supported Avro data types

2013-01-03 Thread Renato Marroquín Mogrovejo
Thanks Aaron! What I am trying to map into Cassandra is an avro model like the one that follows: { "type": "record", "name": "WebPage", "namespace": "org.bytegolem.webpage.generated", "fields" : [ {"name": "url", "type": "string"}, {"name": "content", "type": ["null","bytes"]}] }

Re: Cassandra supported Avro data types

2013-01-03 Thread aaron morton
> I am not sure which > Avro data types Cassandra support None. Any mention to avro internally is from a dark time in the past. Cassandra presents it's own data model, which can be used to store pretty much anything. So you could serialise the avro types and store them as byte streams if you

Cassandra supported Avro data types

2013-01-03 Thread Renato Marroquín Mogrovejo
Hi all, I have started playing around with Cassandra and I am not sure which Avro data types Cassandra supports. Is there any type of documentation or could anyone please help me on this doubt of mine? Thanks! Renato M.