Skip to content

Commit 84c7b51

Browse files
authored
Merge branch 'opensearch-project:main' into enhancement/notificationsapi
2 parents 796cd09 + 3763fdd commit 84c7b51

39 files changed

+2989
-336
lines changed

.github/workflows/coverage.yml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: API Coverage
2+
3+
on: [push, pull_request_target]
4+
5+
env:
6+
JAVA_VERSION: 11
7+
OPENSEARCH_INITIAL_ADMIN_PASSWORD: BobgG7YrtsdKf9M
8+
9+
jobs:
10+
coverage:
11+
permissions:
12+
pull-requests: write
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout Repo
16+
uses: actions/checkout@v4
17+
with:
18+
ref: ${{ github.event.pull_request.head.sha }}
19+
- name: Build and Run Docker Container
20+
run: |
21+
docker build coverage --tag opensearch-with-api-plugin
22+
docker run -d -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" -e OPENSEARCH_INITIAL_ADMIN_PASSWORD="$OPENSEARCH_INITIAL_ADMIN_PASSWORD" opensearch-with-api-plugin
23+
sleep 15
24+
- name: Display OpenSearch Info
25+
run: |
26+
curl -ks -u "admin:$OPENSEARCH_INITIAL_ADMIN_PASSWORD" https://localhost:9200/ | jq
27+
- name: Dump and Compare API
28+
run: |
29+
curl -ks -u "admin:$OPENSEARCH_INITIAL_ADMIN_PASSWORD" https://localhost:9200/_plugins/api | jq > OpenSearch.auto.openapi.json
30+
docker run --rm --mount type=bind,source=.,target=/specs openapitools/openapi-diff:latest /specs/OpenSearch.openapi.json /specs/OpenSearch.auto.openapi.json --json /specs/diff.json
31+
- name: Show Diff
32+
run: |
33+
echo "-------- Missing APIs"
34+
jq -r '.newEndpoints | group_by(.pathUrl)[] | "\(.[0].pathUrl): \([.[].method])"' diff.json
35+
echo "-------- Legacy APIs"
36+
jq -r '.missingEndpoints | group_by(.pathUrl)[] | "\(.[0].pathUrl): \([.[].method])"' diff.json
37+
- name: Gather Coverage
38+
id: coverage
39+
shell: bash
40+
run: |
41+
current=`jq -r '.paths | keys | length' OpenSearch.openapi.json`
42+
total=`jq -r '.paths | keys | length' OpenSearch.auto.openapi.json`
43+
percent=$((current * 100 / total))
44+
echo "API specs implemented for $current/$total ($percent%) APIs."
45+
cat >>"$GITHUB_OUTPUT" <<EOL
46+
current=$current
47+
total=$total
48+
percent=$percent
49+
EOL
50+
- uses: peter-evans/create-or-update-comment@v4
51+
if: github.event_name == 'pull_request_target'
52+
with:
53+
issue-number: ${{ github.event.number }}
54+
body: |
55+
API specs implemented for ${{ steps.coverage.outputs.current }}/${{ steps.coverage.outputs.total }} (${{ steps.coverage.outputs.percent }}%) APIs.

CLIENT_GENERATOR_GUIDE.md

