Skip to content

Commit 46d7e2e

Browse files
committed
data, upgrade: Change cassandra_execution_retry_* defaults
1 parent 3d60315 commit 46d7e2e

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

data/settings.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -3638,7 +3638,11 @@ consistency.`
36383638
cassandra_execution_retry_interval: {
36393639
tags: [ 'sql-cassandra' ],
36403640
values: setting_types.TIME_MSECS,
3641-
default: 0,
3641+
default: '500 ms',
3642+
changed: {
3643+
settings_cassandra_execution_retry_changed: `
3644+
Default changed from 0.`
3645+
},
36423646
text: `
36433647
If the driver supports speculative execution policy, configures constant
36443648
speculative execution policy. See
@@ -3648,7 +3652,11 @@ https://docs.datastax.com/en/developer/java-driver/latest/manual/core/speculativ
36483652
cassandra_execution_retry_times: {
36493653
tags: [ 'sql-cassandra' ],
36503654
values: setting_types.TIME_MSECS,
3651-
default: 0,
3655+
default: 3,
3656+
changed: {
3657+
settings_cassandra_execution_retry_changed: `
3658+
Default changed from 0.`
3659+
},
36523660
text: `
36533661
If the driver supports speculative execution policy, configures constant
36543662
speculative execution policy. See

data/updates.js

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ export const updates = {
126126
settings_auth_internal_failure_delay_added: '2.4.0',
127127
settings_auth_policy_added: '2.4.0',
128128
settings_auth_policy_request_attributes_changed: '2.4.0',
129+
settings_cassandra_execution_retry_changed: '2.4.2',
129130
settings_dovecot_config_version_added: '2.4.0',
130131
settings_dovecot_storage_version_added: '2.4.0',
131132
settings_fifo_listener_type_added: '2.4.0',

docs/installation/upgrade/2.4-to-2.4.x.md

+2
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ changed from `2.4.0` to `2.4.1`.
2626
| `service/auth/unix_listener/auth-userdb/group` | (empty = root) | `$SET:default_internal_group` |
2727
| `service/lmtp/restart_request_count` | unlimited | 1 |
2828
| [[setting,lmtp_user_concurrency_limit]] | unlimited | 10 |
29+
| [[setting,cassandra_execution_retry_interval]] | 0 | 500 ms |
30+
| [[setting,cassandra_execution_retry_times]] | 0 | 3 |

0 commit comments

Comments
 (0)