We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f8cd07 commit c6b4ebfCopy full SHA for c6b4ebf
crates/sui-core/src/authority/authority_store_tables.rs
@@ -235,7 +235,7 @@ impl AuthorityPerpetualTables {
235
KeyIndexing::key_reduction(obj_ref_size, 16..(obj_ref_size - 16));
236
237
let mut objects_config = KeySpaceConfig::new()
238
- .with_max_dirty_keys(4096)
+ .with_max_dirty_keys(2048)
239
.with_unloaded_iterator(true)
240
.with_value_cache_size(value_cache_size);
241
if matches!(db_options_override, Some(options) if options.is_validator) {
@@ -247,7 +247,7 @@ impl AuthorityPerpetualTables {
247
"objects".to_string(),
248
ThConfig::new_with_config_indexing(
249
object_indexing,
250
- mutexes * 4,
+ mutexes * 16,
251
KeyType::uniform(1),
252
objects_config,
253
),
0 commit comments