There are several options that can be adjusted at table-creation time. Most of these options are present on all tables. If they are omitted from table creation, their default values are assumed. The following are a few of the table options:
- Clustering order specifies the column(s) and direction by which the table data (within a partition) should be stored on disk. As Cassandra stores data written sequentially, it's also faster when it can read sequentially, so learning how to utilize clustering keys in your models can help with performance:
CLUSTERING ORDER BY (<clustering_key_name <ASC|DESC>)
- This setting represents the false positive probability for the table's bloom filter. The value can range between 0.0 and 1.0, with ...