Skip to content

Commit

Permalink
tighten keepalive limits
Browse files Browse the repository at this point in the history
  • Loading branch information
abhijat committed Nov 1, 2023
1 parent f7b3d5e commit ce74347
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ def __init__(self, test_context, *args, **kwargs):
'cloud_storage_manifest_max_upload_interval_sec':
self.manifest_upload_interval,
'cloud_storage_max_segment_readers_per_shard':
self.readers_per_shard
self.readers_per_shard,
'kafka_tcp_keepalive_timeout': 1,
'kafka_tcp_keepalive_probe_interval_seconds': 1,
'kafka_tcp_keepalive_probes': 2
}
super().__init__(test_context,
*args,
Expand Down

0 comments on commit ce74347

Please sign in to comment.