English

Relative Error Streaming Quantiles

Data Structures and Algorithms 2023-08-25 v4

Abstract

Estimating ranks, quantiles, and distributions over streaming data is a central task in data analysis and monitoring. Given a stream of nn items from a data universe equipped with a total order, the task is to compute a sketch (data structure) of size polylogarithmic in nn. Given the sketch and a query item yy, one should be able to approximate its rank in the stream, i.e., the number of stream elements smaller than or equal to yy. Most works to date focused on additive εn\varepsilon n error approximation, culminating in the KLL sketch that achieved optimal asymptotic behavior. This paper investigates multiplicative (1±ε)(1\pm\varepsilon)-error approximations to the rank. Practical motivation for multiplicative error stems from demands to understand the tails of distributions, and hence for sketches to be more accurate near extreme values. The most space-efficient algorithms due to prior work store either O(log(ε2n)/ε2)O(\log(\varepsilon^2 n)/\varepsilon^2) or O(log3(εn)/ε)O(\log^3(\varepsilon n)/\varepsilon) universe items. We present a randomized sketch storing O(log1.5(εn)/ε)O(\log^{1.5}(\varepsilon n)/\varepsilon) items that can (1±ε)(1\pm\varepsilon)-approximate the rank of each universe item with high constant probability; this space bound is within an O(log(εn))O(\sqrt{\log(\varepsilon n)}) factor of optimal. Our algorithm does not require prior knowledge of the stream length and is fully mergeable, rendering it suitable for parallel and distributed computing environments.

Keywords

Cite

@article{arxiv.2004.01668,
  title  = {Relative Error Streaming Quantiles},
  author = {Graham Cormode and Zohar Karnin and Edo Liberty and Justin Thaler and Pavel Veselý},
  journal= {arXiv preprint arXiv:2004.01668},
  year   = {2023}
}

Comments

Final version of the paper to appear in Journal of the ACM. Compared to the previous version, we removed any restrictions on the accuracy parameters in the main result and thoroughly revised the paper. 48 pages, 2 figures