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
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,7 @@ Unless you need to set a non-default value, it is recommended to only populate o
68
68
|`IP_RATE_LIMIT_STORE`| null | Specifies the rate limit store to use for IP-based rate limiting: valid values are "LRU", "REDIS", with the possibility to be extended with a custom implementation (see [Store Selection](rate-limiting.md#store-selection)). If unset, falls back to Redis when `REDIS_ENABLED=true`, otherwise uses in-memory LRU. |
69
69
|`JUMBO_TX_ENABLED`| "true" | Controls how large transactions are handled during `eth_sendRawTransaction`. When set to `true`, transactions up to 128KB can be sent directly to consensus nodes without using Hedera File Service (HFS), as long as contract bytecode doesn't exceed 24KB. When set to `false`, all transactions containing contract deployments use the traditional HFS approach. This feature leverages the increased transaction size limit to simplify processing of standard Ethereum transactions. |
70
70
|`LIMIT_DURATION`| "60000" | The maximum duration in ms applied to IP-method based rate limits. |
71
+
|`LOCAL_LOCK_MAX_ENTRIES`| "1000" | Maximum number of lock entries stored in memory. Prevents unbounded memory growth. |
71
72
|`MAX_GAS_ALLOWANCE_HBAR`| "0" | The maximum amount, in hbars, that the JSON-RPC Relay is willing to pay to complete the transaction in case the senders don't provide enough funds. Please note, in case of fully subsidized transactions, the sender must set the gas price to `0` and the JSON-RPC Relay must configure the `MAX_GAS_ALLOWANCE_HBAR` parameter high enough to cover the entire transaction cost. |
72
73
|`MAX_TRANSACTION_FEE_THRESHOLD`| "15000000" | Used to set the max transaction fee. This is the HAPI fee which is paid by the relay operator account. |
73
74
|`MIRROR_NODE_AGENT_CACHEABLE_DNS`| "true" | Flag to set if the mirror node agent should cacheable DNS lookups, using better-lookup library. |
@@ -105,6 +106,8 @@ Unless you need to set a non-default value, it is recommended to only populate o
105
106
|`TX_DEFAULT_GAS`| "400000" | Default gas for transactions that do not specify gas. |
106
107
|`TXPOOL_API_ENABLED`| "false" | Enables all txpool related methods. |
107
108
|`USE_ASYNC_TX_PROCESSING`| "true" | Set to `true` to enable `eth_sendRawTransaction` to return the transaction hash immediately after passing all prechecks, while processing the transaction asynchronously in the background. |
109
+
|`LOCK_MAX_HOLD_MS`| "30000" | Maximum time in milliseconds a lock can be held before automatic force-release. This TTL prevents deadlocks when transaction processing hangs or crashes. Default is 30 seconds. |
110
+
|`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. |
108
111
|`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`. |
0 commit comments