Make defaults for batch_size_threshold, max_in_flight_requests

This commit is contained in:
2025-08-24 20:23:17 -04:00
parent 333148bb5a
commit da69a99cf4

View File

@@ -91,8 +91,8 @@ The persistence thread collects commits into batches using two trigger condition
| Parameter | Default | Description | | Parameter | Default | Description |
|-----------|---------|-------------| |-----------|---------|-------------|
| `batch_timeout_ms` | 5ms | Maximum time to wait collecting commits for batching | | `batch_timeout_ms` | 5ms | Maximum time to wait collecting commits for batching |
| `batch_size_threshold` | - | Threshold for triggering batch processing | | `batch_size_threshold` | 1MB | Threshold for triggering batch processing |
| `max_in_flight_requests` | - | Maximum concurrent requests to persistence backend | | `max_in_flight_requests` | 5 | Maximum concurrent requests to persistence backend |
| `target_pool_size` | 2x in-flight | Target number of connections to maintain | | `target_pool_size` | 2x in-flight | Target number of connections to maintain |
| `max_retry_attempts` | 3 | Maximum retries for failed batches before aborting | | `max_retry_attempts` | 3 | Maximum retries for failed batches before aborting |
| `retry_base_delay_ms` | 100ms | Base delay for exponential backoff retries | | `retry_base_delay_ms` | 100ms | Base delay for exponential backoff retries |