Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 3.19 KB

File metadata and controls

41 lines (32 loc) · 3.19 KB
title Cassandra

Cassandra

Cassandra Attributes

This section defines attributes for Cassandra.

Attributes:

Key Stability Value Type Description Example Values
cassandra.consistency.level Development string The consistency level of the query. Based on consistency values from CQL. all; each_quorum; quorum
cassandra.coordinator.dc Development string The data center of the coordinating node for a query. us-west-2
cassandra.coordinator.id Development string The ID of the coordinating node for a query. be13faa2-8574-4d71-926d-27f16cf8a7af
cassandra.page.size Development int The fetch size used for paging, i.e. how many rows will be returned at once. 5000
cassandra.query.idempotent Development boolean Whether or not the query is idempotent.
cassandra.speculative_execution.count Development int The number of times a query was speculatively executed. Not set or 0 if the query was not executed speculatively. 0; 2

cassandra.consistency.level has the following list of well-known values. If one of them applies, then the respective value MUST be used; otherwise, a custom value MAY be used.

Value Description Stability
all All Development
any Any Development
each_quorum Each Quorum Development
local_one Local One Development
local_quorum Local Quorum Development
local_serial Local Serial Development
one One Development
quorum Quorum Development
serial Serial Development
three Three Development
two Two Development