leveraging big data

65
Leveraging Big Data Instructors: http://www.cohenwang.com/edith/ bigdataclass2013 Disclaimer: This is the first time we are offering this class (new material also to the instructors!) EXPECT many glitches Ask questions Edith Cohen Amos Fiat Haim Kaplan Tova Milo

Upload: raheem

Post on 23-Feb-2016

29 views

Category:

Documents


0 download

DESCRIPTION

http://www.cohenwang.com/edith/bigdataclass2013. Leveraging Big Data. Edith Cohen Amos Fiat Haim Kaplan Tova Milo. Instructors:. Disclaimer : This is the first time we are offering this class (new material also to the instructors!) EXPECT many glitches Ask questions. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Leveraging Big Data

Leveraging Big Data

Instructors:

http://www.cohenwang.com/edith/bigdataclass2013

Disclaimer: This is the first time we are offering this class (new material also to the instructors!) • EXPECT many glitches• Ask questions

Edith CohenAmos FiatHaim KaplanTova Milo

Page 2: Leveraging Big Data

What is Big Data ?Huge amount of information, collected continuously: network activity, search requests, logs, location data, tweets, commerce, data footprint for each person ….What’s new ? Scale: terabytes -> petabytes -> exabytes -> … Diversity: relational, logs, text, media, measurements Movement: streaming data, volumes moved around

Eric Schmidt (Google) 2010: “Every 2 Days We Create As Much Information As We Did Up to 2003”

Page 3: Leveraging Big Data

The Big Data ChallengeTo be able to handle and leverage this information, to offer better services, we need Architectures and tools for data storage,

movement, processing, mining, …. Good models

Page 4: Leveraging Big Data

Big Data Implications• Many classic tools are not all that relevant – Can’t just throw everything into a DBMS

• Computational models: – map-reduce (distributing/parallelizing computation)– data streams (one or few sequential passes)

• Algorithms: – Can’t go much beyond “linear” processing– Often need to trade-off accuracy and computation cost

• More issues: – Understand the data: Behavior models with links to Sociology,

Economics, Game Theory, …– Privacy, Ethics

Page 5: Leveraging Big Data

This Course

Selected topics that• We feel are important • We think we can teach• Aiming for breadth– but also for depth and developing good working

understanding of concepts

http://www.cohenwang.com/edith/bigdataclass2013

Page 6: Leveraging Big Data

Today

• Short intro to synopsis structures• The data streams model• The Misra Gries frequent elements summary

Stream algorithm (adding an element) Merging Misra Gries summaries

• Quick review of randomization• Morris counting algorithm

Stream counting Merging Morris counters

• Approximate distinct counting

Page 7: Leveraging Big Data

Synopsis (Summary) Structures

Examples: random samples, sketches/projections, histograms, …

A small summary of a large data set that (approximately) captures some statistics/properties we are interested in.

Data Synopsis

Page 8: Leveraging Big Data

Query a synopsis: EstimatorsA function we apply to a synopsis in order to obtain an estimate of a property/statistics/function of the data

Data Synopsis

? �̂� (𝑺)

Page 9: Leveraging Big Data

Synopsis Structures

Useful features: Easy to add an element Mergeable : can create summary of union

from summaries of data sets Deletions/“undo” support Flexible: supports multiple types of queries

A small summary of a large data set that (approximately) captures some statistics/properties we are interested in.

Page 10: Leveraging Big Data

Mergeability

Data Synopsis

Data Synopsis

Data Synopsis 1

Enough to consider merging two sketches

Page 11: Leveraging Big Data

Why megeability is useful

Synopsis

Synopsis S.

Synopsis Synopsis

Synopsis

S.

S.

Page 12: Leveraging Big Data

Synopsis Structures: Why?Data can be too large to:

Keep for long or even short term

Transmit across the network

Process queries over in reasonable time/computation

Data, data, everywhere. Economist 2010

Page 13: Leveraging Big Data

The Data Stream Model

