> java.lang.RuntimeException: org.apache.cassandra.db.marshal.MarshalException:
> cannot parse 'subject' as hex bytes
This has to do with the create column family statement...
> and comparator = 'BytesType'
Tells Cassandra that all column names in this CF should be interpreted as raw
bytes. Th
Hi me again - sorry i've just read that bytestype will expect hex input so my
question now is how to create a column that will accept non-validated text as
as input? I think I can maybe get round this by forcing UTF8Encoding
regardless if the string is already identified as UTF8 or not however