Dmitry Kropachev
Dmitry Kropachev
``` func TestMapScanWithRefMap2(t *testing.T) { session := createSession(t) defer session.Close() if err := createTable(session, `CREATE TABLE gocql_test.scan_map_ref_table ( testtext text PRIMARY KEY, testint int, )`); err != nil { t.Fatal("create...
Channel size of 1 should do the job, we need to ignore request to call it if there is already one call scheduled, but not being executed yet.
We have plenty of bugs when `marshal/unmarshal` logic does not cover some of the cases. Let's have a test suite that goes over all possible variation of values to `marshal/unmarshal`...
Idea is the following: 1. You create cluster configuration 2. You create session of it that does not actually connects to the cluster, but rather just starting this proccess. 3....
### Purpose This issue is here to open discussion for what changes should get into `v2` ### Changes (CONFIRMED) 1. Change module name to `github.com/scylladb/gocql` ### Changes (PROPESED) 1. Change...
[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...
Scylla have an ability to override server timeout by appending `USING TIMEOUT ms` to the query Make driver add `USING TIMEOUT ms` for scylla connections Closes #320
On https://github.com/scylladb/scylladb `test_tablet_storage_freeing` is [being flakky](https://github.com/scylladb/scylladb/issues/20489) probably due to the high concurency. There was PR https://github.com/scylladb/scylladb/pull/20494 to reduce concurency, but we need to look at why it was failing before...
It is resurrection of https://github.com/scylladb/python-driver/pull/336 Brings python `3.13` to the integration tests. Updates scylla to `5.4` and switches from `gabrielfalcao/pyenv-action@v16` to `actions/setup-python@v5`
Code under question is in the `DCAwareRoundRobinPolicy.distance`: https://github.com/scylladb/python-driver/blob/1c3cff88f4c0cf799efd2fbbd9443157dada09a9/cassandra/policies.py#L257-L264 This peace of the code creates a split in `DCAwareRoundRobinPolicy.distance` behavior for case when `used_hosts_per_remote_dc` is not empty: 1. if node was...