Data is read sequentially in one (or few) passes

We are limited in the size of working memory.

We want to create and maintain a synopsis which allows us to obtain good estimates of properties

Page 14: Leveraging Big Data

Streaming Applications Network management:

traffic going through high speed routers (data can not be revisited)

I/O efficiency (sequential access is cheaper than random access)

Scientific data, satellite feeds

Page 15: Leveraging Big Data

Streaming model

Sequence of elements from some domain <x1, x2, x3, x4, ..... > Bounded storage: working memory << stream size usually or for Fast processing time per stream element

Page 16: Leveraging Big Data

What can we compute over a stream ?

Some functions are easy: min, max, sum, …We use a single register , simple update: • Maximum: Initialize 0 For element , • Sum: Initialize 0 For element ,

32, 112, 14, 9, 37, 83, 115, 2,

The “synopsis” here is a single value. It is also mergeable.

Page 17: Leveraging Big Data

Frequent Elements

Elements occur multiple times, we want to find the elements that occur very often.

Number of distinct element is Stream size is

32, 12, 14, 32, 7, 12, 32, 7, 6, 12, 4,

Page 18: Leveraging Big Data

Frequent Elements

Applications: Networking: Find “elephant” flows Search: Find the most frequent queries

32, 12, 14, 32, 7, 12, 32, 7, 6, 12, 4,

Zipf law: Typical frequency distributions are highly skewed: with few very frequent elements. Say top 10% of elements have 90% of total occurrences.We are interested in finding the heaviest elements

Page 19: Leveraging Big Data

Frequent Elements: Exact Solution

Exact solution: Create a counter for each distinct element on its first

occurrence When processing an element, increment the counter

32, 12, 14, 32, 7, 12, 32, 7, 6, 12, 4,

32 12 14 7 6 4

Problem: Need to maintain counters. But can only maintain counters

Page 20: Leveraging Big Data

Frequent Elements: Misra Gries 1982

Processing an element If we already have a counter for , increment it Else, If there is no counter, but there are fewer than

counters, create a counter for initialized to . Else, decrease all counters by . Remove counters.

32, 12, 14, 32, 7, 12, 32, 7, 6, 12, 4,

32 12 14 12 7 12 4

Page 21: Leveraging Big Data

Frequent Elements: Misra Gries 1982

Processing an element If we already have a counter for , increment it Else, If there is no counter, but there are fewer than

counters, create a counter for initialized to . Else, decrease all counters by . Remove counters.

32, 12, 14, 32, 7, 12, 32, 7, 6, 12, 4,

Query: How many times occurred ? If we have a counter for , return its value Else, return .

This is clearly an under-estimate.What can we say precisely?

Page 22: Leveraging Big Data

Misra Gries 1982 : AnalysisHow many decrements to a particular can we have ? How many decrement steps can we have ? Suppose total weight of structure (sum of counters) is Total weight of stream (number of occurrences) is Each decrement step results in removing counts from

structure, and not counting current occurrence of the input element. That is “uncounted” occurrences.

There can be at most decrement steps

Estimate is smaller than true count by at most

Page 23: Leveraging Big Data

Misra Gries 1982 : AnalysisEstimate is smaller than true count by at most We get good estimates for when the number of occurrences

Error bound is inversely proportional to The error bound can be computed with summary:

We can track (simple count), know (can be computed from structure) and .

MG works because typical frequency distributions have few very popular elements “Zipf law”

Page 24: Leveraging Big Data

Merging two Misra Gries Summaries [ACHPWY 2012]

Basic merge: If an element is in both structures, keep one

counter with sum of the two counts If an element is in one structure, keep the counter

Reduce: If there are more than counters Take the th largest counter Subtract its value from all other counters Delete non-positive counters

Page 25: Leveraging Big Data

Merging two Misra Gries Summaries

7 6 1432 12 14

32 12 14 7 6

Basic Merge:

Page 26: Leveraging Big Data

Merging two Misra Gries Summaries

