You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -115,6 +115,7 @@ Unless you need to set a non-default value, it is recommended to only populate o
115
115
|`LOCK_QUEUE_POLL_INTERVAL_MS`| "50" | Interval in milliseconds between queue position checks when waiting for a lock. Lower values provide faster lock acquisition but increase Redis load. Default is 50ms. |
116
116
|`LOCK_HEARTBEAT_MISSED_COUNT`| "5" | Number of consecutive heartbeats that can be missed before a waiter is considered dead and pruned from the queue. Used in Redis locking strategy only. Heartbeat TTL is calculated as `LOCK_QUEUE_POLL_INTERVAL_MS * LOCK_HEARTBEAT_MISSED_COUNT`. Default is 5. |
117
117
|`USE_MIRROR_NODE_MODULARIZED_SERVICES`| null | Controls routing of Mirror Node traffic through modularized services. When set to `true`, enables routing a percentage of traffic to modularized services. When set to `false`, ensures traffic follows the traditional non-modularized flow. When not set (i.e. `null` by default), no specific routing preference is applied. As Mirror Node gradually transitions to a fully modularized architecture across all networks, this setting will eventually default to `true`. |
118
+
|`WORKERS_POOL_ENABLED`| true | Controls whether CPU-intensive tasks (such as log fetching and block processing) run in a separate worker thread pool. When set to `false`, these tasks run on the main event loop instead, which significantly reduces memory overhead. This setting is recommended for resource-constrained environments. |
118
119
|`WORKERS_POOL_MAX_THREADS`| 4 | The maximum number of threads that are always running for this thread pool. |
119
120
|`WORKERS_POOL_MIN_THREADS`| 2 | The minimum number of threads that are always running for this thread pool. |
0 commit comments