Yes you are right, the issue is here in Astyanax
*AnnotatedCompositeSerializer.java
:*
private T createContents(Class clazz) throws
InstantiationException, IllegalAccessException {
return clazz.newInstance();
}
I'm not sure how to get that reflection call working with my Scala
TestCompositeColumn
Was there more to the error message ? Looks likes there should be a caused by
exception there
https://github.com/Netflix/astyanax/blob/master/src/main/java/com/netflix/astyanax/serializers/AnnotatedCompositeSerializer.java#L114
The InstationError is being raised when it tries to create an instan
Oops, forgot to mention Cassandra version - 1.1.4
On Tue, Sep 11, 2012 at 5:54 AM, Ran User wrote:
> Stuck for hours on this one, thanks in advance!
>
> - Scala 2.9.2
> - Astyanax 1.0.6 (also tried 1.0.5)
> - Using CompositeRowKey, CompositeColumnName
> - No problem inserting into Cassandra
> -