stream computing (the engineer's perspective)

42
Stream Computing (The engineer’s perspective) Ilya Ganelin

Upload: ilya-ganelin

Post on 16-Apr-2017

450 views

Category:

Engineering


9 download

TRANSCRIPT

Page 1: Stream Computing (The Engineer's Perspective)

Stream Computing (The engineer’s

perspective)Ilya Ganelin

Page 2: Stream Computing (The Engineer's Perspective)

Batch vs. Stream• Batch• Process chunks of data instead of one at a time• Throughput over latency (seconds, minutes, hours)• E.g. MapReduce, Spark, Tez

• Stream• Data processed one at a time• Latency over throughput (microseconds, milliseconds)• E.g. Storm, Flink, Apex, KafkaStreams, GearPump

Page 3: Stream Computing (The Engineer's Perspective)

Scalability, Performance, Durability, Availability• How do we handle more data?

• Quickly?

• Without ever losing data or compute?

• And ensure the system keeps working, even if there are failures?

Page 4: Stream Computing (The Engineer's Perspective)
Page 5: Stream Computing (The Engineer's Perspective)

What are the tradeoffs?• If we focus on scalability, it’s harder to guarantee

• Durability – more moving pieces, more coordination, more failures• Availability – more failures, harder to stay operational• Performance – bottlenecks and synchronization

• If we focus on availability, it’s harder to guarantee• Performance – monitoring and synchronization overhead• Scalability and performance• Durability – must recover without losing data

• If we focus on durability, it’s harder to guarantee• Performance• Scalability

Page 6: Stream Computing (The Engineer's Perspective)

Batch compute has it easy.• Get scale-out and performance by adding hardware and taking longer

• Get durability with a durable data store and recompute

• Get availability by taking longer to recover (this makes life easier!)

• In stream processing, you don’t have time!

Page 7: Stream Computing (The Engineer's Perspective)

It’s not about performance and scale.• Most platforms handle large volume of data relatively quickly

• It’s about:• Ease of use – how quickly can I build a complex application? Not word count.

• Failure-handling – what happens when things break?

• Durability – how do I avoid losing data without sacrificing performance?

• Availability – how can I keep my system operational with a minimum of labor and without sacrificing performance?

Page 8: Stream Computing (The Engineer's Perspective)
Page 9: Stream Computing (The Engineer's Perspective)

Next: Case Studies in Open-Source Streaming• Storm

• Flink

• Apex

Page 10: Stream Computing (The Engineer's Perspective)

Apache Storm• Tried and true, was deployed on 10,000 node clusters at Twitter

• Scalable• Performant• Easy to use

• Weaknesses:• Failure handling• Operationalization at scale• Flexibility

• Obsolete?

Page 11: Stream Computing (The Engineer's Perspective)

How does it work?

Page 12: Stream Computing (The Engineer's Perspective)

How does it work?

Page 13: Stream Computing (The Engineer's Perspective)

How does it work?

Page 14: Stream Computing (The Engineer's Perspective)

Failure Detection

Page 15: Stream Computing (The Engineer's Perspective)

Failure Detection

No durability of data in flight or guarantee of exactly once processing!

Page 16: Stream Computing (The Engineer's Perspective)

Where do the weakness come from?• Nimbus was a single point of failure (fixed as of 1.0.0 release)• Upstream bolt/spout failure triggers re-compute on entire tree• Can only create parallel independent stream by having separate redundant

topologies

• Bolts/spouts share JVM Hard to debug• Failed tuples cannot be replayed quicker than 1s (lower limit on Ack)• No dynamic topologies• Cannot add or remove applications without service interruption• Poor resource sharing in large clusters

Page 17: Stream Computing (The Engineer's Perspective)
Page 18: Stream Computing (The Engineer's Perspective)

Enter the Competition – Apache Flink• Declarative functional API (like Spark)• But, true streaming platform (sort of) with support for CEP• Optimized query execution

• Weaknesses:• Depends on network micro-batching under the hood!• Not battle -tested• Failures still affect the entire topology

Page 19: Stream Computing (The Engineer's Perspective)

How does it work?

Page 20: Stream Computing (The Engineer's Perspective)
Page 21: Stream Computing (The Engineer's Perspective)

Failure Handling

Page 22: Stream Computing (The Engineer's Perspective)

So what’s different from Storm?• Flink handles planning and optimization for you• Abstracts lower level internals• Clear semantics around windowing (which Storm has lacked)• Failure handling is lightweight and fast!• Exactly once processing (given appropriate connectors at start/end)• Can run Storm

Page 23: Stream Computing (The Engineer's Perspective)

What can’t it do?• Dynamically update topology• Dynamically scale• Recover from errors without stopping the entire DAG• Allow fine-grained control of how data moves through the system –

locality, data partitioning, routing• You can do these individually, but not all at once• The high level API is a curse!

• Run in production (Maybe?)

Page 24: Stream Computing (The Engineer's Perspective)
Page 25: Stream Computing (The Engineer's Perspective)

So what else is there?

Onyx

Page 26: Stream Computing (The Engineer's Perspective)

Which are unique?

• Apache Beam (Google’s baby - unifies all the platforms)

• Apache Apex (Robust architecture, scalable, fast, durable)

• IBM InfoSphere Streams (proprietary, expensive, the best)

Page 27: Stream Computing (The Engineer's Perspective)

Let’s look at Apex• Unique provenance

• Built for the business at Yahoo – not a research project• Built for reliability and strict processing semantics, not performance• Apex just works

• Strengths• Dynamism• Scalability• Failure-handling

• Weaknesses• No high-level API• More complex architecture

Page 28: Stream Computing (The Engineer's Perspective)

How does it work?

Page 29: Stream Computing (The Engineer's Perspective)
Page 30: Stream Computing (The Engineer's Perspective)

Failure Handling

Page 31: Stream Computing (The Engineer's Perspective)
Page 32: Stream Computing (The Engineer's Perspective)
Page 33: Stream Computing (The Engineer's Perspective)

So it’s the best? Sort of!• Most robust failure-handling• Allows fine-tuning of data flows and DAG setup• Excellent exploratory UI

• But• Learning curve• No high-level API• No machine learning support• Built for business, not for simplicity

Page 34: Stream Computing (The Engineer's Perspective)

Streaming is great – what about state?• What if I need to persist data?

• Across operators?

• Retrieve it quickly?

• Do complex analytics?

• And build models?

Page 35: Stream Computing (The Engineer's Perspective)

Why state?• Historical features (e.g. spend amount over 30 days)

• Statistical aggregates

• Machine learning model training

• Why Cross operator? Because of how data is partitioned, allows aggregation over multiple fields.

Page 36: Stream Computing (The Engineer's Perspective)

Distributed In-Memory Databases• Can support low-latency streaming use cases

• Durability becomes complicated because memory is volatile

• Memory is expensive and limited

• Examples: Memcached, Redis, MemSQL, Ignite, Hazelcast, Distributed Hash Tables

Page 37: Stream Computing (The Engineer's Perspective)
Page 38: Stream Computing (The Engineer's Perspective)

Lab!• Build and deploy a simple architecture on a streaming platform• Ingest data• Engineer features• Build a model• Score against the model• Storm + H2O

• Model build and model score are two different steps• H2O allows you to export your model as a POJO that can be added as Java

code in a Storm Bolt

Page 39: Stream Computing (The Engineer's Perspective)

Goals• Demonstrate parallel feature computation

• Demonstrate model creation and export using H2O

• Given a labeled data-set (e.g. Titanic) generate a set of scores from running the model within the Storm topology

• Validate the generated results against a validation dataset (Storm or offline)

Page 40: Stream Computing (The Engineer's Perspective)

Plan of attack• Step 0: • Storm topology, executing a model (could be linear regression you coded

yourself), locally on a single node.

• Step 1:• Storm topology, executing an H2O model locally on a single node

• Step 2:• Storm topology, executing an H2O model, on multiple nodes (real or virtual)

• Step 3 (Extra credit): • Install Redis as a state store and use a Redis client to access Redis from Storm

Page 41: Stream Computing (The Engineer's Perspective)

Final Deliverable• A report detailing your experience working with this technology

• What worked?• What did not work?• What was setup and usability like?• What issues did you run into?• How did you resolve these issues?• Were you able to get the system operational?• Were you able to get the results you wanted?

Page 42: Stream Computing (The Engineer's Perspective)

Setup• Download and install Apache Storm

• http://storm.apache.org/releases/1.0.0/index.html• http://storm.apache.org/downloads.html• http://storm.apache.org/releases/1.0.0/Setting-up-a-Storm-cluster.html

• Download and install H20• http://www.h2o.ai/download/• https://

h2o-release.s3.amazonaws.com/h2o/rel-turchin/3/docs-website/h2o-docs/index.html

• https://h2o-release.s3.amazonaws.com/h2o/rel-turchin/3/docs-website/h2o-py/docs/index.html