Query consistency policy
Learn how to use the query consistency policy to control the consistency mode of queries.
A workload group’s query consistency policy allows specifying options that control the consistency mode of queries.
The policy object
Each option consists of:
- A typed
Value
- the value of the limit. IsRelaxable
- a boolean value that defines if the option can be relaxed by the caller, as part of the request’s request properties. Default istrue
.
The following limits are configurable:
Name | Type | Description | Supported values | Default value | Matching client request property |
---|---|---|---|---|---|
QueryConsistency | QueryConsistency | The consistency mode to use. | Strong , Weak , or WeakAffinitizedByQuery , WeakAffinitizedByDatabase | Strong | queryconsistency |
CachedResultsMaxAge | timespan | The maximum age of cached query results that can be returned. | A non-negative timespan | null | query_results_cache_max_age |
Example
"QueryConsistencyPolicy": {
"QueryConsistency": {
"IsRelaxable": true,
"Value": "Weak"
},
"CachedResultsMaxAge": {
"IsRelaxable": true,
"Value": "05:00:00"
}
}
Monitoring
You can monitor the latency of the metadata snapshot age on nodes serving as weak consistency service heads by using the Weak consistency latency
metric. For more information, see Query metrics.
Related content
- Workload groups
- Query consistency
- .alter-merge workload_group
- .create-or-alter workload_group command
- .drop workload_group
- .show workload_group command
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.