cr cruise co control effo l effortle less m manage gement
play

Cr Cruise Co Control: Effo l: Effortle less M Manage gement o - PowerPoint PPT Presentation

Cr Cruise Co Control: Effo l: Effortle less M Manage gement o of K f Kafka fka Clu Clusters Adem Efe Gencer Senior Software Engineer LinkedIn Kafka: A Distributed Stream Processing Platform : High throughput & low latency :


  1. Cr Cruise Co Control: Effo l: Effortle less M Manage gement o of K f Kafka fka Clu Clusters Adem Efe Gencer Senior Software Engineer LinkedIn

  2. Kafka: A Distributed Stream Processing Platform : High throughput & low latency : Message persistence on partitioned data : Total ordering within each partition 2

  3. Key Concepts: Brokers, Topics, Partitions, and Replicas Kafka Cluster : Broker-0 : Broker-1 : Broker-2 1 2 1 1 2 1 1 : A Replica of Partition-1 of Blue Topic 3

  4. Key Concepts: Leaders and Followers : Broker-0 : Broker-1 : Broker-2 1 2 1 1 2 1 1 : The Leader Replica 1 : A Follower Replica 4

  5. Key Concepts: Producers Producer-1 Producer-2 : Broker-0 : Broker-1 : Broker-2 1 2 1 1 2 1 5

  6. Key Concepts: Consumers : Broker-0 : Broker-1 : Broker-2 1 2 1 1 2 1 Consumer-1 Consumer-2 6

  7. Key Concepts: Failover via Leadership Transfer ✗ : Broker-0 : Broker-2 1 2 1 1 2 1 7

  8. Key Concepts: Failover via Leadership Transfer ✗ : Broker-0 : Broker-2 1 2 1 1 2 1 8

  9. Kafka Incurs Management Overhead : Large deployments – e.g. @ : 2.6K+ Brokers, 44K+ Topics, 5M Partitions, 5T Messages / day : Frequent hardware failures ✗ : Load skew among brokers : Kafka cluster expansion and reduction “Elephant” (CC0): https://pixabay.com/en/elephant-safari-animal-defence-1421167, "Seesaw at Evelle" by Rachel Coleman (CC BY-SA 2.0): https://www.flickr.com/photos/rmc28/4862153119, “Inflatable Balloons” (Public Domain): https://commons.wikimedia.org/wiki/File:InflatableBalloons.jpg 9

  10. Alleviating the Management Overhead Admin Operations for Cluster Maintenance 1 Anomaly Detection with Self-Healing 2 Real-Time Monitoring of Kafka Clusters 3 10

  11. 1 Admin Operations for Cluster Maintenance : Dynamically balance the cluster load + : Add / remove brokers - : Demote brokers – i.e. remove leadership of all replicas : Trigger preferred leader election : Fix offline replicas 11

  12. 1 Admin Operations for Cluster Maintenance : Dynamically balance the cluster load + : Add / remove brokers - : Demote brokers – i.e. remove leadership of all replicas : Trigger preferred leader election : Fix offline replicas 12

  13. Dynamically Balance the Cluster Load Must satisfy hard goals , including: : Guarantee rack-aware distribution of replicas : Never exceed the capacity of broker resources – e.g. disk, CPU, network bandwidth : Enforce operational requirements – e.g. maximum replica count per broker 13

  14. Dynamically Balance the Cluster Load Satisfy soft goals as much as possible – i.e. best effort : Balance disk, CPU, inbound/outbound network traffic utilization of brokers : Balance replica distribution : Balance potential outbound network load ✗ : Balance distribution of partitions from the same topic ✗ 14

  15. 2 Anomaly Detection with Self-Healing : Goal violation – rebalance cluster : Broker failure – decommission broker(s) ✗ : Metric anomaly – demote broker(s) 15

  16. 3 Real-Time Monitoring of Kafka Clusters : Examine the replica, leader, and load distribution : Identify under-replicated , under-min-ISR , and offline partitions : Check the health of brokers, disks, and user tasks 16

  17. Building Blocks of Management: Moving Replicas : Broker-0 Replica Move 1 2 : Broker-1 1 2 1 17

  18. Building Blocks of Management: Moving Replicas : Broker-0 Replica Move 1 2 1 Broader impact, but expensive • Requires data transfer* : Broker-1 1 2 * Replica swap: Bidirectional reassignments of distinct partition replicas among brokers 18

  19. Building Blocks of Management: Moving Leadership : Broker-0 Leadership Move 2 1 : Broker-1 1 2 1 19

  20. Building Blocks of Management: Moving Leadership : Broker-0 Leadership Move 2 1 Cheap, but has limited impact • Affects network bytes out and CPU : Broker-1 1 2 1 20

  21. A Multi-Objective Optimization Problem Achieve conflicting cluster management goals while minimizing the impact of required operations on user traffic 21

  22. ARCHITECTURE “Joy Oil Gas Station Blueprints” (Public Domain): https://commons.wikimedia.org/wiki/File:Joy_Oil_gas_station_blueprints.jpg

  23. Cruise Control Architecture Load Backup and Recovery Pluggable History T. Component Sample Metric Metrics • Implements a public interface Store Sampler Monitor Reporter T. Reported • Accepts custom user code Metrics Capacity Resolver Metrics Reporter Internal Topic Anomaly Detector Analyzer Goal Metric Broker Kafka • Created and used by Cruise Broker Violation Anomaly Failure Cluster REST API Failures Control and its metrics reporter Finder(s) Goal(s) Anomaly Notifier Throttled Proposal Execution Executor 23

  24. Metrics Reporter Load Produces selected Kafka cluster metrics to the History T. configured metrics reporter topic with the Metrics configured frequency Reporter T. Metrics Reporter Kafka Cluster 24

  25. Monitor Sample Metric Store Sampler Monitor Capacity Resolver Generates a model ( ) to describe the cluster 25

  26. Monitor: Cluster Model ( ) : Topology – rack, host, and broker distribution : Placement – replica, leadership, and partition distribution : Load – current and historical utilization of brokers and replicas disk cpu nw-in … nw-out time latest Monitoring windows utilization 26

  27. Monitor: Metric Sampler Sample Metric Metrics Store Sampler Monitor Reporter T. Reported Metrics Capacity Resolver Kafka • Periodically (e.g. every 5 min) consumes the reported Cluster metrics to model the load on brokers and partitions 27

  28. Monitor: Sample Store Load Backup and Recovery History T. Sample Metric Store Sampler Monitor Capacity Resolver Kafka Cluster • • Produces broker and partition models to load history topic, and uses the stored data to recover upon failure 28

  29. Monitor: Capacity Resolver Sample Metric Store Sampler Monitor Capacity Resolver • • • Gathers the broker capacities from a pluggable resolver 29

  30. Analyzer Generates proposals to achieve goals via a fast and near-optimal heuristic solution Analyzer Goal(s) 30

  31. Analyzer: Goals Generates proposals to achieve goals via a fast and near-optimal heuristic solution Analyzer : Priorities – custom order of optimization : Strictness – hard (e.g. rack awareness) or soft (e.g. resource Goal(s) utilization balance) optimization demands : Modes – e.g. kafka-assigner ( https://github.com/linkedin/kafka-tools ) 31

  32. Analyzer: Proposals Generates proposals to achieve goals via a fast and near-optimal heuristic solution + = Analyzer Goal(s) Proposals – in order of priority: • Leadership move > Replica move > Replica swap Goal(s) 32

  33. Executor Proposal execution: • Dynamically controls the maximum number of concurrent leadership / replica reassignments • Ensures only one execution at a time • Enables graceful cancellation of ongoing executions Integration with replication quotas (KIP-73) Kafka Cluster Throttled Proposal Execution Executor 33

  34. Anomaly Detector Identifies, notifies, and fixes (self-healing): • Violation of anomaly detection goals • Broker failures • Metric anomalies Disk failures (JBOD) Anomaly Detector Goal Metric Broker Violation Anomaly Failure : Faulty vs Healthy Cluster Finder(s) Anomaly Notifier : Reactive vs. Proactive Mitigation 34

  35. Anomaly Detector: Goal Violations and Self-Healing Checks for the violation of the anomaly detection goals • Identifies fixable and unfixable goal violations • Self-healing triggers a cluster rebalance operation • Avoids false positives due to broker failure, upgrade, restart, or release certification Anomaly Detector Goal Metric Broker Violation Anomaly Failure Finder(s) Anomaly Notifier Faulty Reactive Proactive Healthy 35

  36. Anomaly Detector: Broker Failures Concerned with whether brokers are responsive: • Ignores the internal state deterioration of brokers • Identifies fail-stop failures Anomaly Detector Goal Metric Broker Kafka Broker Violation Anomaly Failure Cluster Failures Finder(s) Anomaly Notifier Faulty Reactive Proactive Healthy 36

  37. Anomaly Detector: Broker Failures and Self-Healing Checks for broker failures: • Enables a grace period to lower false positives – e.g. due to upgrade, restart, or release certification • Self-healing triggers a remove operation for failed brokers Anomaly Detector Goal Metric Broker Kafka Broker Violation Anomaly Failure Cluster Failures Finder(s) Anomaly Notifier Faulty Reactive Proactive Healthy 37

  38. Anomaly Detector: Reactive Mitigation Cluster maintenance becomes costly Requires immediate attention of affected services Poor user experience due to frequent service Anomaly Detector interruptions Goal Metric Broker Violation Anomaly Failure Finder(s) Server & network failures Anomaly Notifier Size of clusters ~ Volume of user traffic Hardware degradation 38

  39. Anomaly Detector: Metric Anomaly Checks for abnormal changes in broker metrics – e.g. a recent spike in log flush time: • Self-healing triggers a demote operation for slow brokers Anomaly Detector Goal Metric Broker Violation Anomaly Failure Finder(s) Anomaly Notifier Faulty Reactive Proactive Healthy 39

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend