mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-09 06:22:57 +00:00
Makes `flush_frozen_layer` add a barrier to the upload queue and makes it wait for that barrier to be reached until it lets the flushing be completed. This gives us backpressure and ensures that writes can't build up in an unbounded fashion. Fixes #7317
53 lines
1.3 KiB
TOML
53 lines
1.3 KiB
TOML
[package]
|
|
name = "compute_tools"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
# Enables test specific features.
|
|
testing = []
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-compression.workspace = true
|
|
chrono.workspace = true
|
|
cfg-if.workspace = true
|
|
clap.workspace = true
|
|
flate2.workspace = true
|
|
futures.workspace = true
|
|
hyper = { workspace = true, features = ["full"] }
|
|
nix.workspace = true
|
|
notify.workspace = true
|
|
num_cpus.workspace = true
|
|
opentelemetry.workspace = true
|
|
postgres.workspace = true
|
|
regex.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
signal-hook.workspace = true
|
|
tar.workspace = true
|
|
reqwest = { workspace = true, features = ["json"] }
|
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
|
|
tokio-postgres.workspace = true
|
|
tokio-util.workspace = true
|
|
tokio-stream.workspace = true
|
|
tracing.workspace = true
|
|
tracing-opentelemetry.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
tracing-utils.workspace = true
|
|
thiserror.workspace = true
|
|
url.workspace = true
|
|
|
|
compute_api.workspace = true
|
|
utils.workspace = true
|
|
workspace_hack.workspace = true
|
|
toml_edit.workspace = true
|
|
remote_storage = { version = "0.1", path = "../libs/remote_storage/" }
|
|
vm_monitor = { version = "0.1", path = "../libs/vm_monitor/" }
|
|
zstd = "0.13"
|
|
bytes = "1.0"
|
|
rust-ini = "0.20.0"
|
|
rlimit = "0.10.1"
|