-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cassandra optimizations #51
Comments
Looking at the presentation more, it seems that perhaps this should be configurable, so that users have the option based on how they're using the data. |
Also look to changing the primary key to use a composite partition on |
One concern about putting all the data in a single row is how that will affect performance over time. See the following video at around the 10:00 mark, where rows spread across SSTables are discussed. C* Summit 2013: How Not to Use Cassandra |
Same video as above around the 12:00 mark, there is discussion about how size-tiered compaction can be a good strategy for timeseries data. Consider using that as the default. http://www.datastax.com/docs/1.1/operations/tuning#tuning-compaction However, around 25:00-30:00, the presenter discusses how tombstones will not be deleted in various cases, especially with size-tiered compaction. This is relevant to using TTLs. |
Same video, at 46:00, a note about how writing to the same row over and over again will lead to bad performance, implying that |
Reverse order of Cassandra primary key? See this presentation around this time
C* Summit 2013: The World's Next Top Data Model
https://www.youtube.com/watch?v=HdJlsOZVGwM&list=PLqcm6qE9lgKJoSWKYWHWhrVupRbS8mmDA#t=1432
The text was updated successfully, but these errors were encountered: