Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ Configuration settings that control how data is processed, including batch sizes
| **idle_sleep_time_ms**<br/>(Idle sleep interval) | `integer`, `string` | Time in milliseconds to sleep between processing batches when idle<br/>Default: `200`<br/>Pattern: `^\${.*}$`<br/>Minimum: `1`<br/>Maximum: `999999`<br/> | |
| **idle_streams_check_interval_ms**<br/>(Idle streams check interval) | `integer`, `string` | Time in milliseconds between checking for new streams when processor is idle<br/>Default: `1000`<br/>Pattern: `^\${.*}$`<br/>Minimum: `1`<br/>Maximum: `999999`<br/> | |
| **busy_streams_check_interval_ms**<br/>(Busy streams check interval) | `integer`, `string` | Time in milliseconds between checking for new streams when processor is busy<br/>Default: `5000`<br/>Pattern: `^\${.*}$`<br/>Minimum: `1`<br/>Maximum: `999999`<br/> | |
| **wait_enabled**<br/>(Enable replica wait) | `boolean` | Enable verification that data has been written to replica shards<br/>Default: `false`<br/> | |
| **wait_timeout**<br/>(Replica wait timeout) | `integer`, `string` | Maximum time in milliseconds to wait for replica write verification<br/>Default: `1000`<br/>Pattern: `^\${.*}$`<br/>Minimum: `1`<br/> | |
| **wait_enabled**<br/>(Enable replica wait) | `boolean` | Enable verification that data has been written to replica shards of the target database<br/>Default: `false`<br/> | |
| **wait_timeout**<br/>(Replica wait timeout) | `integer`, `string` | Maximum time in milliseconds to wait for replica write verification of the target database<br/>Default: `1000`<br/>Pattern: `^\${.*}$`<br/>Minimum: `1`<br/> | |
| **retry_on_replica_failure** | `boolean` | Continue retrying writes until successful replication to replica shards is confirmed<br/>Default: `true`<br/> | |

**Additional Properties:** not allowed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ weight: 10
| **target_data_type**<br/>(Target data type: hash/json \- RedisJSON module must be in use in the target DB) | `string` | Default: `"hash"`<br/>Pattern: ``^\${.\*}$ | hash | json``<br/> | |
| **json_update_strategy**<br/>(Target update strategy: replace/merge \- RedisJSON module must be in use in the target DB) | `string` | (DEPRECATED)<br/>Property 'json_update_strategy' will be deprecated in future releases. Use 'on_update' job-level property to define the json update strategy.<br/>Default: `"replace"`<br/>Pattern: ``^\${.\*}$ | replace | merge``<br/> | |
| **initial_sync_processes**<br/>(Number of processes Write-behind Engine creates to process the initial sync with the source) | `integer`, `string` | Default: `4`<br/>Pattern: `^\${.*}$`<br/>Minimum: `1`<br/>Maximum: `32`<br/> | |
| **wait_enabled**<br/>(Checks if the data has been written to the replica shard) | `boolean` | Default: `false`<br/> | |
| **wait_timeout**<br/>(Timeout in milliseconds when checking write to the replica shard) | `integer`, `string` | Default: `1000`<br/>Pattern: `^\${.*}$`<br/>Minimum: `1`<br/> | |
| **wait_enabled**<br/>(Checks if the data has been written to the replica shard of the target database) | `boolean` | Default: `false`<br/> | |
| **wait_timeout**<br/>(Timeout in milliseconds when checking write to the replica shard of the target database) | `integer`, `string` | Default: `1000`<br/>Pattern: `^\${.*}$`<br/>Minimum: `1`<br/> | |
| **retry_on_replica_failure**<br/>(Ensures that the data has been written to the replica shard and keeps retrying if not) | `boolean` | Default: `true`<br/> | |

**Additional Properties:** not allowed
Expand Down