java-driver
java-driver copied to clipboard
DataStax Java Driver for Apache Cassandra
Ability to specify ordering of remote dc's via new configuration for deterministic failovers. https://datastax-oss.atlassian.net/browse/JAVA-3142 **Motivation** The driver uses the remote contact points(in no particular order) when a Query plan is...
Currently, the `SchemaBuilder` works with vector like this: ```java assertThat( createTable("foo") .withPartitionKey("k", DataTypes.INT) .withColumn("v", new DefaultVectorType(DataTypes.FLOAT, 3))) .hasCql("CREATE TABLE foo (k int PRIMARY KEY,v VECTOR)"); ``` Or ```java assertThat(createTable("foo") .withPartitionKey("k",...
RequestTracker implementations may want to use the ExecutionInfo object e.g logging request/response size, etc.
For DataStax internal jenkins.
This PR open-sources the work Joey Lynch and I did and presented at ApacheCon 2022. It requires a bit of work before it's mergeable, but hoping to get some feedback...
For [DOC-4062](https://datastax.jira.com/browse/DOC-4062) (private) Issue: One of my customer has encountered an issue while using more than 25 values in the IN clause. Answer: “It is invalid pattern with Cassandra 4...
The method IndexMetadata.decribe can create two types of indexes: 1. CUSTOM INDEX 2. INDEX When the code produces a CQL statement for the first type (custom), there is no semicolon...