Was this page helpful?
metadata¶
Classes¶
Members¶
(inner, constant) ColumnKind :number
Some columns have a specific meaning in the context of a table, and this meaning is represented by the ColumnKind enum.
Type:
- number
Properties:
| Name | Type | Description |
|---|---|---|
Regular |
number | Just a regular column. |
Static |
number | Column that has the same value for all rows in a partition. |
ClusteringKey |
number | Column that is part of the clustering key. |
PartitionKey |
number | Column that is part of the partition key. |
(inner, constant) StrategyKind :number
Identifies the replication strategy variant.
Type:
- number
Properties:
| Name | Type | Description |
|---|---|---|
SimpleStrategy |
number | Deprecated in ScyllaDB. Use only for a single datacenter and one rack. Places the first replica on a node determined by the partitioner. Additional replicas are placed on the next nodes clockwise in the ring without considering topology (rack or datacenter location). |
NetworkTopologyStrategy |
number | Use this strategy when you have (or plan to have) your cluster deployed across multiple datacenters. This strategy specifies how many replicas you want in each datacenter.
|
LocalStrategy |
number | Used for internal purposes, e.g. for system tables. |
Other |
number | Unknown other strategy, which is not supported by the driver. |