diff --git a/crates/storage/db/src/tables/models/sharded_key.rs b/crates/storage/db/src/tables/models/sharded_key.rs index 1127ab86d..eefc175e3 100644 --- a/crates/storage/db/src/tables/models/sharded_key.rs +++ b/crates/storage/db/src/tables/models/sharded_key.rs @@ -8,7 +8,7 @@ use reth_primitives::BlockNumber; use serde::{Deserialize, Serialize}; /// Number of indices in one shard. -pub const NUM_OF_INDICES_IN_SHARD: usize = 100; +pub const NUM_OF_INDICES_IN_SHARD: usize = 2_000; /// Sometimes data can be too big to be saved for a single key. This helps out by dividing the data /// into different shards. Example: diff --git a/crates/storage/db/src/tables/models/storage_sharded_key.rs b/crates/storage/db/src/tables/models/storage_sharded_key.rs index 0791c8ad1..e8f3d55a4 100644 --- a/crates/storage/db/src/tables/models/storage_sharded_key.rs +++ b/crates/storage/db/src/tables/models/storage_sharded_key.rs @@ -11,7 +11,7 @@ use serde::{Deserialize, Serialize}; use super::ShardedKey; /// Number of indices in one shard. -pub const NUM_OF_INDICES_IN_SHARD: usize = 100; +pub const NUM_OF_INDICES_IN_SHARD: usize = 2_000; /// Sometimes data can be too big to be saved for a single key. This helps out by dividing the data /// into different shards. Example: