In the leaderboard modeling blog, it’s mentioned that updating fields that are part of the primary key (whether partition or clustering keys) requires deleting the existing row and inserting a modified version.
However, since DELETE operations introduce tombstones, they can contribute to read latency issues, increased compaction overhead, and potential performance degradation over time. Additionally, frequent DELETE + INSERT operations could lead to bloated SSTables, impacting disk space and query efficiency.
Given these factors, in a large-scale environment is it advisable to rely on an approach which uses delete + insert very commonly?
leaderboard modeling blog - scylladb .com/2024/09/03/model-game-leaderboards-scylladb/