influxdb/pkg
Seif Lotfy 643b2eb30c Switch to LogLog-Beta Cardinality estimation
The new algorithm uses only one formula and needs no additional bias corrections for the entire range of cardinalities,
therefore, it is more efficient and simpler to implement. Our simulations show that the accuracy provided by the new
algorithm is as good as or better than the accuracy provided by either of HyperLogLog or HyperLogLog++. The sparse
representation was kept in to provide better low cardinality accuracy. However the linear counting and range estimations
are replaced.
2017-06-20 15:25:01 +02:00
..
bloom intermediate compaction commit 2017-05-23 08:42:25 -06:00
bytesutil Merge branch 'master' into tsi 2017-04-03 11:21:02 -06:00
deep Update godoc for pkg 2016-12-30 18:03:01 -08:00
escape Update godoc for pkg 2016-12-30 18:03:01 -08:00
estimator Switch to LogLog-Beta Cardinality estimation 2017-06-20 15:25:01 +02:00
limiter Update godoc for pkg 2016-12-30 18:03:01 -08:00
mmap Fix windows mmap 2017-01-05 10:11:12 -07:00
pool Add LimitedBytePool for wal buffers 2017-05-11 11:27:00 -06:00
rhh Reset rhh map elements to reuse allocations. 2017-04-04 11:57:37 -06:00
slices Update godoc for pkg 2016-12-30 18:03:01 -08:00
README.md Correctly name pkg README 2015-12-17 11:24:58 -08:00

README.md

pkg/ is a collection of utility packages used by the InfluxDB project without being specific to its internals.

Utility packages are kept separate from the InfluxDB core codebase to keep it as small and concise as possible. If some utilities grow larger and their APIs stabilize, they may be moved to their own repository under the InfluxDB organization, to facilitate re-use by other projects. However that is not the priority.

Because utility packages are small and neatly separated from the rest of the codebase, they are a good place to start for aspiring maintainers and contributors. Get in touch if you want to help maintain them!