Skip to content

Repository files navigation

Clast.Sketches

Streaming sketches for .NET, binary-compatible with Apache DataSketches.

NuGet CI License: Apache 2.0

Overview

Clast.Sketches is a from-scratch C# implementation of the Apache DataSketches algorithms and, critically, of their serialized forms. A sketch written by datasketches-java, datasketches-cpp, Spark, or Trino reads here, and one written here reads there. That portability is the point: sketches are usually produced by one engine and consumed by another.

The initial target is the sketches that show up in Apache Iceberg Puffin files — Theta for the apache-datasketches-theta-v1 blob, and HLL for engines that store NDV that way. KLL follows as the quantiles counterpart: the sketch behind Spark's kll_sketch_agg_* functions and the Druid and Pinot KLL aggregators.

Status

First release. Theta and HLL are complete and compatibility-tested against the reference implementations. The public API may still shift before 1.0, which is why the version is 0.x — under 0.x semver the minor is the breaking slot.

Component State
MurmurHash3 x64 128 Done — matches the Java reference bit for bit
Compact Theta sketch: read, estimate, serialize Done — round-trips the TCK snapshots byte for byte
Theta update sketch, QuickSelect Done — reproduces the TCK snapshots byte for byte from scratch
Theta update sketch, Alpha (required by Puffin) Done
Theta union, intersection, A-not-B Done
Theta error bounds Done — matches the reference to 1e-15 across ~38M evaluations
HLL sketch (HLL_4 / HLL_6 / HLL_8) Done — reproduces all 24 TCK snapshots byte for byte
HLL union Done
Delta-compressed Theta (serialization version 4) Done — reproduces the TCK snapshots byte for byte
KLL quantiles sketch (double / float) Done — reads every Java and C++ TCK snapshot and re-serializes it byte for byte
KLL merge, quantiles, ranks, CDF/PMF Done

Compatibility is tested against apache/datasketches-tck, the project's own cross-language serialization snapshots — the same images the Java, C++, and Go implementations validate against.

Example

using Clast.Sketches.Theta;

// Count distinct values.
var sketch = UpdateThetaSketch.Builder().Build();
foreach (var value in values)
    sketch.Update(value);

Console.WriteLine(sketch.Estimate);

// Serialize to the format Iceberg Puffin stores in an
// `apache-datasketches-theta-v1` blob.
byte[] blob = sketch.Compact().ToByteArray();

// Read one back — written by us, by Spark, by Trino, by anything.
var loaded = CompactThetaSketch.Deserialize(blob);
Console.WriteLine(loaded.Estimate);

Every sketch can report how much to trust its estimate:

// ~95% confidence by default; pass 1 or 3 for ~68% or ~99.7%.
Console.WriteLine($"{sketch.GetLowerBound()} .. {sketch.GetUpperBound()}");

Sketches built independently merge exactly — which is the reason to use Theta over a plain counter. Counting distinct values across a hundred Iceberg partitions becomes a hundred cheap merges instead of a rescan:

var union = new ThetaUnion(nominalEntries: 4096);
foreach (var blob in puffinBlobs)
    union.UnionCompactImage(blob);

Console.WriteLine(union.GetResult().Estimate);

Theta sketches also have a delta-compressed serialization, typically 30-40% smaller. Ordered hashes sit fairly evenly below theta, so the gaps between them need far fewer bits than the hashes themselves:

byte[] smaller = sketch.Compact().ToByteArrayCompressed();

// Deserialize reads either form — the image says which it is.
var loaded = CompactThetaSketch.Deserialize(smaller);

Intersection and set difference work too — and unlike a union, they cannot be computed from the estimates alone, only from the sketches:

var shared  = ThetaIntersection.Of(monday, tuesday);   // seen on both days
var newToday = ThetaAnotB.Of(tuesday, monday);         // seen only on Tuesday

Their results carry wider relative error than their operands, since a small intersection is recovered from two large sketches. Check the bounds before trusting a near-empty result.

