client-rust
client-rust copied to clipboard
Rust Client for TiKV.
I'm following the guide directly from here: https://tikv.org/docs/3.0/tasks/try/docker-stack/ I follow all the steps, running `docker service ls` as shown in the example it gives: ``` ID NAME MODE REPLICAS IMAGE...
run integration-tests on tikv 6.5.8 without `api-version = 2`, got error ```bash failures: ---- txn_batch_mutate_pessimistic stdout ---- thread 'txn_batch_mutate_pessimistic' panicked at tests/common/mod.rs:37:10: called `Result::unwrap()` on an `Err` value: ExtractedErrors([StringError("Multiple key...
We implement the complete keyspace feature and hard-code to use `API v2` in all integration tests in #439 . It would be much better to regression test on `API v1`...
solve: https://github.com/tikv/client-rust/issues/455 We were running into an issue with scans where periodically we noticed scans returning empty results for datasets that were present in a cluster. The hypothesis was that...
There is a bug in the client where the ttls are not properly sharded for RawBatchPuts. This essentially means that if the batch is spread across multiple regions, the ttls...
We were running into an issue with scans where periodically we noticed scans returning empty results for datasets that were present in a cluster. The hypothesis was that the scans...
Hello, I'm currently experimenting with TiFS (https://github.com/Hexilee/tifs). When copying large files, the TiKV cluster that I have locally gets under a constant load for a longer period of time (~1-2...
As per github it is showing that in raw client file put_with_ttl() function is implemented. Why i am not able to use the same ? When are you going to...
These trait implementations make it easier to work with `Key` instances outputted by operations like `scan` and `scan_keys` without making unnecessary clones.