Files
qdrant/lib/api/Cargo.toml
Andrey Vasnetsov 926a058c73 Fixing missed leader inconsistency (#1286)
* WIP: introduce local state

* WIP: sync local state with consensus in idle

* fmt

* rm extensive debug

* update triple replication test

* update triple replication test

* rm debug logs

* fix check for established leader + only sync local if no proposals

* remove unused file

* test compatible with python 3.8

* test compatible with python 3.8

* longer wait for consensus

* longer wait for consensus

* extra sleep in test

* remove extra sleep

* Fixing missed leader inconsistency - transfers (#1298)

* explicit request timeout

* explicit request timeout

* explicit request timeout

* explicit request timeout

* explicit request timeout

* prevent double handelling of the transfer termination

* kill the process

* log on inconsistency

* log on inconsistency

* log on inconsistency

* debug

* revert debug in test

* forward updates to partial shards, abort transactions on dead node report

* fmt

* disable retry of transfer, if the transfer was cancelled + allow predictable ports in test

* fix import
2022-12-23 00:45:04 +01:00

28 lines
731 B
TOML

[package]
name = "api"
version = "0.11.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
env_logger = "0.10.0"
tonic = { version = "0.8.3", features = ["gzip"] }
prost = "0.11.5"
prost-types = "0.11.5"
serde = { version = "~1.0", features = ["derive"] }
serde_json = "~1.0"
schemars = { version = "0.8.11", features = ["uuid1", "preserve_order"] }
uuid = { version = "1.2", features = ["v4", "serde"] }
tower = "0.4.13"
tokio = "1.23.0"
rand = "0.8.5"
chrono = { version = "~0.4", features = ["serde"] }
thiserror = "1.0"
segment = {path = "../segment"}
[build-dependencies]
tonic-build = { version = "0.8.4", features = ["prost"] }