Puffin specifies the Alpha family, which is more accurate standalone:

var sketch = UpdateThetaSketch.Builder()
    .SetFamily(SketchFamily.Alpha)   // requires >= 512 nominal entries
    .SetNominalEntries(4096)
    .Build();

HLL

When all you need is a distinct count, HLL is markedly more compact than Theta for the same accuracy — Theta earns its extra space by supporting intersection and set difference, which HLL cannot do.

using Clast.Sketches.Hll;

var sketch = new HllSketch(lgConfigK: 12, TgtHllType.Hll4);
foreach (var value in values)
    sketch.Update(value);

Console.WriteLine($"{sketch.Estimate} ({sketch.GetLowerBound()}..{sketch.GetUpperBound()})");

byte[] blob = sketch.ToCompactByteArray();
var loaded = HllSketch.Deserialize(blob);

HLL sketches merge too, and because registers hold a maximum the result is exactly the sketch you would have built over the union of the inputs — no error accumulates across merges. Sketches with different k or different register widths can be mixed freely:

var union = new HllUnion(lgMaxK: 12);
foreach (var blob in blobs)
    union.Update(blob);

HllSketch merged = union.GetResult();

Merging HLL_8 sketches is AVX2- and ARM NEON-accelerated, with a portable fallback; the register array is a byte per register, so a merge is an element-wise maximum.

This is the DataSketches HLL — what Spark's hll_sketch_agg produces — not the HyperLogLog++ of the Google paper, which is a different algorithm with a different wire format.

KLL quantiles

Theta and HLL answer "how many distinct". KLL answers "what does the distribution look like" — medians, percentiles, histograms — in space that does not grow with the stream:

using Clast.Sketches.Quantiles;

var sketch = new KllDoublesSketch();       // k = 200 by default
foreach (var latency in latencies)
    sketch.Update(latency);

Console.WriteLine($"p50 {sketch.GetQuantile(0.5)}, p99 {sketch.GetQuantile(0.99)}");
Console.WriteLine($"fraction under 250ms: {sketch.GetRank(250.0)}");

The error bound is on the rank, not the value: with the default k a reported rank is within about 1.33% of the truth at 99% confidence. Nothing bounds how far the returned value sits from the true quantile — where the distribution is flat, a small rank error spans a wide range of values. Ask the sketch what its bound is, which accounts for any smaller k merged in:

double epsilon = sketch.GetNormalizedRankError(pmf: false);

A histogram comes out in one pass, rather than one GetRank call per bucket:

double[] buckets = sketch.GetPMF([10.0, 50.0, 100.0, 500.0]);

Sketches merge, which is the reason to use one over sorting — a hundred partitions become a hundred cheap merges instead of a global sort:

var merged = new KllDoublesSketch();
foreach (var blob in blobs)
    merged.Merge(KllDoublesSketch.Deserialize(blob));

KllFloatsSketch is the same sketch over float, and its images are about half the size. The two formats are distinct: neither reads the other, so pick the one that matches whatever produced the data. This is what Spark's kll_sketch_agg_double and kll_sketch_agg_float produce, and what the Druid and Pinot KLL aggregators store.

One difference from Theta and HLL worth knowing: KLL compaction is randomized, so two sketches fed identical values do not generally serialize to identical bytes. Reading and re-writing an image is exact; rebuilding one from the same data is not.

Target frameworks

  • netstandard2.0
  • net8.0
  • net10.0

Relationship to Apache DataSketches

This is an independent implementation, not an ASF project and not affiliated with or endorsed by the Apache Software Foundation. Algorithms, constants, and wire formats are ported from the Apache-2.0 licensed DataSketches sources; see NOTICE for attribution.

License

Licensed under the Apache License, Version 2.0.

About

Streaming sketches for .NET, binary-compatible with Apache DataSketches: Theta (with set operations) and HLL, reading and writing the same serialized forms as datasketches-java and datasketches-cpp.

Resources

Contributing

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages