The Elasticsearch Go client is open source and we love to receive contributions from our community.
There are many ways to contribute, from writing tutorials or blog posts, improving the documentation, submitting bug reports and feature requests or writing code.
We do ask that you sign the Contiributor License Agreement before we can accept pull requests from you.
You need at least Go 1.13 to build the project.
Docker is used for some tests to spawn an Elasticsearch server.
The code for each API lives in individual files in the esapi
subfolder, this code is entirely generated by the subproject located in the internal/build
folder.
Please run the tests locally with make test
and make sure everything is in order.
If your changes address the generator, you can run the integration with the following command:
TEST_SUITE=free STACK_VERSION=8.0.0-SNAPSHOT WORKSPACE=/tmp/workspace/$STACK_VERSION .ci/run-tests
TEST_SUITE can either be free
or platinum
, STACK_VERSION reflects the targeted Elasticsearch version of the client.