# Cassandra ## Cassandra Attributes This section defines attributes for Cassandra. | Attribute | Type | Description | Examples | Stability | |---|---|---|---|---| | `cassandra.consistency.level` | string | The consistency level of the query. Based on consistency values from [CQL](https://docs.datastax.com/en/cassandra-oss/3.0/cassandra/dml/dmlConfigConsistency.html). | `all`; `each_quorum`; `quorum` | ![Development](https://img.shields.io/badge/-development-blue) | | `cassandra.coordinator.dc` | string | The data center of the coordinating node for a query. | `us-west-2` | ![Development](https://img.shields.io/badge/-development-blue) | | `cassandra.coordinator.id` | string | The ID of the coordinating node for a query. | `be13faa2-8574-4d71-926d-27f16cf8a7af` | ![Development](https://img.shields.io/badge/-development-blue) | | `cassandra.page.size` | int | The fetch size used for paging, i.e. how many rows will be returned at once. | `5000` | ![Development](https://img.shields.io/badge/-development-blue) | | `cassandra.query.idempotent` | boolean | Whether or not the query is idempotent. | | ![Development](https://img.shields.io/badge/-development-blue) | | `cassandra.speculative_execution.count` | int | The number of times a query was speculatively executed. Not set or `0` if the query was not executed speculatively. | `0`; `2` | ![Development](https://img.shields.io/badge/-development-blue) | --- `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](https://img.shields.io/badge/-development-blue) | | `any` | Any | ![Development](https://img.shields.io/badge/-development-blue) | | `each_quorum` | Each Quorum | ![Development](https://img.shields.io/badge/-development-blue) | | `local_one` | Local One | ![Development](https://img.shields.io/badge/-development-blue) | | `local_quorum` | Local Quorum | ![Development](https://img.shields.io/badge/-development-blue) | | `local_serial` | Local Serial | ![Development](https://img.shields.io/badge/-development-blue) | | `one` | One | ![Development](https://img.shields.io/badge/-development-blue) | | `quorum` | Quorum | ![Development](https://img.shields.io/badge/-development-blue) | | `serial` | Serial | ![Development](https://img.shields.io/badge/-development-blue) | | `three` | Three | ![Development](https://img.shields.io/badge/-development-blue) | | `two` | Two | ![Development](https://img.shields.io/badge/-development-blue) |