From d73c95d24d7fb6efea18c8ee7d5489c4eb4b77a4 Mon Sep 17 00:00:00 2001 From: Ivan Reshetnikov Date: Wed, 11 Jun 2025 16:50:38 +0200 Subject: [PATCH 1/2] fix: lower rocksdb reader channel capacity --- crates/rocks/src/db/reader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/rocks/src/db/reader.rs b/crates/rocks/src/db/reader.rs index 995c2d84..65f85050 100644 --- a/crates/rocks/src/db/reader.rs +++ b/crates/rocks/src/db/reader.rs @@ -14,7 +14,7 @@ use { tokio::sync::oneshot, }; -const CHANNEL_CAPACITY: usize = 8192; +const CHANNEL_CAPACITY: usize = 1024; #[derive(Debug, thiserror::Error)] #[error("Invalid number of reader threads")] From f656d76a9d471a0f91f35908c3d358f37ed877d2 Mon Sep 17 00:00:00 2001 From: Github Bot Date: Wed, 11 Jun 2025 14:52:15 +0000 Subject: [PATCH 2/2] Bump VERSION to 250611.0 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index b8b7012c..07776933 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -250610.0 +250611.0