So you want to contribute code to the OpenSearch Rust Client? Excellent! We're glad you're here. Here's what you need to do:
Fork opensearch-project/opensearch-rs and clone locally,
e.g. git clone https://github.com/[your username]/opensearch-rs.git
.
The following information will help in getting up and running:
The project makes use of the following, which should be installed
-
Docker is used to start instances of OpenSearch by using OpenSearch docker image.
-
Cargo make is used to define and configure a set of tasks, and run them as a flow. This helps with performing actions such as starting an OpenSearch instance for integration tests
Cargo make can be installed with
cargo install --force cargo-make
If you are running the tests in Docker, set vm.max_map_count
for your platform to allow OpenSearch to start.
Cargo make is used to define and configure a set of tasks, and run them as a flow. To see all of the OpenSearch category tasks defined
cargo make
The OpenSearch
category of steps are specifically defined for this project and are defined in
Makefile.toml.
-
Build all packages
cargo make build
-
Generate client from REST specs
cargo make generate-api
-
Run OpenSearch package tests
Optionally pass
STACK_VERSION
: OpenSearch version like1.0.0
or can be a snapshot release like1.x-SNAPSHOT
cargo make test --env STACK_VERSION=1.0.0
-
Run YAML tests
Optionally pass
STACK_VERSION
: OpenSearch version like1.0.0
or can be a snapshot release like1.x-SNAPSHOT
cargo make test-yaml --env STACK_VERSION=1.0.0
The workspace contains the following packages:
-
The client package crate. The client exposes all OpenSearch APIs as associated functions, either on the root client,
OpenSearch
, or on one of the namespaced clients, such asCat
,Indices
, etc. The namespaced clients are based on the grouping of APIs within the OpenSearch REST API specs from which much of the client is generated. All API functions areasync
only, and can beawait
ed. -
A small executable that downloads REST API specs from GitHub and generates much of the client package from the specs. The minimum REST API spec version compatible with the generator is
v7.4.0
.The
api_generator
package makes heavy use of thesyn
andquote
crates to generate Rust code from the REST API specs. Thequote!
macro is particularly useful as it accepts Rust code that can include placeholder tokens (prefixed with#
) that will be interpolated during expansion. Unlike procedural macros, the token stream returned by thequote!
macro can beto_string()
'ed and written to disk, and this is used to create much of the client scaffolding. -
A small executable that downloads YAML tests from GitHub and generates client tests from the YAML tests. The version of YAML tests to download are determined from the commit hash of a running Elasticsearch instance.
The
yaml_test_runner
package can be run withcargo make test-yaml
to run the generated client tests and we can pass environment variableSTACK_VERSION
to control the distribution and version.
-
Generate as much of the client as feasible from the REST API specs
The REST API specs contain information about
- the URL parts e.g.
{index}/{type}/_search
and variants - accepted HTTP methods e.g.
GET
,POST
- the URL query string parameters
- whether the API accepts a body
- the URL parts e.g.
-
Prefer generation methods that produce ASTs and token streams over strings. The
quote
andsyn
crates help -
Get it working, then refine/refactor
-
Start simple and iterate
-
Design of the API is conducive to ease of use
-
Asynchronous only
-
Control API invariants through arguments on API function. For example
client.delete_script(DeleteScriptParts::Id("script_id")) .send() .await?;
An id must always be provided for a delete script API call, so the
delete_script()
function must accept it as a value.
-
The repository adheres to the styling enforced by rustfmt
.
Rust code can be formatted using rustfmt
through cargo make.
To format all packages in a workspace, from the workspace root
cargo make format
It is strongly recommended to run this before opening a PR.
Clippy is a bunch of lints to catch common mistakes and improve your Rust code!
Run clippy before opening a PR
cargo make clippy
From Bryce Van Dyk's blog post, if wishing to use the MSVC debugger with Rust in VS code, which may be preferred on Windows
-
Install C/C++ VS Code extensions
-
Place the following in
.vscode/launch.json
in the project root{ "version": "0.2.0", "configurations": [ { "name": "Debug api_generator", "type": "cppvsdbg", "request": "launch", "program": "${workspaceFolder}/target/debug/api_generator.exe", "args": [], "stopAtEntry": false, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": false } ] }
-
Add
"debug.allowBreakpointsEverywhere": true
to VS code settings.json