Question-174: In which scenario do you think leveled compactions is a good strategy?
- When your table has high write.
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering Python Certification Material
Ans: B
Exp: When you perform too many writes on the table then level compaction would happen very frequently. Which would create a lot of IO and your overall read latency would be affected for this table. Hence, you should use leveled compaction strategy when your table has intensive read operation and lesser write operation.
You can access to full explanation to question and answer from this page.