Cruise Control is a product that helps run Apache Kafka clusters at large scale. Due to the popularity of Apache Kafka, many companies have bigger and bigger Kafka clusters. At LinkedIn, we have 2.6K+ Kafka brokers, which means broker deaths are an almost daily occurrence and balancing the workload of Kafka also becomes a big overhead.
Kafka Cruise Control is designed to address this operation scalability issue.
Kafka Cruise Control provides the following features out of the box:
-
Resource utilization tracking for brokers, topics, and partitions.
-
Query the current Kafka cluster state to see the online and offline partitions, in-sync and out-of-sync replicas, replicas under
min.insync.replicas
, online and offline logDirs, and distribution of replicas in the cluster. -
Multi-goal rebalance proposal generation for:
- Rack-awareness
- Resource capacity violation checks (CPU, DISK, Network I/O)
- Per-broker replica count violation check
- Resource utilization balance (CPU, DISK, Network I/O)
- Leader traffic distribution
- Replica distribution for topics
- Global replica distribution
- Custom goals that you wrote and plugged in
-
Anomaly detection, alerting, and self-healing for the Kafka cluster, including:
- Goal violation
- Broker failure detection
- Metric anomaly detection
-
Admin operations, including:
- Add brokers
- Decommission brokers
- Demote brokers
- Rebalance the cluster
- Perform preferred leader election (PLE)
- The current
master
branch of Cruise Control is compatible with Apache Kafka0.11.0.0
and1.0
(i.e. Releases with0.1.*
) - The
migrate_to_kafka_2_0
branch of Cruise Control is compatible with Apache Kafka1.1
and2.0.0
(i.e. Releases with2.0.*
) message.format.version
0.10.0
and above is needed- The
master
andmigrate_to_kafka_2_0
branch compile withScala 2.11
- Support for Apache Kafka
2.1+
is in progress.
- Get Cruise Control
- (Option-1): via
git clone
git clone https://github.com/linkedin/cruise-control.git && cd cruise-control/
- (Option-2): via browsing the available releases:
- Browse
https://github.com/linkedin/cruise-control/releases
to pick a release -- e.g.0.1.10
- Get and extract the release:
wget https://github.com/linkedin/cruise-control/archive/0.1.10.tar.gz && tar zxvf 0.1.10.tar.gz && cd cruise-control-0.1.10/
- Initialize the local repo:
git init && git add . && git commit -m "Init local repo." && git tag -a 0.1.10 -m "Init local version."
- Browse
- (Option-1): via
- This step is required if
CruiseControlMetricsReporter
is used for metrics collection (i.e. the default for Cruise Control). The metrics reporter periodically samples the Kafka raw metrics on the broker and sends them to a Kafka topic../gradlew jar
- Copy
./cruise-control-metrics-reporter/build/libs/cruise-control-metrics-reporter-A.B.C.jar
(WhereA.B.C
is the version of the Cruise Control) to your Kafka server dependency jar folder. For Apache Kafka, the folder would becore/build/dependant-libs-SCALA_VERSION/
- Modify Kafka server configuration to set
metric.reporters
tocom.linkedin.kafka.cruisecontrol.metricsreporter.CruiseControlMetricsReporter
. For Apache Kafka, server properties are located at./config/server.properties
. - If
SSL
is enabled, ensure that the relevant client configurations are properly set for all brokers in./config/server.properties
. Note thatCruiseControlMetricsReporter
takes all configurations for vanillaKafkaProducer
with a prefix ofcruise.control.metrics.reporter.
-- e.g.cruise.control.metrics.reporter.ssl.truststore.password
. - If the default broker cleanup policy is
compact
, make sure that the topic to which Cruise Control metrics reporter should send messages is created with thedelete
cleanup policy -- the default metrics reporter topic is__CruiseControlMetrics
.
- Start ZooKeeper and Kafka server (See tutorial).
- Modify
config/cruisecontrol.properties
of Cruise Control:- (Required) fill in
bootstrap.servers
andzookeeper.connect
to the Kafka cluster to be monitored. - (Optional) set
metric.sampler.class
to your implementation (the default sampler class isCruiseControlMetricsReporterSampler
) - (Optional) set
sample.store.class
to your implementation if you have one (the defaultSampleStore
isKafkaSampleStore
)
- (Required) fill in
- Run the following command
JAR files correspond to your applications and
./gradlew jar copyDependantLibs ./kafka-cruise-control-start.sh [-jars PATH_TO_YOUR_JAR_1,PATH_TO_YOUR_JAR_2] config/cruisecontrol.properties [port]
port
enables customizing the Cruise Control port number (default:9090
).- (Note) To emit Cruise Control JMX metrics on a particular port (e.g.
56666
),export JMX_PORT=56666
before runningkafka-cruise-control-start.sh
- (Note) To emit Cruise Control JMX metrics on a particular port (e.g.
- (Verify your setup) Visit
http://localhost:9090/kafkacruisecontrol/state
(orhttp://localhost:\[port\]/kafkacruisecontrol/state
if you specified the port when starting Cruise Control).
Note:
- Cruise Control will need some time to read the raw Kafka metrics from the cluster.
- The metrics of a newly up broker may take a few minutes to get stable. Cruise Control will drop the inconsistent metrics (e.g when topic bytes-in is higher than broker bytes-in), so first few windows may not have enough valid partitions.
Cruise Control provides a REST API for users to interact with. See the wiki page for more details.
Cruise Control relies on the recent load information of replicas to optimize the cluster.
Cruise Control periodically collects resource utilization samples at both broker- and partition-level to infer the traffic pattern of each partition. Based on the traffic characteristics and distribution of all the partitions, it derives the load impact of each partition over the brokers. Cruise Control then builds a workload model to simulate the workload of the Kafka cluster. The goal optimizer explores different ways to generate cluster workload optimization proposals based on the user-specified list of goals.
Cruise Control also monitors the liveness of all the brokers in the cluster. To avoid the loss of redundancy, Cruise Control automatically moves replicas from failed brokers to alive ones.
For more details about how Cruise Control achieves that, see these slides.
To read more about the configurations. Check the configurations wiki page.
Published at Jfrog Artifactory. See available releases.
More about pluggable components can be found in the pluggable components wiki page.
The metric sampler enables users to deploy Cruise Control to various environments and work with the existing metric systems.
Cruise Control provides a metrics reporter that can be configured in your Apache Kafka server. Metrics reporter generates performance metrics to a Kafka metrics topic that can be consumed by Cruise Control.
The Sample Store enables storage of collected metric samples and training samples in an external storage.
Metric sampling uses derived data from the raw metrics, and the accuracy of the derived data depends on the metadata of the cluster at that point. Hence, when we look at the old metrics, if we do not know the metadata at the point the metric was collected, the derived data would not be accurate. Sample Store helps solving this problem by storing the derived data directly to an external storage for later loading.
The default Sample Store implementation produces metric samples back to Kafka.
The goals in Cruise Control are pluggable with different priorities. The default goals in order of decreasing priority are:
- RackAwareGoal - Ensures that all replicas of each partition are assigned in a rack aware manner -- i.e. no more than one replica of each partition resides in the same rack.
- ReplicaCapacityGoal - Ensures that the maximum number of replicas per broker is under the specified maximum limit.
- CpuCapacityGoal - Ensures that CPU utilization of each broker is below a given threshold.
- DiskCapacityGoal - Ensures that Disk space usage of each broker is below a given threshold.
- NetworkInboundCapacityGoal - Ensures that inbound network utilization of each broker is below a given threshold.
- NetworkOutboundCapacityGoal - Ensures that outbound network utilization of each broker is below a given threshold.
- PotentialNwOutGoal - Ensures that the potential network output (when all the replicas in the broker become leaders) on each of the broker do not exceed the broker’s network outbound bandwidth capacity.
- CpuUsageDistributionGoal - Attempts to keep the CPU usage variance among brokers within a certain range relative to the average CPU utilization.
- DiskUsageDistributionGoal - Attempts to keep the Disk space usage variance among brokers within a certain range relative to the average Disk utilization.
- NetworkInboundUsageDistributionGoal - Attempts to keep the inbound network utilization variance among brokers within a certain range relative to the average inbound network utilization.
- NetworkOutboundUsageDistributionGoal - Attempts to keep the outbound network utilization variance among brokers within a certain range relative to the average outbound network utilization.
- LeaderBytesInDistributionGoal - Attempts to equalize the leader bytes in rate on each host.
- TopicReplicaDistributionGoal - Attempts to maintain an even distribution of any topic's partitions across the entire cluster.
- ReplicaDistributionGoal - Attempts to make all the brokers in a cluster have a similar number of replicas.
- PreferredLeaderElectionGoal - Simply move the leaders to the first replica of each partition.
- KafkaAssignerDiskUsageDistributionGoal - (Kafka-assigner mode) Attempts to distribute disk usage evenly among brokers based on swap.
- KafkaAssignerEvenRackAwareGoal - (Kafka-assigner mode) Attempts to achieve rack aware even replica distribution.
The anomaly notifier allows users to be notified when an anomaly is detected. Anomalies include:
- Broker failure
- Goal violation
- Metric anomaly
In addition to anomaly notifications users can specify actions to be taken in response to an anomaly. The following actions are supported:
- fix - fix the problem right away
- check - check the situation again after a given delay
- ignore - ignore the anomaly