Files
opensearch-pyd/CONTRIBUTING.md
T

92 lines
3.9 KiB
Markdown
Raw Normal View History

2021-02-23 12:31:04 -06:00
# Contributing to the Python Elasticsearch Client
2019-12-17 22:15:52 +01:00
2013-09-26 11:34:15 +02:00
If you have a bugfix or new feature that you would like to contribute to
elasticsearch-py, please find or open an issue about it first. Talk about what
you would like to do. It may be that somebody is already working on it, or that
there are particular issues that you should know about before implementing the
change.
We enjoy working with contributors to get their code accepted. There are many
approaches to fixing a problem and it is important to find the best approach
before writing too much code.
2021-02-23 12:31:04 -06:00
## Running Elasticsearch locally
2021-02-23 12:31:04 -06:00
We've provided a script to start an Elasticsearch cluster of a certain version
found at `.ci/run-elasticsearch.sh`.
There are several environment variables that control integration tests:
- `PYTHON_VERSION`: Version of Python to use, defaults to `3.9`
- `PYTHON_CONNECTION_CLASS`: Connection class to use, defaults to `Urllib3HttpConnection`
- `STACK_VERSION`: Version of Elasticsearch to use. These should be
the same as tags of `docker.elastic.co/elasticsearch/elasticsearch`
such as `8.0.0-SNAPSHOT`, `7.x-SNAPSHOT`, etc. Defaults to the
same `*-SNAPSHOT` version as the branch.
2021-02-23 12:31:04 -06:00
**NOTE: You don't need to run the live integration tests for all changes. If
you don't have Elasticsearch running locally the integration tests will be skipped.**
2019-12-17 22:15:52 +01:00
## API Code Generation
All the API methods (any method in `elasticsearch.client` classes decorated
with `@query_params`) are actually auto-generated from the
[rest-api-spec](https://github.com/elastic/elasticsearch/tree/master/rest-api-spec/src/main/resources/rest-api-spec/api)
found in the `Elasticsearch` repository. Any changes to those methods should be
done either by submitting a PR to Elasticsearch itself (in case of adding or
modifying any of the API methods) or to the [Generate
2019-12-27 18:54:37 +01:00
Script](https://github.com/elastic/elasticsearch-py/blob/master/utils/generate_api.py).
2019-12-17 22:15:52 +01:00
To run the code generation make sure you have pre-requisites installed:
2021-02-23 12:31:04 -06:00
* by running `python -m pip install -e '.[develop]'`
2019-12-17 22:15:52 +01:00
* having the [elasticsearch](https://github.com/elastic/elasticsearch) repo
cloned on the same level as `elasticsearch-py` and switched to appropriate
version
Then you should be able to run the code generation by invoking:
```
$ python utils/generate-api.py 8.0.0-SNAPSHOT
2019-12-17 22:15:52 +01:00
```
## Contributing Code Changes
2013-09-26 11:34:15 +02:00
The process for contributing to any of the Elasticsearch repositories is similar.
1. Please make sure you have signed the [Contributor License
2015-03-23 15:25:45 -07:00
Agreement](http://www.elastic.co/contributor-agreement/). We are not
2013-09-26 11:34:15 +02:00
asking you to assign copyright to us, but to give us the right to distribute
your code without restriction. We ask this of all contributors in order to
assure our users of the origin and continuing existence of the code. You only
need to sign the CLA once.
2020-06-24 14:25:28 -05:00
2. Run the linter and test suite to ensure your changes do not break existing code:
2013-09-26 11:34:15 +02:00
2021-02-23 12:31:04 -06:00
```
# Install Nox for task management
$ python -m pip install nox
2020-06-24 14:25:28 -05:00
2021-02-23 12:31:04 -06:00
# Auto-format and lint your changes
$ nox -rs format
# Run the test suite
$ nox -rs test
```
2013-09-26 11:34:15 +02:00
3. Rebase your changes.
Update your local repository with the most recent code from the main
elasticsearch-py repository, and rebase your branch on top of the latest master
2021-02-23 12:31:04 -06:00
branch. We prefer your changes to be squashed into a single commit for easier
backporting.
2013-09-26 11:34:15 +02:00
4. Submit a pull request. Push your local changes to your forked copy of the
repository and submit a pull request. In the pull request, describe what your
changes do and mention the number of the issue where discussion has taken
place, eg “Closes #123″. Please consider adding or modifying tests related to
your changes.
2016-03-01 10:55:21 -05:00
Then sit back and wait. There will probably be a discussion about the pull
2013-09-26 11:34:15 +02:00
request and, if any changes are needed, we would love to work with you to get
your pull request merged into elasticsearch-py.