foundations of streaming sql
play

Foundations of streaming SQL or: how I learned to love stream & - PowerPoint PPT Presentation

Foundations of streaming SQL or: how I learned to love stream & table theory Slides: https://s.apache.org/streaming-sql-qcon-london Tyler Akidau Apache Beam PMC Software Engineer at Google @takidau Covering ideas from across the Apache


  1. Foundations of streaming SQL or: how I learned to love stream & table theory Slides: https://s.apache.org/streaming-sql-qcon-london Tyler Akidau Apache Beam PMC Software Engineer at Google @takidau Covering ideas from across the Apache Beam, Apache Calcite, Apache Kafka, and Apache Flink communities, with thoughts and contributions from Julian Hyde, Fabian Hueske, Shaoxuan Wang, Kenn Knowles, Ben Chambers, Reuven Lax, Mingmin Xu, James Xu, Martin Kleppmann, Jay Kreps and many more, not to mention that whole database community thing... QCon London 2018 1

  2. Table of Contents 01 Stream & Table Theory A Basics Chapter 7 B The Beam Model 02 Streaming SQL Chapter 9 A Time-varying relations B SQL language extensions 2

  3. 01 Stream & Table Theory TFW you realize everything you do was invented by the database community decades ago... A Basics B The Beam Model 3

  4. Stream & table basics https://www.confluent.io/blog/making-sense-of-stream-processing/ https://www.confluent.io/blog/introducing-kafka-streams-stream-processing-made-simple/ 4

  5. Special theory of stream & table relativity streams → tables: The aggregation of a stream of updates over time yields a table. tables → streams: The observation of changes to a table over time yields a stream. 5

  6. Non-relativistic stream & table definitions Tables are data at rest . Streams are data in motion . 6

  7. 01 Stream & Table Theory TFW you realize everything you do was invented by the database community decades ago... A Basics B The Beam Model 7

  8. The Beam Model What results are calculated? Where in event time are results calculated? When in processing time are results materialized? How do refinements of results relate? 8

  9. Reconciling streams & tables w/ the Beam Model How does batch processing fit into all of this? ● ● What is the relationship of streams to bounded and unbounded datasets? How do the four what , where , when , how questions map ● onto a streams/tables world? 9

  10. MapReduce input Map Reduce output 10

  11. MapReduce input MapRead ReduceRead Map Reduce MapWrite ReduceWrite output 11

  12. MapReduce ? MapRead ReduceRead ? ? Map Reduce ? ? MapWrite ReduceWrite ? ? 12

  13. MapReduce table MapRead ReduceRead ? ? Map Reduce ? ? MapWrite ReduceWrite ? table 13

  14. Map phase table MapRead ? Map ? MapWrite ? 14

  15. Map phase API void map(K1 key, V1 value, Emit<K2, V2>); 15

  16. Map phase API void map(K1 key, V1 value, Emit<K2, V2>); 16

  17. Map phase table MapRead stream Map ? MapWrite ? 17

  18. Map phase API void map(K1 key, V1 value, Emit<K2, V2>); 18

  19. Map phase table MapRead stream Map stream MapWrite ? 19

  20. Map phase API void map(K1 key, V1 value, Emit<K2, V2>); void reduce(K2 key, Iterable<V2> value, Emit<V3>); 20

  21. Map phase table MapRead stream Map stream MapWrite table 21

  22. MapReduce table MapRead ReduceRead ? stream Map Reduce ? stream MapWrite ReduceWrite table table 22

  23. Map phase API void map(K1 key, V1 value, Emit<K2, V2>); void reduce(K2 key, Iterable<V2> value, Emit<V3>); 23

  24. Map phase API void map(K1 key, V1 value, Emit<K2, V2>); void reduce(K2 key, Iterable<V2> value, Emit<V3>); 24

  25. MapReduce table MapRead ReduceRead stream stream Map Reduce stream stream MapWrite ReduceWrite table table 25

  26. Reconciling streams & tables w/ the Beam Model How does batch processing fit into all of this? ● 1. Tables are read into streams . ● What is the relationship of streams to bounded and unbounded datasets? 2. Streams are processed into new streams until a grouping operation is hit. How do the four what , where , when , how questions map ● onto a streams/tables world? 3. Grouping turns the stream into a table . 4. Repeat steps 1-3 until you run out of operations. 26

  27. Reconciling streams & tables w/ the Beam Model How does batch processing fit into all of this? ● ● What is the relationship of streams to bounded and unbounded datasets? Streams are the in-motion form of data How do the four what , where , when , how questions map ● onto a streams/tables world? both bounded and unbounded. 27

  28. Reconciling streams & tables w/ the Beam Model How does batch processing fit into all of this? ● ● What is the relationship of streams to bounded and unbounded datasets? How do the four what , where , when , how questions map ● onto a streams/tables world? 28

  29. The Beam Model What results are calculated? Where in event time are results calculated? When in processing time are results materialized? How do refinements of results relate? 29

  30. The Beam Model What results are calculated? Where in event time are results calculated? When in processing time are results materialized? How do refinements of results relate? 30

  31. Example data: individual user scores 31

  32. What is calculated? PCollection<KV<Team, Score>> input = IO.read(...) .apply(ParDo.of(new ParseFn()); .apply(Sum.integersPerKey()); 32

  33. What is calculated?

  34. The Beam Model What results are calculated? Where in event time are results calculated? When in processing time are results materialized? How do refinements of results relate? 34

  35. Where in event time? Windowing divides data into event-time-based finite chunks. Fixed Sliding Sessions 1 4 2 1 3 3 1 2 3 4 Key 1 Key 2 Key 3 4 2 5 Time Often required when doing aggregations over unbounded data. 35

  36. Where in event time? PCollection<KV<User, Score>> input = IO.read(...) .apply(ParDo.of(new ParseFn()); .apply(Window.into(FixedWindows.of(Duration.standardMinutes(2))) .apply(Sum.integersPerKey()); 36

  37. Where in event time?

  38. The Beam Model What results are calculated? Where in event time are results calculated? When in processing time are results materialized? How do refinements of results relate? 38

  39. When in processing time? • Triggers control Skew when results are Processing Time emitted. ~Watermark Ideal • Triggers are often relative to the watermark . Event Time 39

  40. When in processing time? PCollection<KV<User, Score>> input = IO.read(...) .apply(ParDo.of(new ParseFn()); .apply(Window.into(FixedWindows.of(Duration.standardMinutes(2)) .triggering(AtWatermark()) .apply(Sum.integersPerKey()); 40

  41. When in processing time?

  42. The Beam Model: asking the right questions What results are calculated? Where in event time are results calculated? When in processing time are results materialized? How do refinements of results relate? 42

  43. How do refinements relate? PCollection<KV<User, Score>> input = IO.read(...) .apply(ParDo.of(new ParseFn()); .apply(Window.into(FixedWindows.of(Duration.standardMinutes(2)) .triggering(AtWatermark().withLateFirings(AtCount(1))) .accumulatingFiredPanes()) .apply(Sum.integersPerKey()); 43

  44. How do refinements relate?

  45. What / Where / When / How Summary 1. Classic Batch 2. Windowed Batch 3. Streaming 4. Streaming + Late Data Handling 45

  46. Reconciling streams & tables w/ the Beam Model How does batch processing fit into all of this? ● ● What is the relationship of streams to bounded and unbounded datasets? How do the four what , where , when , how questions map ● onto a streams/tables world? 46

  47. General theory of stream & table relativity Pipelines : tables + streams + operations Tables : data at rest Streams : data in motion Operations : ( stream | table ) → ( stream | table ) transformations ● stream → stream : Non-grouping (element-wise) operations Leaves stream data in motion, yielding another stream. stream → table : Grouping operations ● Brings stream data to rest, yielding a table. Windowing adds the dimension of time to grouping. table → stream : Ungrouping (triggering) operations ● Puts table data into motion, yielding a stream. Accumulation dictates the nature of the stream (deltas, values, retractions). table → table : (none) ● Impossible to go from rest and back to rest without being put into motion. 47

  48. 02 Streaming SQL Contorting relational algebra for fun and profit A Time-varying relations B SQL language extensions 48

  49. Relational algebra Relation Relational algebra SQL π UserScores π π Score,Time (UserScores) SELECT Score, Time FROM UserScores; ----------------- User Score Time Score Time | Score | Time | ----------------- Julie 7 12:01 7 12:01 | 7 | 12:01 | | 3 | 12:03 | Frank 3 12:03 3 12:03 | 1 | 12:03 | | 4 | 12:07 | Julie 1 12:03 1 12:03 ----------------- Julie 4 12:07 4 12:07 49

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