My question is whether setting DESC Clustering order on a table in Cassandra will make the write speed into this table slower than if it were left ASC by default.
2
votes
1 Answers
4
votes
No, since the clustering column is determining how data is stored on disk, it's only stored in another order.
That's why you actually cannot modify your keys afterwards since the SSTable files would need to be rewritten.
For deeper explanation take a look at the compound key documentation.