Object

com.twitter.algebird

HyperLogLog

Related Doc: package algebird

Permalink

object HyperLogLog

Implementation of the HyperLogLog approximate counting as a Monoid

Source
HyperLogLog.scala
See also

http://algo.inria.fr/flajolet/Publications/FlFuGaMe07.pdf HyperLogLog: the analysis of a near-optimal cardinality estimation algorithm Philippe Flajolet and Éric Fusy and Olivier Gandouet and Frédéric Meunier

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HyperLogLog
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def alpha(bits: Int): Double

    Permalink
  5. def approximateSize(bits: Int, size: Int, zeroCnt: Int, z: Double): Approximate[Long]

    Permalink
  6. def asApprox(bits: Int, v: Double): Approximate[Long]

    Permalink
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def bitsForError(err: Double): Int

    Permalink

    This gives you a number of bits to use to have a given standard error

  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def error(bits: Int): Double

    Permalink

    The true error is distributed like a Gaussian with this standard deviation.

    The true error is distributed like a Gaussian with this standard deviation. let m = 2^bits. The size of the HLL is m bytes.

    bits | size | error 9 512 0.0460 10 1024 0.0325 11 2048 0.0230 12 4096 0.0163 13 8192 0.0115 14 16384 0.0081 15 32768 0.0057 16 65536 0.0041 17 131072 0.0029 18 262144 0.0020 19 524288 0.0014 20 1048576 0.0010

    Keep in mind, to store N distinct longs, you only need 8N bytes. See SetSizeAggregator for an approach that uses an exact set when the cardinality is small, and switches to HLL after we have enough items. Ideally, you would keep an exact set until it is smaller to store the HLL (but actually since we use sparse vectors to store the HLL, a small HLL takes a lot less than the size above).

  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def fromByteBuffer(bb: ByteBuffer): HLL

    Permalink
  15. def fromBytes(bytes: Array[Byte]): HLL

    Permalink
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def hash(input: Array[Byte]): Array[Byte]

    Permalink
  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. val hashSize: Int

    Permalink
  20. def initialEstimate(bits: Int, size: Int, zeroCnt: Int, z: Double): Double

    Permalink
  21. implicit def int2Bytes(i: Int): Array[Byte]

    Permalink
  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. def j(bytes: Array[Byte], bits: Int): Int

    Permalink

  24. def jRhoW(in: Array[Byte], bits: Int): (Int, Byte)

    Permalink

    We are computing j and \rho(w) from the paper, sorry for the name, but it allows someone to compare to the paper extremely low probability rhow (position of the leftmost one bit) is > 127, so we use a Byte to store it Given a hash <w_0, w_1, w_2 ...

    We are computing j and \rho(w) from the paper, sorry for the name, but it allows someone to compare to the paper extremely low probability rhow (position of the leftmost one bit) is > 127, so we use a Byte to store it Given a hash <w_0, w_1, w_2 ... w_n> the value 'j' is equal to <w_0, w_1 ... w_(bits-1)> and the value 'w' is equal to <w_bits ... w_n>. The function rho counts the number of leading zeroes in 'w'. We can calculate rho(w) at once with the method rhoW.

  25. implicit def long2Bytes(i: Long): Array[Byte]

    Permalink
  26. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. def rhoW(bytes: Array[Byte], bits: Int): Byte

    Permalink

    The value 'w' is represented as a bitset (encoding in bytes).

    The value 'w' is represented as a bitset (encoding in bytes). This function counds the number of leading zeros in 'w'.

    Each byte is treated as a set of bits (little-endian). That is, the one bit represents the first value, then the two bit, then four, and so on.

    We treat the leading bits bits as if they were instead a single zero bit.

  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  31. def toBytes(h: HLL): Array[Byte]

    Permalink
  32. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  33. def twopow(i: Int): Double

    Permalink
    Annotations
    @inline()
  34. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def j(bsl: BitSetLite, bits: Int): Int

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.3) This is no longer used. Use j(Array[Byte], Int) instead.

  2. def rhoW(bsl: BitSetLite, bits: Int): Byte

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.3) This is no longer used. Use rhoW(Array[Byte], Int) instead.

Inherited from AnyRef

Inherited from Any

Ungrouped