43
big DATA mob SCALE JAX London 2013 - Darach Ennis - @darachennis

Big Events, Mob Scale - Darach Ennis (Push Technology)

Embed Size (px)

DESCRIPTION

Presented at JAX London MapReduce begat Hadoop begat Big Data. NoSQL moved us away from the stricture of monolithic storage architectures to fit-for-purpose designs. But, Houston, we still have a problem. Architects are still designing systems like this is the '70s. SOA, went from buzzword to the bank with the emergence and evolution of the cloud and on-demand right-now elasticity. Yet most systems are still designed to store-then-compute rather than to observe, orient, decide and act on in-flight data.

Citation preview

Page 1: Big Events, Mob Scale - Darach Ennis (Push Technology)

big DATA mob SCALE

JAX London 2013 - Darach Ennis - @darachennis

Page 2: Big Events, Mob Scale - Darach Ennis (Push Technology)
Page 3: Big Events, Mob Scale - Darach Ennis (Push Technology)

small FAST DATA guy

JAX London 2013 - Darach Ennis - @darachennis

Page 4: Big Events, Mob Scale - Darach Ennis (Push Technology)

Big Data!!!

“The techniques and technologies for such data-intensive science are so different that it is

worth distinguishing data-intensive science from computational science as a new, fourth paradigm”

!- Jim Gray!

!!

The Fourth Paradigm: Data-Intensive Scientific Discovery. - Microsoft 2009

Page 5: Big Events, Mob Scale - Darach Ennis (Push Technology)

DATA intensive!science SCALE

Page 6: Big Events, Mob Scale - Darach Ennis (Push Technology)

Compute Sympathy

Page 7: Big Events, Mob Scale - Darach Ennis (Push Technology)

Compute Sympathy

Page 8: Big Events, Mob Scale - Darach Ennis (Push Technology)

Compute Sympathy

Page 9: Big Events, Mob Scale - Darach Ennis (Push Technology)

A Wall Street Second

Page 10: Big Events, Mob Scale - Darach Ennis (Push Technology)

A Swiss Second

Page 11: Big Events, Mob Scale - Darach Ennis (Push Technology)

Small Data? <= 128bytesHTTP GET/POST - A typical RESTful performance

0.1

1

10

100

1000

1

10

100

1000

Concurrent Connections1 2 4 8 16 32 64 128 256 512 1024

Req/Sec Bw/Sec (MB) Avg Latency (ms) Max Latency (ms) Stdev (ms)

14,99815,17315,33015,44515,78715,49914,64212,6168,705

4,2793,9073,907 4,279

8,70512,616 14,642 15,499 15,787 15,445 15,330 15,173 14,998

Page 12: Big Events, Mob Scale - Darach Ennis (Push Technology)

Small Data? <= 1KHTTP GET/POST - A typical RESTful performance

0.1

1

10

100

1000

1

100

10000

Concurrent Connections1 2 4 8 16 32 64 128 256 512 1024

Req/Sec Bw/Sec (MB) Avg Latency (ms) Max Latency (ms) Stdev (ms)

2,8422,7882,8302,9162,8582,7902,8492,7221,9511,288

6906901,288

1,951 2,722 2,849 2,790 2,858 2,916 2,830 2,788 2,842

Page 13: Big Events, Mob Scale - Darach Ennis (Push Technology)

Big Events - 1Billion SourcesBallpark number of boxes if each box can handle 2500 events/second

Valu

e Ax

is

1

1000

1000000

Category Axis

1 million 10 million 100 million 1 billion1/dy 1/hr 1/mn 1/sc 1/dy 1/hr 1/mn 1/sc 1/dy 1/hr 1/mn 1/sc 1/dy 1/hr 1/mn 1/sc

400,000

40,000

4,000

35

16,667

1,667

167

17

112

1221 5111

1/dy 1/hr 1/mn 1/sc

Page 14: Big Events, Mob Scale - Darach Ennis (Push Technology)

Data!Sympathy?

Page 15: Big Events, Mob Scale - Darach Ennis (Push Technology)

5 V's

Page 16: Big Events, Mob Scale - Darach Ennis (Push Technology)

5 V’s via [V-PEC-T]

• Business Factors

• ‘Veracity’ - The What

• ‘Value’ - The Why

• Technical Domain (Policies, Events, Content)

• Volume, Velocity, Variety

Page 17: Big Events, Mob Scale - Darach Ennis (Push Technology)

Source: Ashwani Roy, Charles Cai - QCON London 2013 - http://bit.ly/1f2Pdf9

Page 18: Big Events, Mob Scale - Darach Ennis (Push Technology)

Source: Ashwani Roy, Charles Cai - QCON London 2013 - http://bit.ly/1f2Pdf9

Page 19: Big Events, Mob Scale - Darach Ennis (Push Technology)

Source: Ashwani Roy, Charles Cai - QCON London 2013 - http://bit.ly/1f2Pdf9

Page 20: Big Events, Mob Scale - Darach Ennis (Push Technology)

Incremental!!

The needs of the individual event or query outweigh the needs of the aggregate events

or queries in flight in the system !

!

!

Page 21: Big Events, Mob Scale - Darach Ennis (Push Technology)

Batch!!

The needs of the system outweigh the needs of individual events and queries running in

flight or active within the system !

!

!

Page 22: Big Events, Mob Scale - Darach Ennis (Push Technology)

- Nathan März

“Computing arbitrary functions on an arbitrary dataset in real time is a daunting problem..”

