API Snapshots: Java Core, C++ Core, Python, Memory, Pig, Hive,

Tuple Sketch Overview

Tuple Sketches are extensions of the Theta Sketch, which can be represented internally as an array of hash values (of unique identifiers) and a value, theta, which represents the effective sampling rate determined by the sketch.

The analysis capabilities with the core Theta Sketch technology is quite powerful, nevertheless, it is limited to set expressions across multiple Theta Sketches.

TupleStartsWithTheta

Tuple Sketches associate a Summary Object with each hash value. A Summary Object can be anything, but is typically one or more numeric or boolean state variables as members of columns. This is shown in the next figure.

TupleWithAttributes

Tuple Sketches are ideal for summarizing attributes such as impressions or clicks. When the sketch is complete, the sum of all the counts in any particular column divided by theta of the sketch is an unbiased estimate of the sum of that attribute of the population from which the summary rows of sketch were drawn.

Summary Objects are class extensions of the generic base classes in the library. It is up to the developer of the extension how the summary fields are defined and how they should be combined during updates or during set operations.

Keep in mind that all of these operations are stream-based. The raw data from which these sketches are built only needs to be touched once.

The Tuple Sketches also provide sufficient methods so that user could develop a wrapper class that could facilitate approximate joins or other common database operations. This concept is illustrated in this next diagram.

TupleJoins