Skip to content

Releases: DataDog/sketches-java

v0.3.0

28 Sep 10:38
Compare
Choose a tag to compare
  • Avoid iterating over empty bins when using Stores's methods (getStream, getAscendingStream, getDescendingStream, getAscendingIterator and getDescendingIterator)
  • Track bin counts as double and update the signature of related methods

This release introduces breaking API changes:

  • QuantileSketch.getCount(), Store.getTotalCount() and Bin.getCount() now return a double instead of a long,
  • Store has a new add method with signature void add(int, double),
  • the constructor of Bin now takes a double as a second parameter (count).

v0.2.1

06 Jul 14:55
Compare
Choose a tag to compare
  • Make sure very small and very large input values are properly handled

v0.2.0

12 May 16:09
Compare
Choose a tag to compare
  • Add support for Java 8