stream processing at linkedin apache kafka apache samza
play

STREAM PROCESSING AT LINKEDIN: APACHE KAFKA & APACHE SAMZA - PowerPoint PPT Presentation

STREAM PROCESSING AT LINKEDIN: APACHE KAFKA & APACHE SAMZA Processing billions of events every day Neha Narkhede Co-founder and Head of Engineering @ Stealth Startup Prior to this Lead, Streams Infrastructure @ LinkedIn


  1. STREAM PROCESSING AT LINKEDIN: APACHE KAFKA & APACHE SAMZA Processing billions of events every day

  2. Neha Narkhede ¨ Co-founder and Head of Engineering @ Stealth Startup ¨ Prior to this… ¤ Lead, Streams Infrastructure @ LinkedIn (Kafka & Samza) ¤ One of the initial authors of Apache Kafka, committer and PMC member ¨ Reach out at @nehanarkhede

  3. Agenda ¨ Real-time Data Integration ¨ Introduction to Logs & Apache Kafka ¨ Logs & Stream processing ¨ Apache Samza ¨ Stateful stream processing

  4. The Data Needs Pyramid Self Automation actualization Esteem Understanding Love/Belonging Data processing Safety Data collection Physiological Data needs Maslow's hierarchy of needs

  5. Agenda ¨ Real-time Data Integration ¨ Introduction to Logs & Apache Kafka ¨ Logs & Stream processing ¨ Apache Samza ¨ Stateful stream processing

  6. Increase in diversity of data Database data (users, products, orders etc) 1980+ Events (clicks, impressions, pageviews) Application logs (errors, service calls) 2000+ Application metrics (CPU usage, requests/sec) Siloed data feeds 2010+ IoT sensors

  7. Explosion in diversity of systems ¨ Live Systems ¤ Voldemort ¤ Espresso ¤ GraphDB ¤ Search ¤ Samza ¨ Batch ¤ Hadoop ¤ Teradata

  8. Data integration disaster Espresso Operational Voldemort Oracle Logs User Tracking Espresso Voldemort Oracle Metrics Espresso Voldemort Oracle Data Log Social Rec. ... Hadoop Monitoring Warehous Search Security Email Search Graph Engine e Production Services

  9. Centralized service Espresso Operational Voldemort Oracle Logs User Tracking Espresso Voldemort Oracle Metrics Espresso Voldemort Oracle Data Pipeline Data Rec Log Monitorin Social ... Hadoop Warehous Search Security Email Engine & Search g Graph e Life Production Services

  10. Agenda ¨ Real-time Data Integration ¨ Introduction to Logs & Apache Kafka ¨ Logs & Stream processing ¨ Apache Samza ¨ Stateful stream processing

  11. Kafka at 10,000 ft Producer Producer Producer Producer Producer Producer ¨ Distributed from ground up ¨ Persistent Cluster of brokers ¨ Multi-subscriber Producer Producer Producer Consumer Consumer Consumer

  12. Key design principles ¨ Scalability of a file system ¤ Hundreds of MB/sec/server throughput ¤ Many TBs per server ¨ Guarantees of a database ¤ Messages strictly ordered ¤ All data persistent ¨ Distributed by default ¤ Replication model ¤ Partitioning model

  13. Kafka adoption

  14. Apache Kafka @ LinkedIn ¨ 175 TB of in-flight log data per colo ¨ Low-latency: ~1.5ms ¨ Replicated to each datacenter ¨ Tens of thousands of data producers ¨ Thousands of consumers ¨ 7 million messages written/sec ¨ 35 million messages read/sec ¨ Hadoop integration

  15. Logs The data structure every systems engineer should know

  16. The Log 1st record next record written ¨ Ordered ¨ Append only 0 1 2 3 4 5 6 7 8 9 10 11 12 ¨ Immutable

  17. The Log: Partitioning Partition 0 0 1 2 3 4 5 6 7 8 9 10 11 12 Partition 1 0 1 2 3 4 5 6 7 8 9 Partition 2 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

  18. Logs: pub/sub done right Data source writes 0 1 2 3 4 5 6 7 8 9 10 11 12 reads reads Destination Destination system B system A (time = 11) (time = 7)

  19. Logs for data integration User updates profile with new job KAFKA Standardization Hadoop Search Newsfeed engine

  20. Agenda ¨ Real-time Data Integration ¨ Introduction to Logs & Apache Kafka ¨ Logs & Stream processing ¨ Apache Samza ¨ Stateful stream processing

  21. Stream processing = f(log) Log A Job 1 Log B

  22. Stream processing = f(log) Log A Job 1 Log B Log C Job 2 Log D Log E

  23. Apache Samza at LinkedIn User updates profile with new job KAFKA Standardization Hadoop Search Newsfeed engine

  24. Latency spectrum of data systems RPC Latency Asynchronous processing (seconds to minutes) Batch (Hours) Synchronous (milliseconds)

  25. Agenda ¨ Real-time Data Integration ¨ Introduction to Logs & Apache Kafka ¨ Logs & Stream processing ¨ Apache Samza ¨ Stateful stream processing

  26. Samza API getKey(), getMsg() public interface StreamTask { void process ( IncomingMessageEnvelope envelope, MessageCollector collector, TaskCoordinator coordinator); } sendMsg(topic, key, value) commit(), shutdown()

  27. Samza Architecture (Logical view) Log A partition 2 partition 1 partition 0 Task 1 Task 2 Task 3 partition 1 partition 0 Log B

  28. Samza Architecture (Logical view) Log A partition 2 partition 1 partition 0 Samza container 1 Samza container 2 Task 1 Task 2 Task 3 partition 1 partition 0 Log B

  29. Samza Architecture (Physical view) Samza container 1 Samza container 2 Host 1 Host 2

  30. Samza Architecture (Physical view) Node manager Node manager Samza Samza container 1 Samza container 2 YARN AM Host 1 Host 2

  31. Samza Architecture (Physical view) Node manager Node manager Samza Samza container 1 Samza container 2 YARN AM Kafka Kafka Host 1 Host 2

  32. Samza Architecture: Equivalence to Map Reduce Node manager Node manager Map Reduce Map Reduce YARN AM HDFS HDFS Host 1 Host 2

  33. M/R Operation Primitives ¨ Filter records matching some condition ¨ Map record = f(record) ¨ Join Two/more datasets by key ¨ Group records with same key ¨ Aggregate f(records within the same group) ¨ Pipe job 1’s output => job 2’s input

  34. M/R Operation Primitives on streams ¨ Filter records matching some condition ¨ Map record = f(record) ¨ Join Two/more datasets by key ¨ Group records with same key ¨ Aggregate f(records within the same group) ¨ Pipe job 1’s output => job 2’s input Requires state maintenance

  35. Agenda ¨ Real-time Data Integration ¨ Introduction to Logs & Apache Kafka ¨ Logs & Stream processing ¨ Apache Samza ¨ Stateful stream processing

  36. Example: Newsfeed User ... posted "..." User 989 posted "Blah Blah" User 567 posted "Hello World" Status update log External connection DB Fan out messages to followers 567 -> [123, 679, 789, ...] 999 -> [156, 343, ... ] Push notification log Refresh user 123's newsfeed Refresh user 679's newsfeed Refresh user ...'s newsfeed

  37. Local state vs Remote state: Remote 100-500K msg/sec/node 100-500K msg/sec/node Samza task Samza task partition 0 partition 1 ❌ Performance Remote state ❌ Isolation 1-5K queries/sec ?? ❌ Limited APIs ex: Cassandra, MongoDB, etc Disk

  38. Local state: Bring data closer to computation Samza task Samza task partition 0 partition 1 Local Local LevelDB/RocksDB LevelDB/RocksDB

  39. Local state: Bring data closer to computation Samza task Samza task partition 0 partition 1 Local Local LevelDB/RocksDB LevelDB/RocksDB Change log stream Disk

  40. Example Revisited: Newsfeed User ... posted "..." User ... followed ... User 989 posted "Blah Blah" User 123 followed 567 User 567 posted "Hello World" User 890 followed 234 Status update log New connection log Fan out messages to followers 567 -> [123, 679, 789, ...] 999 -> [156, 343, ... ] Push notification log Refresh user 123's newsfeed Refresh user 679's newsfeed Refresh user ...'s newsfeed

  41. Fault tolerance? Node manager Node manager Samza Samza container 1 Samza container 2 YARN AM Kafka Kafka Host 1 Host 2

  42. Fault tolerance in Samza Samza task Samza task partition 0 partition 1 Local Local LevelDB/RocksDB LevelDB/RocksDB Durable change log

  43. Slow jobs Log A Job 1 Log B Log C ❌ Drop data Job 2 ❌ Backpressure ❌ Queue ❌ In memory Log D Log E ✅ On disk (KAFKA)

  44. Summary ¨ Real time data integration is crucial for the success and adoption of stream processing ¨ Logs form the basis for real time data integration ¨ Stream processing = f(logs) ¨ Samza is designed from ground-up for scalability and provides fault-tolerant, persistent state

  45. Thank you! ¨ The Log ¤ http://bit.ly/the_log ¨ Apache Kafka ¤ http://kafka.apache.org ¨ Apache Samza ¤ http://samza.incubator.apache.org ¨ Me ¤ @nehanarkhede ¤ http://www.linkedin.com/in/nehanarkhede

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