32 12 14 7 6

4th largest

Reduce since there are more than counters : Take the th = 4th largest counter Subtract its value (2) from all other counters Delete non-positive counters

Page 27: Leveraging Big Data

Merging MG Summaries: Correctness

Claim: Final summary has at most countersProof: We subtract the th largest from everything, so at most the largest can remain positive.

Claim: For each element, final summary count is smaller than true count by at most

Page 28: Leveraging Big Data

Merging MG Summaries: CorrectnessClaim: For each element, final summary count is smaller than true count by at most

Part 1:Total occurrences: In structure: Count loss:

Part 2:Total occurrences: In structure: Count loss:

Proof: “Counts” for element can be lost in part1, part2, or in the reduce component of the mergeWe add up the bounds on the losses

Reduce loss is at most th largest counter

Page 29: Leveraging Big Data

Merging MG Summaries: Correctness

Part 1:Total occurrences: In structure: Count loss:

Part 2:Total occurrences: In structure: Count loss:

“Count loss” of one element is at most

Reduce loss is at most th largest counter

Page 30: Leveraging Big Data

Merging MG Summaries: CorrectnessCounted occurrences in structure: After basic merge and before reduce: After reduce:

Claim: Proof: are erased in the reduce step in each of the largest counters. Maybe more in smaller counters.

“Count loss” of one element is at most

Page 31: Leveraging Big Data

Using Randomization

• Misra Gries is a deterministic structure• The outcome is determined uniquely by the

input• Usually we can do much better with

randomization

Page 32: Leveraging Big Data

Randomization in Data Analysis

Often a critical tool in getting good results Random sampling / random projections as a

means to reduce size/dimension Sometimes data is treated as samples from

some distribution, and we want to use the data to approximate that distribution (for prediction)

Sometimes introduced into the data to mask insignificant points (for robustness)

Page 33: Leveraging Big Data

Randomization: Quick review Random variable (discrete or continuous) Probability Density Function (PDF) : Probability/density of

Properties: Cumulative Distribution Function (CDF) : probability that

Properties: monotone non-decreasing from 0 to 1

Page 34: Leveraging Big Data

Quick review: Expectation Expectation: “average” value of : Linearity of Expectation:

For random variables

Page 35: Leveraging Big Data

Quick review: Variance

Variance

Useful relations: The standard deviation is Coefficient of Variation

Page 36: Leveraging Big Data

Quick review: CoVariance CoVariance (measure of dependence

between two random variables) Cov

are independent

Variance of the sum of , ,…, When (pairwise) independent

Page 37: Leveraging Big Data

Back to EstimatorsA function we apply to “observed data” (or to a “synopsis”) in order to obtain an estimate of a property/statistics/function of the data

Data Synopsis

? �̂� (𝑺)

Page 38: Leveraging Big Data

Quick Review: Estimators

Error Bias

When estimator is unbiased Mean Square Error (MSE): Root Mean Square Error (RMSE):

A function we apply to “observed data” (or to a “synopsis”) in order to obtain an estimate of a property/statistics/function of the data

Page 39: Leveraging Big Data

Back to stream counting

• Count: Initialize 0 For each element,

What if we are happy with an approximate count ?

1, 1, 1, 1, 1, 1, 1, 1,

Register (our synopsis) size (bits) is where is the current count

Can we use fewer bits ? Important when we have many streams to count, and fast memory is scarce (say, inside a backbone router)

Page 40: Leveraging Big Data

Morris Algorithm 1978

Idea: track instead of Use bits instead of bits

The first streaming algorithm

Stream counting: Stream of +1 increments Maintain an approximate count

1, 1, 1, 1, 1, 1, 1, 1,

Page 41: Leveraging Big Data

Morris AlgorithmMaintain a “log” counter Increment: Increment with probability Query: Output

1, 1, 1, 1, 1, 1, 1, 1,Stream:

Counter : 0

: 1

1 1 2 2 2 2 3 3

