Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I've enabled weak consistency like this:
.alter-merge workload_group default
{ `"QueryConsistencyPolicy`": { `"QueryConsistency`": { `"IsRelaxable`": true, `"Value`": `"Weak`" }, `"CachedResultsMaxAge`": { `"IsRelaxable`": true, `"Value`": `"08:00:00`" } } }
I wanted to ask how to check if this setting is applied correctly, because this command :
.show cluster policy query_weak_consistency
is not showing it.
But while typing this question I realised that I had to type:
.show workload_groups
this will show:
},
"QueryConsistencyPolicy": {
"QueryConsistency": {
"IsRelaxable": true,
"Value": "Weak"
},
"CachedResultsMaxAge": {
"IsRelaxable": true,
"Value": "08:00:00"
}
Beta Was this translation helpful? Give feedback.
All reactions