Re: Pointers on writing your own Compaction Strategy

2014-09-04 Thread Marcus Eriksson
1. create a class that extends AbstractCompactionStrategy (i would keep it in-tree while developing to avoid having classpath issues etc) 2. Implement the abstract methods - getNextBackgroundTask - called when cassandra wants to do a new minor (background) compaction - return a CompactionTask wi

Pointers on writing your own Compaction Strategy

2014-09-04 Thread Ghosh, Mainak
Hello, I am planning to write a new compaction strategy and I was hoping if anyone can point me to the relevant functions and how they are related in the call hierarchy. Thanks for the help. Regards, Mainak.