DO NOT MERGE: enable pipelining (32,concurrent-futures) by default so we get test suite coverage

This commit is contained in:
Christian Schwarz
2024-11-25 09:16:09 +01:00
parent bd31f42f52
commit 6ec5ac1ac8

View File

@@ -415,7 +415,10 @@ impl Default for ConfigToml {
virtual_file_io_mode: None,
tenant_config: TenantConfigToml::default(),
no_sync: None,
page_service_pipelining: None,
page_service_pipelining: Some(PageServicePipeliningConfig {
max_batch_size: NonZeroUsize::new(32).unwrap(),
protocol_pipelining_mode: PageServiceProtocolPipeliningMode::ConcurrentFutures,
}),
}
}
}