astyanax icon indicating copy to clipboard operation
astyanax copied to clipboard

Cassandra Java Client

Results 103 astyanax issues
Sort by recently updated
recently updated
newest added

CompositeEntityManager.createNativeQuery() would create a new NativeQuery but with no option to change the ordering of the resultset in the underlying column range. I just made RangeBuilder.setReversed accessible via NativeQuery (which...

So ... I've superclass A with some pre-defined stuff and I've class B which extends and has few extra fields. If I use class B - it can't find a...

I'm trying to insert some data to Cassandra with Astyanax, by I'm getting a lot of "Re-preparing already prepared query" warnings even if have caching enabled: ``` 22:08:03,703 WARN Cluster:1702...

astyanax-cassandra currently has a dependency on an old servicemix version of commons-csv. In astyanax-cassandra/build.gradle: ``` compile "org.apache.servicemix.bundles:org.apache.servicemix.bundles.commons-csv:$commonsCsvVersion" ``` The version is specified in dependency-versions.gradle: ``` commonsCsvVersion = "1.0-r706900_3" ``` I...

[astyanax-core 1.56.43] We switched over from hector client and benefiting big time from all the cool features astyanax client offering. One issue we are running into is connection get cut...

TSocket supports only one timeout field so setting timeout or invoking TSocket.setTimeout sets both timeout field and sets underlying java socket's socket timeout. TSocket is set up with cpConfig.getConnectTimeout() which...

Some basic serializer types which are natively supported by cassandra (see types in org.apache.cassandra.db.marshal.*) are missing from composite implementation.

This is the solution for issue #554

Since datastax-driver relies on newer version of guava some problems have born in OSGi. This simple fix solves issue.

Entities inserted or updated via the put(T entity) method don't get persisted through a commit after multiple operations if autocommit is set to false. Entities removed via the remove(T entity)...