mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-27 01:50:38 +00:00
Fix compression
This commit is contained in:
3
Cargo.lock
generated
3
Cargo.lock
generated
@@ -2572,12 +2572,11 @@ checksum = "b07db065a5cf61a7e4ba64f29e67db906fb1787316516c4e6e5ff0fea1efcd8a"
|
||||
[[package]]
|
||||
name = "yakv"
|
||||
version = "0.1.9"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d9e0d4aaa804d3b7acae0ee0e3c28999dd590a99391f784e18cd037ed9191655"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"crc32c",
|
||||
"fs2",
|
||||
"lz4_flex",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
||||
@@ -37,8 +37,8 @@ async-trait = "0.1"
|
||||
const_format = "0.2.21"
|
||||
tracing = "0.1.27"
|
||||
signal-hook = {version = "0.3.10", features = ["extended-siginfo"] }
|
||||
#yakv = { path = "../../yakv" }
|
||||
yakv = "0.1.9"
|
||||
yakv = { path = "../../yakv" }
|
||||
#yakv = "0.1.9"
|
||||
lz4_flex = "0.9.0"
|
||||
|
||||
postgres_ffi = { path = "../postgres_ffi" }
|
||||
|
||||
@@ -34,10 +34,10 @@ pub mod defaults {
|
||||
|
||||
// Minimal size of WAL records chain to trigger materialization of the page
|
||||
pub const DEFAULT_CHECKPOINT_DISTANCE: u64 = 0;
|
||||
pub const DEFAULT_CHECKPOINT_PERIOD: Duration = Duration::from_secs(10);
|
||||
pub const DEFAULT_CHECKPOINT_PERIOD: Duration = Duration::from_secs(1);
|
||||
|
||||
pub const DEFAULT_GC_HORIZON: u64 = 2000_000_000u64;
|
||||
pub const DEFAULT_GC_PERIOD: Duration = Duration::from_secs(10000);
|
||||
pub const DEFAULT_GC_HORIZON: u64 = 1024*1024;
|
||||
pub const DEFAULT_GC_PERIOD: Duration = Duration::from_secs(1);
|
||||
|
||||
pub const DEFAULT_SUPERUSER: &str = "zenith_admin";
|
||||
pub const DEFAULT_RELISH_STORAGE_MAX_CONCURRENT_SYNC_LIMITS: usize = 100;
|
||||
|
||||
Reference in New Issue
Block a user