Skip to content

Commit

Permalink
[State Sync] Reduce cache latency.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshLind authored and aptos-bot committed May 2, 2022
1 parent b6c34db commit f01a5a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/src/config/state_sync_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,10 @@ impl Default for StorageServiceConfig {
max_account_states_chunk_sizes: 1000,
max_concurrent_requests: 4000,
max_epoch_chunk_size: 100,
max_network_channel_size: 1000,
max_network_channel_size: 4000,
max_transaction_chunk_size: 1000,
max_transaction_output_chunk_size: 1000,
storage_summary_refresh_interval_ms: 100,
storage_summary_refresh_interval_ms: 50,
}
}
}
Expand Down Expand Up @@ -158,7 +158,7 @@ pub struct DataStreamingServiceConfig {
impl Default for DataStreamingServiceConfig {
fn default() -> Self {
Self {
global_summary_refresh_interval_ms: 100,
global_summary_refresh_interval_ms: 50,
max_concurrent_requests: 1,
max_data_stream_channel_sizes: 1000,
max_request_retry: 3,
Expand Down

0 comments on commit f01a5a3

Please sign in to comment.