-
Notifications
You must be signed in to change notification settings - Fork 596
Write your own goals
Adem Efe Gencer edited this page Oct 5, 2021
·
2 revisions
Cruise Control has provided a few goals out of the box for users to choose from. In addition to that, Cruise Control allows users to write their own goals to optimize a Kafka cluster in whichever way they want. We encourage users to implement more Cruise Control goals and share it with the community.
A Cruise Control goal is an implementation of the Goal interface
We have provided an abstract goal class with some defined steps of optimization.
- Cluster Healthiness - It is important to always check if a cluster has dead brokers or not. Usually an unhealthy cluster needs to be handled differently because something has to be done to fix it. And sometimes you may not want to do anything other than fixing the cluster.
-
Previously Optimized Goals - During the implementation, always make sure all the operations you plan to do meets the requirement of the previously optimized goals (i.e. the goals with higher priority) by invoking the
isProposalAcceptable(BalancingProposal, ClusterModel)
method of optimized goals. - Excluded Topics - remember to check excluded topics list so that those topics are not touched.
Please ask in our gitter room.
Contents
- Cruise Control Wiki
- Overview
- Troubleshooting
- User Guide
- Python Client
- Developer Guide