kafka in production - wordpress.com · apache kafka apache kafka is an open-source stream...

Post on 22-May-2020

94 Views

Category:

Documents

4 Downloads

Preview:

Click to see full reader

TRANSCRIPT

Kafka in Production

Andrey Panasyuk, @defascat

Introduction

2

Remote CallsTypes

1. Synchronous calls2. Asynchronous calls

Limitations

1. Peer-to-Peer2. Retries3. Load balancing4. Durability5. Backpressure

3

Message Queues1. External tool2. Asynchronous communication protocol

4

Lets get to Kafka!!!

5

Apache KafkaApache Kafka is an open-source stream processing platform developed by the Apache Software Foundation written in Scala and Java. The project aims to provide a unified, high-throughput, low-latency platform for handling real-time data feeds. Its storage layer is essentially a "massively scalable pub/sub message queue architected as a distributed transaction log".

Wikipedia

6

Concepts. Partitions to consumers

12

Concepts. Architecture

13

Kafka. Controller1. One of brokers2. Managing state of partitions3. Managing state of replicas4. Partitions manipulations5. High-availability

15

Kafka + ZooKeeper1. Cluster membership2. Electing leader3. Topic configuration4. Offsets for a Group/Topic/Partition combination

16

Kafka. Guarantees1. Delivery guarantees

a. At least once (by default)b. At most oncec. Exactly once

2. Fault-tolerance vs latencya. No ackb. Acks from leaderc. Acks from followers

3. Message order in a single partition

17

Kafka. Adding a broker 1. Adds a new machine into ISR2. Starts rebalancing partitions (if automatic rebalance enabled)

a. Too much partitions can cause an issue3. Notifies consumers4. Notifies producers

18

Kafka. Failure Scenarios1. In-Sync-Replicas2. Leader election3. CAP

a. Partition Toleranceb. Availabilityc. Consistency*

19

Kafka. ProducerProperties properties = new Properties();

properties.setProperty(" bootstrap.servers", brokers);

properties.setProperty("key.serializer","o.a.k.c.s.StringSerializer");

properties.setProperty("value.serializer","o.a.k.c.s.StringSerializer");

KafkaProducer<String, String> producer = new KafkaProducer<>(properties);

KeyedMessage<String, String> data = new KeyedMessage<>( "sync", userId, steps);

producer.send(data);

21

Kafka. Real-world Producers1. Topic name validation2. Adding metrics3. Adding default metadata

22

Kafka. ConsumerProperties properties = new Properties();

properties.setProperty(" bootstrap.servers", brokers);

properties.setProperty("key.deserializer","o.a.k.c.s.StringDeserializer");

properties.setProperty("value.deserializer","o.a.k.c.s.StringDeserializer");

properties.setProperty(" group.id", groupId);

KafkaConsumer<String, String> consumer = new KafkaConsumer<>(properties);

consumer.subscribe(“sync”);

while(true) {

consumer.poll(100)

.forEach(r -> System.out.println(r.key() + ": " + r.value());

}24

Kafka. Real-world Consumers1. Metrics2. Invalid message queue3. Separating message processing in KafkaMessageProcessor4. Different implementations

a. 1 thread for all partitions vs 1 thread per 1 partitionb. Autocommitc. Poll periodsd. Batch supporte. Rebalancing considerations

25

Kafka. Serializationpublic interface Deserializer<T> {

public void configure(Map<String, ?> configs, boolean isKey);public T deserialize(String topic, byte[] data);public void close();

}

public interface Serializer<T> {public void configure(Map<String, ?> configs, boolean isKey);public byte[] serialize(String topic, T data);public void close();

}

26

Kafka. Consumer Failure1. Wait for ZooKeeper timeout2. Controller processes event from ZooKeeper3. Controller notifies consumers4. Consumers select new partition consumer

27

Do you really have all this mess working?

28

Kafka. Corporate Challenge Usages1. User Sync Processing2. Analytics

29

Kafka. Our Deployment1. Yahoo kafka-manager

2. MirrorMaker

30

Kafka. Practices1. Topics manually created on prod, automatically on QA envs2. Do not delete topics (KAFKA-1397, KAFKA-2937, KAFKA-4834, ...)3. IMQ implementation4. Use identical versions on all brokers

31

Kafka. Tuning1. 20-100 brokers per cluster; hard limit of 10,000 partitions per cluster (Netflix)2. Increase replica.lag.time.max.ms and replica.lag.max.messages3. Increase num.replica.fetchers4. Reduce retention5. Increase rebalance.max.retries, rebalance.backoff.ms

32

Monitoring And Alerting1. Consumer metrics2. Producer metrics3. Kafka Broker metrics4. Zookeeper metrics5. PagerDuty alerts

33

Current State. Message Input Rate

34

Current State. Producer Latency

35

Lets wrap this up!

36

Kafka. Extension Points● Storages

○ Amazon S3 (Sink)○ Files (Source)○ Elasticsearch (Sink)○ HDFS (Sink)○ JDBC (Source, Sink)○ C* (Sink)○ PostgreSQL (Sink)○ Oracle/MySQL/MSSQL (Sink)○ Vertica (Source, Sink)○ Ignite (Source, Sink)

37

● Protocols/Queues○ MQTT (Source)○ SQS (Source)○ JMS (Sink)○ RabbitMQ (Source)

● Others○ Mixpanel (Sink)

Alternatives. ActiveMQ1. Pros

a. Simplicityb. Way more rich features (standard protocols, TTLs, in-memory)c. DLQd. Extension points

2. Consa. Delivery guaranteesb. Loosing messages under high loadc. Failure Handling scenariosd. Throughput in transactional mode

38

Alternatives. RabbitMQ● Pros

○ Simpler to start○ More features

■ Ability to query/filter■ Federated queues■ Sophisticated routing

○ Plugins● Cons

○ Scales vertically mostly○ Consumers are mostly online assumption○ Delivery guarantees are less rich

39

Kafka. Strengths and Weaknesses1. Strengths

a. Horizontal scalabilityb. Rich delivery guarantee modelsc. Disk persistance

2. Weaknessesa. Need for ZooKeeperb. Lack of any kind of backpressurec. Lack of useful features othe queues havrd. Lack of any kind of DLQe. Limited number of extension pointsf. Complex internal protocolsg. Too smart clients

40

top related