influxdb/pkg
Jonathan A. Sternberg 31501c9dcf
Upgrade flux to the latest version and remove the platform dependency
This integrates the influxdb 1.x series to the latest version of Flux
and updates the code to use it. It also removes the dependency on
platform and copies the necessary code from storage into the 1.x series
so the dependency is unneeded.

The flux functions specific to 1.x have been moved to the same structure
that flux changed to with having a `stdlib` directory instead of a
`functions` directory. It also adds a `databases()` function that
returns the databases from the meta client.
2019-04-04 10:55:09 -05:00
..
binaryutil Partition series file. 2018-01-10 08:33:25 -07:00
bloom Cleanup pkg package 2018-01-21 12:08:25 -08:00
bytesutil Cleanup pkg package 2018-01-21 12:08:25 -08:00
data/gen chore(gen): Back port improvements and changes from OSS 2.0 2019-03-20 11:01:50 -07:00
deep Update godoc for pkg 2016-12-30 18:03:01 -08:00
encoding/simple8b Fix misspelling identified by misspell 2019-02-03 20:27:43 +00:00
escape pkg/escape: Add benchmarks for all bytes escape/unescape funcs 2018-01-16 11:12:47 +13:00
estimator Fix misspelling identified by misspell 2019-02-03 20:27:43 +00:00
file fix(tsdb): attempt to work on docker on windows 2018-06-01 14:57:18 -06:00
limiter fix the comments error 2018-08-20 17:19:35 +08:00
metrics Modify context key type 2018-10-16 11:25:33 +09:00
mmap Fix windows mmap on zero length file. 2018-06-29 10:24:16 -06:00
pool Cleanup pkg package 2018-01-21 12:08:25 -08:00
pprofutil Fix retain/release hang issues. 2017-12-06 09:09:41 -07:00
radix inmem: use radix sort for series ids 2018-07-17 12:31:12 -06:00
rhh Reduce allocations when inserting into RHH 2018-01-31 12:38:11 -07:00
slices Upgrade flux to the latest version and remove the platform dependency 2019-04-04 10:55:09 -05:00
snowflake pkg/snowflake: be more robust against sequence rollover 2018-08-16 11:18:06 -06:00
tar fix(tsdb): attempt to work on docker on windows 2018-06-01 14:57:18 -06:00
testing/assert storage service 2017-10-25 13:38:07 -07:00
tlsconfig tls: fix incorrect tls1.0 version mapping 2019-03-19 11:59:24 -06:00
tracing Convert TagValueSeriesIDCache to use string fields. 2019-02-12 14:22:40 -07: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!