Page 23: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda Architecture “Twitter Scale”

5000 msgs/second inbound <1K “Small data”

“Firehouse" outbound - but thats just a broadcast

problem (easy)

Page 24: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda: http://bit.ly/Hs53Ur

Web

Batch

Serving

Speed

ViewsViewsViews

ViewsViewsViews

TimeSeries Docs K/V Rel

MQ

"New Data"

Data

Apps

Apps

Page 25: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda: A

All new data is sent to both the batch layer and the speed layer. In the batch layer, new data is appended to the master dataset. In the speed layer, the new data is consumed to do incremental updates of the realtime views.

Page 26: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda: B

The master dataset is an immutable, append-only set of data. The master dataset only contains the rawest information that is not derived from any other information you have.

Page 27: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda: Master data set • From A: “rawest … not derived"

• In many environments it may be preferable to normalise data for later ease of retrieval (eg: Dremel, strongly typed nested records) to support scalable ad hoc query.

• Derivation allows other forms of efficient retrieval eg: using SAX - Symbolic Aggregate Approximation, PAA - Piecewise Aggregate Approximation etc..

Page 28: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda: http://bit.ly/Hs53Ur

Web

Batch

Serving

Speed

ViewsViewsViews

ViewsViewsViews

TimeSeries Docs K/V Rel

MQ

"New Data"

Data

Apps

Apps

?

Page 29: Big Events, Mob Scale - Darach Ennis (Push Technology)

SAX & PAA

Symbolic Aggregate Approximation

Piecewise Aggregate Approximation

1sc -> 1mn -> 1hr -> 1dy -> 1wk -> 1mh -> 1yr

Page 30: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda: C

The batch layer precomputes query functions from scratch. The results of the batch layer are called batch views. The batch layer runs in a while(true) loop and continuously recomputes the batch views from scratch. The strength of the batch layer is its ability to compute arbitrary functions on arbitrary data. This gives it the power to support any application.

Page 31: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda: D

The serving layer indexes the batch views produced by the batch layer and makes it possible to get particular values out of a batch view very quickly. The serving layer is a scalable database that swaps in new batch views as they’re made available. Because of the latency of the batch layer, the results available from the serving layer are always out of date by a few hours.

Page 32: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda: http://bit.ly/Hs53Ur

Web

Batch

Serving

Speed

ViewsViewsViews

ViewsViewsViews

TimeSeries Docs K/V Rel

MQ

"New Data"

Data

Apps

Apps

?

Page 33: Big Events, Mob Scale - Darach Ennis (Push Technology)

Think ‘Statistical Compression'

Page 34: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda: E The speed layer compensates for the high latency of updates to the serving layer. It uses fast incremental algorithms and read/write databases to produce realtime views that are always up to date. The speed layer only deals with recent data, because any data older than that has been absorbed into the batch layer and accounted for in the serving layer. The speed layer is significantly more complex than the batch and serving layers, but that complexity is compensated by the fact that the realtime views can be continuously discarded as data makes its way through the batch and serving layers. So, the potential negative impact of that complexity is greatly limited.

Page 35: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda: http://bit.ly/Hs53Ur

Web

Batch

Serving

Speed

ViewsViewsViews

ViewsViewsViews

TimeSeries Docs K/V Rel

MQ

"New Data"

Data

Apps

Apps

?

Page 36: Big Events, Mob Scale - Darach Ennis (Push Technology)

Use a DSP + CEP/ESP or ‘Scalable CEP'

• Storm/S4 + Esper/…

• Embed a CEP/ESP within a Distributed Stream processing Engine

• Use Drill for large scale ad hoc query [leverage nested records]

• Already have middleware? Have well defined queries? Roll your own minimal EEP (or use mine!)

Page 37: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda: F Queries are resolved by getting results from both the batch and realtime views and merging them together.

Page 38: Big Events, Mob Scale - Darach Ennis (Push Technology)

Millwheel: http://bit.ly/1gWqNIC

WebQuery

WindowCounterQueries

Model

Stats

Stats

Model

Out ofTrend? Alerts

WindowCounter

Model

Out ofTrend?

Monitor

Google’s “Zeitgeist pipeline"

Page 39: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda: Batch View• Precomputed Queries are central to Complex

Event Processing / Event Stream Processing architectures.

• Unfortunately, though, most DBMS’s still offer only synchronous blocking RPC access to underlying data when asynchronous guaranteed delivery would be preferable for view construction leveraging CEP/ESP techniques.

Page 40: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda: Merging …• Possibly one of the most difficult aspects of near

real-time and historical data integration is combining flows sensibly.

• For example, is the order of interleaving across merge sources applied in a known deterministically recomputable order? If not, how can results be recomputed subsequently? Will data converge? [cf: http://cs.brown.edu/research/aurora/hwang.icde05.ha.pdf]

Page 41: Big Events, Mob Scale - Darach Ennis (Push Technology)

Lambda: A start …

Web

Batch

Serving

Speed

ViewsViewsViews

ViewsViewsViews

TimeSeries Docs K/V Rel

MQ

"New Data"

Data

Apps

Apps

Page 42: Big Events, Mob Scale - Darach Ennis (Push Technology)

mob DATA Not a Jedi … yet …

JAX London 2013 - Darach Ennis - @darachennis

Page 43: Big Events, Mob Scale - Darach Ennis (Push Technology)

Thanks. Questions?

!

@darachennis