This page covers the settings that control how Blnk queues, routes, retries, and monitors background work for transactions, webhooks, indexing, and inflight expiry. For transaction batching, locking, and coalescing settings, see Transaction configuration.Documentation Index
Fetch the complete documentation index at: https://docs.blnkfinance.com/llms.txt
Use this file to discover all available pages before exploring further.
Queue settings
Use these settings to control queue names, sharding, concurrency, retries, and worker monitoring for normal queued processing.| Description | Default | |
|---|---|---|
BLNK_QUEUE_TRANSACTION | Base name used for normal transaction queue shards. | new:transaction |
BLNK_QUEUE_NUMBER_OF_QUEUES | Number of normal transaction queue shards used for queued work. | 20 |
BLNK_QUEUE_TRANSACTION_WORKER_CONCURRENCY | Worker concurrency for normal transaction queues. | 1 |
BLNK_QUEUE_MAX_RETRY_ATTEMPTS | Maximum number of retries for queued transaction failures. | 5 |
BLNK_QUEUE_INSUFFICIENT_FUND_RETRIES | Controls whether insufficient-funds failures are retried instead of rejected immediately. | false |
BLNK_QUEUE_WEBHOOK | Queue name used for webhook tasks. | new:webhook |
BLNK_QUEUE_INDEX | Queue name used for indexing tasks. | new:index |
BLNK_QUEUE_INFLIGHT_EXPIRY | Queue name used for inflight-expiry tasks. | new:inflight-expiry |
BLNK_QUEUE_WEBHOOK_CONCURRENCY | Worker concurrency for webhook and index tasks. | 20 |
BLNK_QUEUE_MONITORING_PORT | Port used for worker monitoring and metrics. | 5004 |
BLNK_QUEUE_NUMBER_OF_QUEUES
Blnk hashes the source balance ID and assigns the transaction to one of the configured queue shards. More queues allow more unrelated balances to process in parallel.
This helps reduce collisions before execution, but it does not replace locking. If many transactions still target the same balances, increasing the shard count alone will not solve the hotspot.
See instead: How to handle hot balances.
BLNK_QUEUE_TRANSACTION_WORKER_CONCURRENCY
This controls how many normal queued transaction tasks can execute at the same time.
Higher concurrency can improve throughput when work is spread across unrelated balances. It can also increase lock contention when many tasks overlap on the same balances. Increase it gradually and watch for contention before raising it further.
BLNK_QUEUE_MAX_RETRY_ATTEMPTS
This sets the maximum number of times Blnk will try a queued transaction again after a temporary failure such as lock contention, insufficient funds, etc.
In simple terms:
- If a queued transaction fails for a reason that may clear on its own, Blnk can try it again
- If it keeps failing, Blnk stops after this limit instead of retrying forever.
BLNK_QUEUE_INSUFFICIENT_FUND_RETRIES
This controls whether Blnk should retry queued transactions that fail because the source balance does not have enough funds.
Leave this disabled when an insufficient-funds result should be treated as final. Enable it only when the balance may change shortly after the first attempt, for example:
- another queued credit is still being processed
- funds are expected to arrive from another part of your workflow
- transaction ordering means the balance may be sufficient on a later retry
Hot-lane routing settings
Use these settings to isolate repeatedly contended balance pairs into a dedicated queue.| Description | Default | |
|---|---|---|
BLNK_QUEUE_ENABLE_HOT_LANE | Enables hot-lane routing for repeatedly contended balance pairs. | false |
BLNK_QUEUE_HOT_QUEUE_NAME | Queue name used for hot-lane traffic. | hot_transactions |
BLNK_QUEUE_HOT_QUEUE_CONCURRENCY | Worker concurrency for the hot queue. | 1 |
BLNK_QUEUE_HOT_PAIR_TTL | How long hot-pair activity and contention state is remembered, in seconds (see note at top of this page). | 300 |
BLNK_QUEUE_HOT_PAIR_LOCK_CONTENTION_THRESHOLD | Number of contention events required before a pair is promoted into the hot lane. | 3 |
BLNK_QUEUE_REJECT_LOCK_CONTENTION_IMMEDIATELY | Rejects queued transactions immediately after lock-contention failure instead of retrying them. | false |
BLNK_QUEUE_ENABLE_HOT_LANE
Hot-lane routing is Blnk’s contention-aware queue routing strategy.
Blnk tracks repeated lock-contention events for a specific source|destination|currency pair. When contention crosses the configured threshold, BLNK_QUEUE_HOT_PAIR_LOCK_CONTENTION_THRESHOLD, Blnk promotes that pair into a hot state. New queued transactions for that pair are then routed to a dedicated hot queue instead of the normal queue shards.
This helps isolate the hottest balance pairs from the rest of your queued traffic, so they stop disturbing normal queue processing.
BLNK_QUEUE_REJECT_LOCK_CONTENTION_IMMEDIATELY
This setting changes what queued workers do after a lock-contention failure.
When set to true, Blnk rejects the transaction immediately if the required lock is busy. When set to false, the worker treats the failure as retryable and retries it up to BLNK_QUEUE_MAX_RETRY_ATTEMPTS.
Please note: This setting does not affect
skip_queue=true transactions.Best practices
- Enable hot-lane routing when only a few balance pairs keep colliding.
- Use a shorter TTL for short bursts so pairs return to the normal queue sooner after traffic settles. Use a longer TTL when the same pairs stay hot for longer periods.
- Lower the threshold if hot pairs are not moving into the hot lane fast enough. This makes Blnk promote contended pairs sooner instead of letting them keep slowing down the normal queue.
- Only enable immediate rejection when you do not want Blnk to retry lock-contention failures.