Estimate : 0 1 1 3 3 3 3 7 7

1, 2, 3, 4, 5, 6, 7, 8,Count :

Page 42: Leveraging Big Data

Morris Algorithm: Unbiasedness

When , , estimate is When , with , , with , , Expectation: by induction….

Page 43: Leveraging Big Data

Morris Algorithm: …Unbiasedness

is the random variable corresponding to the counter when the count is

We need to show that That is, to show that

• We next compute:

Page 44: Leveraging Big Data

Morris Algorithm: …Unbiasedness

Computing :• with probability : , • with probability : ,

Page 45: Leveraging Big Data

Morris Algorithm: …Unbiasedness𝐄 [𝟐𝑿𝒏|𝑿𝒏−𝟏= 𝒋 ¿=𝟐 𝒋+𝟏

𝐄 [𝟐𝑿𝒏 ]=∑𝒋≥𝟏

𝐏𝐫𝐨𝐛 [𝑿𝒏−𝟏= 𝒋 ]𝐄 [𝟐𝑿𝒏|𝑿𝒏−𝟏= 𝒋 ¿¿

by induction hyp. 𝟏¿𝒏+𝟏

Page 46: Leveraging Big Data

Morris Algorithm: Variance

How good is the estimate? • The r.v.’s and have the same variance

• We can show • This means and CV

How to reduce the error ?

Page 47: Leveraging Big Data

Morris Algorithm: Reducing variance 1

and CV Dedicated Method: Base change –

IDEA: Instead of counting , count Increment counter with probability When is closer to 1, we increase accuracy but also increase counter size.

Page 48: Leveraging Big Data

Morris Algorithm: Reducing variance 2

and CV Generic Method: Use independent counters Compute estimates

Average the estimates

Page 49: Leveraging Big Data

Reducing variance by averaging

(pairwise) independent estimates with expectation and variance .The average estimator Expectation: Variance: CV : decreases by a factor of

Page 50: Leveraging Big Data

Merging Morris Counters

We have two Morris counters for streams of sizes

Would like to merge them: obtain a single counter which has the same distribution (is a Morris counter) for a stream of size

Page 51: Leveraging Big Data

Merging Morris Counters

Merge the Morris counts , (into ): For Increment with probability

Morris-count stream to get Morris-count stream to get

Correctness for : at all steps we have we and probability . In the end we have

Correctness (Idea): We will show that the final value of “corresponds” to counting after

Page 52: Leveraging Big Data

Merging Morris Counters: Correctness

We want to achieve the same effect as if the Morris counting was applied to a concatenation of the streams We consider two scenarios : 1. Morris counting applied to 2. Morris counting applied to after

We want to simulate the result of (2) given (result of (1)) and

Page 53: Leveraging Big Data

Merging Morris Counters: Correctness

Associate an (independent) random with each element of the stream Process element : Increment if

Restated Morris (for sake of analysis only)

We “map” executions of (1) and (2) by looking at the same randomization .

We will see that each execution of (1), in terms of the set of elements that increment the counter, maps to many executions of (2)

Page 54: Leveraging Big Data

Merging algorithm: Correctness Plan

We fix the whole run (and randomization) on . We fix the set of elements that result in counter

increments on in (1) We work with the distribution of conditioned

on the above. We show that the corresponding distribution

over executions of (2) (set of elements that increment the counter) emulates our merging algorithm.

Page 55: Leveraging Big Data

What is the conditional distribution?

• Elements that did not increment counter when counter value was have

• Elements that did increment counter have

1, 1, 1, 1, 1, 1, 1, 1,Stream:

: 1

: [0,1] [,1] [] [,1] [,1] [,1] [] []

Page 56: Leveraging Big Data

To show correctness of merge, suffices to show: Elements of that did not increment in (1) do not

increment in (any corresponding run of) (2) Element that had the increment in (1), conditioned

on in the simulation so far, increments in (2) with probability

We show this inductively. Also show that at any point , where is the count in (1).

Merge the Morris counts , (into ): For Increment with probability

Page 57: Leveraging Big Data

The first element of incremented the counter in (1). It has . The probability that it gets counted in (2) is

Initially, . After processing, . If was initially 0, it is incremented with probability 1, so we maintain .

Merge the Morris counts , (into ): For Increment with probability

Page 58: Leveraging Big Data

Proof: An element of that did not increment the counter when its value in (1) was , has .Since we have , this element will also not increment in (2), since .The counter in neither (1) nor (2) changes after processing , so we maintain the relation .

Merge the Morris counts , (into ): For Increment with probability

Elements of that did not increment in (1) do not increment in (any corresponding run of) (2)

Page 59: Leveraging Big Data

Element that had the increment in (1), conditioned on in the simulation so far, increments in (2) with probability

Merge the Morris counts , (into ): For Increment with probability

Proof: Element has (we had before the increment). Element increments in (2) . • If we had equality , is incremented with

probability 1, so we maintain the relation

Page 60: Leveraging Big Data

Random Hash FunctionsFor a domain and a probability distribution over A distribution over a family of hash functions with the following properties: Each function has a concise representation and it is easy

to choose For each , when choosing

(is a random variable with distribution ) The random variables are independent for different .

We use random hash functions as a way to attach a “permanent” random value to each identifier in an execution

Simplified and Idealized

Page 61: Leveraging Big Data

Counting Distinct Elements

Elements occur multiple times, we want to count the number of distinct elements. Number of distinct element is ( in example) Number of elements in this example is 11

32, 12, 14, 32, 7, 12, 32, 7, 6, 12, 4,

Page 62: Leveraging Big Data

Counting Distinct Elements: Example Applications

Networking: Packet or request streams: Count the number of

distinct source IP addresses Packet streams: Count the number of distinct IP

flows (source+destination IP, port, protocol) Search: Find how many distinct search queries

were issued to a search engine each day

32, 12, 14, 32, 7, 12, 32, 7, 6, 12, 4,

Page 63: Leveraging Big Data

Distinct Elements: Exact Solution

Exact solution: Maintain an array/associative array/ hash table Hash/place each element to the table Query: count number of entries in the table

32, 12, 14, 32, 7, 12, 32, 7, 6, 12, 4,

Problem: For distinct elements, size of table is But this is the best we can do (Information theoretically) if we want an exact distinct count.

Page 64: Leveraging Big Data

Distinct Elements: Approximate Counting

IDEA: Size-estimation/Min-Hash technique : [Flajolet-Martin 85, C 94] Use a random hash function mapping element IDs to

uniform random numbers in [0,1] Track the minimum Intuition: The minimum and are very related : With distinct elements, expectation of the minimum Can use the average estimator with repetitions

32, 12, 14, 32, 7, 12, 32, 7, 6, 12, 4,

Page 65: Leveraging Big Data

BibliographyMisra Gries Summaries J. Misra and David Gries, Finding Repeated Elements. Science of Computer Programming 2, 1982

http://www.cs.utexas.edu/users/misra/scannedPdf.dir/FindRepeatedElements.pdf Merging: Agarwal, Cormode, Huang, Phillips, Wei, and Yi, Mergeable Summaries, PODS 2012

Approximate counting (Morris Algorithm) Robert Morris. Counting Large Numbers of Events in Small Registers. Commun. ACM, 21(10): 840-842, 1978

http://www.inf.ed.ac.uk/teaching/courses/exc/reading/morris.pdf Philippe Flajolet Approximate counting: A detailed analysis. BIT 25 1985

http://algo.inria.fr/flajolet/Publications/Flajolet85c.pdf Merging Morris counters: these slides

Approximate distinct counting P. Flajolet and G. N. Martin. Probabilistic counting. In Proceedings of Annual IEEE Symposium on

Foundations of Computer Science (FOCS), pages 76–82, 1983 E. Cohen Size-estimation framework with applications to transitive closure and reachability, JCSS 1997