+10-9
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,22 @@ In the [OpenAPI spec](./OpenSearch.openapi.json), this grouping is denoted by `x
2323
- If two operations have identical HTTP methods, but different paths: use the path that best matches the path parameters provided.
2424
- If two operations have identical path, but different HTTP methods:
2525
- GET/POST: if the request body is provided then use POST, otherwise use GET
26-
- PUT/POST: Either works, but PUT is preferred.
26+
- PUT/POST: Either works, but PUT is preferred when an optional path parameter is provided.
2727

2828
The psuedo-code that combines the `search` operations into a single API method is as follows:
2929
```python
3030
def search(self, index=None, body=None):
3131
if index is None:
32-
if body is None:
33-
return self.perform_request("GET", "/_search")
34-
else:
35-
return self.perform_request("POST", "/_search", body=body)
32+
path = "/_search"
3633
else:
37-
if body is None:
38-
return self.perform_request("GET", f"/{index}/_search")
39-
else:
40-
return self.perform_request("POST", f"/{index}/_search", body=body)
34+
path = f"/{index}/_search"
35+
36+
if body is None:
37+
method = "GET"
38+
else:
39+
method = "POST"
40+
41+
return self.perform_request(method, path, body=body)
4142
```
4243

4344
## Handling Path Parameters

DEVELOPER_GUIDE.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Popular IDEs for Smithy models include Visual Studio Code and IntelliJ, and they
5454
- [OpenAPI Specifications](https://plugins.jetbrains.com/plugin/14394-openapi-specifications)
5555

5656
## File Structure
57-
The OpenSearch API is composed of over 300 operations. These operations are grouped into API actions based on the functionality they provide. Each API action is later translated to an API method in each OpenSearch client. For example:
57+
The OpenSearch API is composed of over 300 operations. These operations are grouped into API actions based on the functionality they provide (This grouping is done through the `@xOperationGroup` Smithy trait). Each API action is later translated to an API method in each OpenSearch client. For example:
5858
- The `cat.health` action will turn into `client.cat.health()`
5959
- While the `index` action will turn into `client.index()`
6060

@@ -95,6 +95,9 @@ As mentioned in the previous section, each API action is composed of multiple op
9595
- `GET /{index}/_search`
9696
- `POST /{index}/_search`
9797

98+
To group these operations together in the `search` action, we mark them with the `@xOperationGroup` trait with the same value of `search`. Note that this trait tells the client generators that these operations serve identical purpose and should be grouped together in the same API method. The `xOperationGroup` trait also tells the generators the namespace and the name of the API method. For example, operations with `xOperationGroup` trait value of `indicies.create` will result in `client.indices.create()` method to be generated.
99+
100+
98101
### Defining operations
99102

100103
We name each operation using the following format `[ActionName]_[HttpVerb]_[PathParameters]`
@@ -194,16 +197,17 @@ structure Operation_Output {
194197

195198
## Defining Common Parameters
196199

197-
Common parameters are defined in the root folder, `model/`, and grouped by data-type in files of `common_<data_type>.smithy` format. There are a few things to note when defining common parameters:
200+
Common parameters that are used across OpenSearch namespaces are defined in the root folder, `model/`, and grouped by data-type in files of `common_<data_type>.smithy` format. There are a few things to note when defining global common parameters:
198201
- All path parameters should be prefixed with `Path` like `PathIndex` and `PathDocumentID`.
199202
- Smithy doesn't support _enum_ or _list_ as path parameters. We, therefore, have to define such parameters as _string_ and use `x-data-type` vendor extension to denote their actual types (More on this in the traits section).
200203
- Parameters of type `time` are defined as `string` and has `@pattern("^([0-9]+)(?:d|h|m|s|ms|micros|nanos)$")` trait to denote that they are in the format of `<number><unit>`. E.g. `1d`, `2h`, `3m`, `4s`, `5ms`, `6micros`, `7nanos`. We use `x-data-type: "time"` vendor extension for this type.
201204
- Path parameters that are defined as strings must be accompanied by a `@pattern` trait and should be default to `^[^_][\\d\\w-*]*$` to signify that they are not allowed to start with `_` to avoid URI Conflict errors.
202205
- The `@documentation`, `@default`, and `@deprecation` traits can later be overridden by the operations that use these parameters.
203206

207+
Common parameters that are used within a namespace, especially namespaces representing plugins like `security` are defined in the namespace folder (e.g. `model/security`)
208+
204209
## Smithy Traits
205210
We use Smithy traits extensively in this project to work around some limitations of Smithy and to deal with some quirks of the OpenSearch API. Here are some of the traits that you should be aware of:
206-
- `@vendorExtensions`: Used to add metadata that are not supported by Smithy. Check OpenAPI Vendor Extensions section for more details.
207211
- `@suppress(["HttpMethodSemantics.UnexpectedPayload"])`: Used in DELETE operations with request body to suppress the UnexpectedPayload error.
208212
- `@suppress(["HttpUriConflict"])`: Used to suppress the HttpUriConflict error that is thrown when two operations have conflicting URI. Unfortunately, this happens a lot in OpenSearch API. When in doubt, add this trait to the operation.
209213
- `@pattern("^(?!_|template|query|field|point|clear|usage|stats|hot|reload|painless)")`: Required for most Path parameters to avoid URI Conflict errors. This is often used in tandem with the @suppress trait above. To denote the actual pattern of the parameter, use `x-string-pattern` vendor extension.

0 commit comments

Comments
 (0)