Dmitry Kropachev

Results 344 issues of Dmitry Kropachev

This is idea from [PR](https://github.com/scylladb/gocql/pull/164). ### Proposal There are two levels on what we can do 1. Expose shard info by implementing following API: ``` func (s *Session) GetShardAwareRoutingInfo(table string,...

enhancement

This feature could be used for multiple purposes: from custom retry to ssl CA injection

It is essentially copy of cassandra connector. Only two options added: 1. Consistency level 2. Host policy config Since `github.com/scylladb/gocql` has `github/gocql/gocql` module name it is necessary to have `go.mod`...

Working with [scylladb/gocql](https://github.com/scylladb/gocql) tracer we have found couple of flaws in current implementation, closing them would help drivers to work with them easier: ### 1. There is no common clear...

We need to have a test that does what we do on the cloud: 1. Driver should be configured to re-resolve DNS endpoints. 2. Deploy cluster of 3 nodes 3....

enhancement
integration-tests

From https://scylladb-users.slack.com/archives/C2NLNBXLN/p1725297082189579?thread_ts=1725284973.161149&cid=C2NLNBXLN It seems I found the reason. Scylla driver will create connection per shard. It means if you have 3 nodes with 8 CPU it will create 24 connections...

Currently CI for `scylla-.3.x` is not running any tests. It [returns](https://github.com/scylladb/java-driver/actions/runs/10582193524/job/29321305230) the following on every test suit: ``` Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 ``` We need...

`ResolverFactory` was implemented in `4.x` at https://github.com/scylladb/java-driver/pull/332 We need to backport it to `3.x` to unlock DNS tests.

[PR#19684](https://github.com/scylladb/scylladb/pull/19684) brings possibility of having nodes coordinator-only nodes (or zero-token nodes). These types of nodes are going to be supported only in RAFT. Such nodes, despite being registered in the...

enhancement