Contributing to InfluxDB ======================== Bug reports --------------- Before you file an issue, please search existing issues in case it has already been filed, or perhaps even fixed. If you file an issue, please include the following. * Full details of your operating system (or distribution) e.g. 64-bit Ubuntu 14.04. * The version of InfluxDB you are running * Whether you installed it using a pre-built package, or built it from source. * A small test case, if applicable, that demonstrates the issues. Remember the golden rule of bug reports: **The easier you make it for us to reproduce the problem, the faster it will get fixed.** If you have never written a bug report before, or if you want to brush up on your bug reporting skills, we recommend reading [Simon Tatham's essay "How to Report Bugs Effectively."](http://www.chiark.greenend.org.uk/~sgtatham/bugs.html) Test cases should be in the form of `curl` commands. For example: ```bash # create database curl -X POST http://localhost:8086/query --data-urlencode "q=CREATE DATABASE mydb" # create retention policy curl -X POST http://localhost:8086/query --data-urlencode "q=CREATE RETENTION POLICY myrp ON mydb DURATION 365d REPLICATION 1 DEFAULT" # write data curl -X POST http://localhost:8086/write?db=mydb --data-binary "cpu,region=useast,host=server_1,service=redis value=61" # Delete a Measurement curl -X POST http://localhost:8086/query --data-urlencode 'db=mydb' --data-urlencode 'q=DROP MEASUREMENT cpu' # Query the Measurement # Bug: expected it to return no data, but data comes back. curl -X POST http://localhost:8086/query --data-urlencode 'db=mydb' --data-urlencode 'q=SELECT * from cpu' ``` **If you don't include a clear test case like this, your issue may not be investigated, and may even be closed**. If writing the data is too difficult, please zip up your data directory and include a link to it in your bug report. Please note that issues are *not the place to file general questions* such as "how do I use collectd with InfluxDB?" Questions of this nature should be sent to the [InfluxData Community](https://community.influxdata.com/), not filed as issues. Issues like this will be closed. Feature requests --------------- We really like to receive feature requests, as it helps us prioritize our work. Please be clear about your requirements, as incomplete feature requests may simply be closed if we don't understand what you would like to see added to InfluxDB. Contributing to the source code --------------- InfluxDB requires go 1.15 or later and uses go modules to manage dependencies. This means that all of your Go development is done wherever you choose to check out the source. There is no need to place the source in your `$GOPATH`. In fact, we recommend against placing it within `$GOPATH`. You should also read our [coding guide](https://github.com/influxdata/influxdb/blob/master-1.x/CODING_GUIDELINES.md), to understand better how to write code for InfluxDB. Submitting a pull request ------------ To submit a pull request you should fork the InfluxDB repository, and make your change on a feature branch of your fork. Then generate a pull request from your branch against *master-1.x* of the InfluxDB repository. Include in your pull request details of your change -- the why *and* the how -- as well as the testing your performed. Also, be sure to run the test suite with your change in place. Changes that cause tests to fail cannot be merged. There will usually be some back and forth as we finalize the change, but once that completes it may be merged. To assist in review for the PR, please add the following to your pull request comment: ```md - [ ] CHANGELOG.md updated - [ ] Rebased/mergable - [ ] Tests pass - [ ] Sign [CLA](https://influxdata.com/community/cla/) (if not already signed) ``` Signing the CLA --------------- If you are going to be contributing back to InfluxDB please take a second to sign our CLA, which can be found [on our website](https://influxdata.com/community/cla/). Installing Go ------------- InfluxDB requires Go 1.15. At InfluxDB we find gvm, a Go version manager, useful for installing Go. For instructions on how to install it see [the gvm page on github](https://github.com/moovweb/gvm). After installing gvm you can install and set the default go version by running the following: gvm install go1.15 gvm use go1.15 --default Revision Control Systems ------------- Go has the ability to import remote packages via revision control systems with the `go get` command. To ensure that you can retrieve any remote package, be sure to install the following rcs software to your system. Currently the project only depends on `git` and `mercurial`. * [Install Git](http://git-scm.com/book/en/Getting-Started-Installing-Git) * [Install Mercurial](http://mercurial.selenic.com/wiki/Download) Getting the source ------ Setup the project structure and fetch the repo like so: ```bash mkdir $HOME/gocodez export GOPATH=$HOME/gocodez go get github.com/influxdata/influxdb ``` You can add the line `export GOPATH=$HOME/gocodez` to your bash/zsh file to be set for every shell instead of having to manually run it everytime. Cloning a fork ------------- If you wish to work with fork of InfluxDB, your own fork for example, you must still follow the directory structure above. But instead of cloning the main repo, instead clone your fork. Follow the steps below to work with a fork: ```bash git clone git@github.com:/influxdb ``` Retaining the directory structure `$GOPATH/src/github.com/influxdata` is necessary so that Go imports work correctly. Build and Test ----- Make sure you have Go installed and the project structure as shown above. To then get the dependencies for the project, execute the following commands: ```bash cd influxdb ``` To then build and install the binaries, run the following commands. ```bash export PKG_CONFIG="$(git rev-parse --show-toplevel)/pkg-config.sh" go clean ./... go install ./... ``` The binaries will be located in `$GOPATH/bin`. Please note that the InfluxDB binary is named `influxd`, not `influxdb`. To set the version and commit flags during the build pass the following to the **install** command: ```bash -ldflags="-X main.version=$VERSION -X main.branch=$BRANCH -X main.commit=$COMMIT" ``` where `$VERSION` is the version, `$BRANCH` is the branch, and `$COMMIT` is the git commit hash. If you want to build packages, see `build.py` usage information: ```bash python build.py --help # Or to build a package for your current system python build.py --package ``` To run the tests, execute the following command: ```bash cd $GOPATH/src/github.com/influxdata/influxdb go test -v ./... # run tests that match some pattern go test -run=TestDatabase . -v # run tests and show coverage go test -coverprofile /tmp/cover . && go tool cover -html /tmp/cover ``` To install go cover, run the following command: ``` go get golang.org/x/tools/cmd/cover ``` Generated Google Protobuf code ----------------- Most changes to the source do not require that the generated protocol buffer code be changed. But if you need to modify the protocol buffer code, you'll first need to install the protocol buffers toolchain. First install the [protocol buffer compiler](https://developers.google.com/protocol-buffers/ ) 3.17.3 or later for your OS. Then run, `go generate` after updating any `*.proto` file: ```bash go generate ./... ``` **Troubleshooting** If generating the protobuf code is failing for you, check the following: * Ensure the protobuf library can be found. Make sure that `LD_LIBRARY_PATH` includes the directory in which the library `libprotoc.so` has been installed. Generated Go Templates ---------------------- The query engine requires optimized data structures for each data type so instead of writing each implementation several times we use templates. _Do not change code that ends in a `.gen.go` extension!_ Instead you must edit the `.gen.go.tmpl` file that was used to generate it. Once you've edited the template file, you'll need the [`tmpl`][tmpl] utility to generate the code: ```sh $ go get github.com/benbjohnson/tmpl ``` Then you can regenerate all templates in the project: ```sh $ go generate ./... ``` [tmpl]: https://github.com/benbjohnson/tmpl Pre-commit checks ------------- We have a pre-commit hook to make sure code is formatted properly and vetted before you commit any changes. We strongly recommend using the pre-commit hook to guard against accidentally committing unformatted code. To use the pre-commit hook, run the following: ```bash cd influxdb cp .hooks/pre-commit .git/hooks/ ``` In case the commit is rejected because it's not formatted you can run the following to format the code: ``` goimports -w ./ go vet ./... ``` To install these tools, run the following commands: ``` go get golang.org/x/tools/cmd/vet go get golang.org/x/tools/cmd/goimports ``` NOTE: If you have not installed mercurial, the above command will fail. See [Revision Control Systems](#revision-control-systems) above. For more information on `go vet`, [read the GoDoc](https://godoc.org/golang.org/x/tools/cmd/vet). Profiling ----- When troubleshooting problems with CPU or memory the Go toolchain can be helpful. You can start InfluxDB with CPU and memory profiling turned on. For example: ```sh # start influx with profiling ./influxd -cpuprofile influxdcpu.prof -memprof influxdmem.prof # run queries, writes, whatever you're testing # Quit out of influxd and influxd.prof will then be written. # open up pprof to examine the profiling data. go tool pprof ./influxd influxd.prof # once inside run "web", opens up browser with the CPU graph # can also run "web " to zoom in. Or "list " to see specific lines ``` Note that when you pass the binary to `go tool pprof` *you must specify the path to the binary*. If you are profiling benchmarks built with the `testing` package, you may wish to use the [`github.com/pkg/profile`](github.com/pkg/profile) package to limit the code being profiled: ```go func BenchmarkSomething(b *testing.B) { // do something intensive like fill database with data... defer profile.Start(profile.ProfilePath("/tmp"), profile.MemProfile).Stop() // do something that you want to profile... } ``` Continuous Integration testing ----- InfluxDB uses CircleCI for continuous integration testing. CircleCI executes [test.sh](https://github.com/influxdata/influxdb/blob/master-1.x/test.sh), so you may do the same on your local development environment before creating a pull request. The `test.sh` script executes a test suite with 3 variants (standard 64 bit, 64 bit with race detection, TSI), each executes with a different arg, 0 through 2. Unless you know differently, `./test.sh 0` is probably all you need. Distributions ----- You can build distributions such as `.deb` and `.rpm` files using the scripts in the `releng` directory. For example, we'll build a distribution for 64-bit Linux. From the `influxdb` source directory, first build the source tarball: ```sh $ ./releng/source-tarball/build.bash -p `pwd` -s $COMMIT -b $BRANCH -v vX.Y.Z -o $OUTDIR/src ``` Then build the raw binaries: ```sh $ GOOS=linux GOARCH=amd64 ./releng/raw-binaries/build.bash -i $OUTDIR/src/influxdb-src-$COMMIT.tar.gz -o $OUTDIR/bin ``` Then build the full distribution using the source and binary tarballs: ```sh $ ./releng/packages/build.bash -s $OUTDIR/src/influxdb-src-$COMMIT.tar.gz -b $OUTDIR/bin/influxdb_bin_linux_amd64-$COMMIT.tar.gz -O linux -A amd64 -o $OUTDIR/dist ``` You should find your `.deb`, `.rpm`, and `.tar.gz` distribution files in the `$OUTDIR/dist` directory.