-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create Index using context #15290
Create Index using context #15290
Conversation
❌ Gradle check result for a1b5efa: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
❌ Gradle check result for e2363aa: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
600acc1
to
1c53a98
Compare
1c53a98
to
79352e1
Compare
❌ Gradle check result for 600acc1: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
79352e1
to
1cc4f20
Compare
❌ Gradle check result for 1c53a98: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
7884e1d
to
dbc11bc
Compare
❌ Gradle check result for 1cc4f20: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
❌ Gradle check result for 79352e1: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
❌ Gradle check result for 7884e1d: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
❌ Gradle check result for dbc11bc: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
❌ Gradle check result for 7c2914d: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
❌ Gradle check result for 4e85e28: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
1b8fdf4
to
6a6b51f
Compare
❌ Gradle check result for 1b8fdf4: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
❌ Gradle check result for 6a6b51f: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
❌ Gradle check result for 2f9a2cd: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
Signed-off-by: Mohit Godwani <[email protected]>
Signed-off-by: Mohit Godwani <[email protected]>
Please don't forget to add context to https://github.com/opensearch-project/opensearch-api-specification. |
Yes, I'm making the changes for the same :) |
❕ Gradle check result for 247e240: UNSTABLE Please review all flaky tests that succeeded after retry and create an issue if one does not already exist to track the flaky failure. |
❕ Gradle check result for 9bc165c: UNSTABLE Please review all flaky tests that succeeded after retry and create an issue if one does not already exist to track the flaky failure. |
Signed-off-by: Mohit Godwani <[email protected]>
❕ Gradle check result for 58955b9: UNSTABLE Please review all flaky tests that succeeded after retry and create an issue if one does not already exist to track the flaky failure. |
Signed-off-by: Mohit Godwani <[email protected]>
e3f8a38
into
opensearch-project:main
The backport to
To backport manually, run these commands in your terminal: # Navigate to the root of your repository
cd $(git rev-parse --show-toplevel)
# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/OpenSearch/backport-2.x 2.x
# Navigate to the new working tree
pushd ../.worktrees/OpenSearch/backport-2.x
# Create a new branch
git switch --create backport/backport-15290-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 e3f8a38601efb0b8269e7099fa10adb7c8191505
# Push it to GitHub
git push --set-upstream origin backport/backport-15290-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/OpenSearch/backport-2.x Then, create a pull request where the |
* Create Index using context Signed-off-by: Mohit Godwani <[email protected]>
* Create Index using context Signed-off-by: Mohit Godwani <[email protected]>
* Create Index using context Signed-off-by: Mohit Godwani <[email protected]>
* Create Index using context Signed-off-by: Mohit Godwani <[email protected]>
* Create Index using context Signed-off-by: Mohit Godwani <[email protected]>
* Create Index using context (#15290) Signed-off-by: Mohit Godwani <[email protected]>
* Create Index using context Signed-off-by: Mohit Godwani <[email protected]>
* Create Index using context Signed-off-by: Mohit Godwani <[email protected]>
* Create Index using context Signed-off-by: Mohit Godwani <[email protected]>
* Create Index using context Signed-off-by: Mohit Godwani <[email protected]>
Description
In 2.16, we enabled functionality to use context to create index templates. This goes a step ahead, and allows to create index using the context directly specified in index creation.
Related Issues
Resolves #12683
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.