Re: gc throughput

2021-11-17 Thread C. Scott Andreas
Hi, I noticed that you mentioned your goal is to optimize write throughput, and that you're using Cassandra 3.11.2.Optimizing for write throughput is usually a proxy for optimizing for compaction, as the cost of writes are very cheap but compacting to keep up with it can be pretty expensive.You'

Re: gc throughput

2021-11-17 Thread Kiran mk
G1GC would be the most suitable option and it has better control over pauses and optimal. Best Regards, Kiran M K On Wed, Nov 17, 2021, 10:27 PM Elliott Sims wrote: > CMS has a higher risk of a long stop-the-world full GC that will cause a > burst of timeouts, but if you're not getting that or

Re: gc throughput

2021-11-17 Thread Elliott Sims
CMS has a higher risk of a long stop-the-world full GC that will cause a burst of timeouts, but if you're not getting that or don't mind if it happens now and then CMS is probably the way to go. It's generally lower-overhead than G1. If you really don't care about latency it might even be worth

Re: gc throughput

2021-11-17 Thread onmstester onmstester
Thank You I'm going to achieve the most possible (write) throughput with Cassandra and care less about latency, recommendations from community suggests that better to use G1GC with 16GB heap, but when i already got 92% throughput with CMS, should i consider changing it? Sent using https://ww