-
Notifications
You must be signed in to change notification settings - Fork 118
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
Adds an alias action (#35) #575
Conversation
Signed-off-by: Megha Goyal <goyamegh@amazon.com>
src/main/kotlin/org/opensearch/indexmanagement/indexstatemanagement/action/AliasAction.kt
Show resolved
Hide resolved
I think the alias action should only operator on the managed index. e.g. we have a policy1 with alias action, apply policy1 to index1, this alias action cannot change the alias to other indices than index1. We can see there're use cases some actions (shrink, rollover, rollup) create new index and we would like some alias to be add to the new index. To do that, we can do it at least in 2 ways:
And we should block |
val fieldName = xcp.currentName() | ||
xcp.nextToken() | ||
when (fieldName) { | ||
ACTIONS -> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Block remove_index
action
Block index
indices
fields if user provided
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added checks in initiate function to raise Illegal argument exception.
// Take the indices that were set to be updated on the alias action and join them into a single string | ||
// So we don't have to pass each one individually into the script service to be compiled | ||
val indices = it.indices().joinToString(",") | ||
// Compile them so the user can use the current dynamic index name in the name such as "{{ctx.index}}" in the static policy | ||
val indicesScript = Script(ScriptType.INLINE, Script.DEFAULT_TEMPLATE_LANG, indices, mapOf()) | ||
val compiledIndices = compileTemplate(indicesScript, context.metadata, indices, context.scriptService) | ||
// Split them back into individual index names and set back on the AliasActions request | ||
val splitIndices = Strings.splitStringByCommaToArray(compiledIndices) | ||
it.indices(*splitIndices) | ||
request.addAliasAction(it) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Populate the index
to be the managed index itself
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed the logic for user input and using the managed index itself.
Codecov Report
@@ Coverage Diff @@
## main #575 +/- ##
============================================
+ Coverage 75.55% 75.77% +0.21%
- Complexity 2478 2516 +38
============================================
Files 319 322 +3
Lines 14633 14703 +70
Branches 2255 2263 +8
============================================
+ Hits 11056 11141 +85
+ Misses 2312 2287 -25
- Partials 1265 1275 +10
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
@@ -21,6 +21,8 @@ class AliasAction( | |||
|
|||
init { | |||
require(actions.isNotEmpty()) { "At least one alias action needs to be specified." } | |||
require(!actions.any { it.actionType() == IndicesAliasesRequest.AliasActions.Type.REMOVE_INDEX }) { "Remove_index is not allowed here." } | |||
require(actions.all { it.indices().isNullOrEmpty() }) { "Alias actions are only allowed on managed indices." } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to verify both indices and index to be empty.
And change the message to be "Alias action can only work on its applied index so don't accept index/indices parameter."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- This is not needed as we store them as a string list in the indices field only. Refer this line: https://github.com/opensearch-project/OpenSearch/blob/4d045a164e12a382881140e32f9285a3224fecc7/server/src/main/java/org/opensearch/action/admin/indices/alias/IndicesAliasesRequest.java#L360
- Changed the message.
src/main/kotlin/org/opensearch/indexmanagement/indexstatemanagement/action/AliasAction.kt
Outdated
Show resolved
Hide resolved
src/main/kotlin/org/opensearch/indexmanagement/indexstatemanagement/action/AliasActionParser.kt
Outdated
Show resolved
Hide resolved
private var info: Map<String, Any>? = null | ||
|
||
override suspend fun execute(): Step { | ||
val context = this.context ?: return this |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any specific reason, we are using this.context
instead of using a (final) val param like the rest of code ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private fun handleException(e: Exception, indexName: String) { | ||
val message = getFailedMessage(indexName) | ||
logger.error(message, e) | ||
stepStatus = StepStatus.FAILED | ||
val mutableInfo = mutableMapOf("message" to message) | ||
val errorMessage = e.message | ||
if (errorMessage != null) mutableInfo["cause"] = errorMessage | ||
info = mutableInfo.toMap() | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This code is repeated in 20+ files, can extract this and put it in the BaseClass / Utility function ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Found one more file, but if we extract it, then we need to return info and step status as new objects, as they are getting modified in the function. Keeping it the same for now, but will figure out a better way to handle this and raise another PR.
...in/kotlin/org/opensearch/indexmanagement/indexstatemanagement/step/alias/AttemptAliasStep.kt
Outdated
Show resolved
Hide resolved
...in/kotlin/org/opensearch/indexmanagement/indexstatemanagement/step/alias/AttemptAliasStep.kt
Outdated
Show resolved
Hide resolved
The The question from @bowenlan-amzn has still not been addressed Most often, the alias action will work in conjunction with another action (As multiple use-cases have also pointed), and in cases the new index is created, the ISM workflow must provide in-built support to add alias-ing to the new index (some options were laid out in Bowen's comment). |
If an index is under a rollup target alias, ISM policy should not remove this alias from it. Is this what you are thinking about? We can add an issue to enhance this later. @khushbr |
Signed-off-by: Megha Goyal <goyamegh@amazon.com>
That is fine by me. @goyamegh Let us open an issue to track the |
} | ||
} | ||
|
||
fun `test adding alias to index using ctx`() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's different between this one and the first test test adding alias to index
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was added earlier when the changes were intended for any index, not just managed index. As discussed, feel free to remove this as it is redundant now.
* Adds an alias action (#35) Signed-off-by: Megha Goyal <goyamegh@amazon.com> * Enabling alias action on managed indices only * Add checks to aid debugging and testing steps for using alias action Signed-off-by: Megha Goyal <goyamegh@amazon.com> Signed-off-by: Megha Goyal <goyamegh@amazon.com> (cherry picked from commit 50072af)
* Adds an alias action (#35) Signed-off-by: Megha Goyal <goyamegh@amazon.com> * Enabling alias action on managed indices only * Add checks to aid debugging and testing steps for using alias action Signed-off-by: Megha Goyal <goyamegh@amazon.com> Signed-off-by: Megha Goyal <goyamegh@amazon.com> (cherry picked from commit 50072af)
@goyamegh @bowenlan-amzn : I have a query here with respect to dynamic aliases. If the policy is used for multiple index name patterns, can this feature be used for dynamically adding an alias using the mustache template (for example by passing |
@madhukarmmallia-plivo |
…opensearch-project#589) * Adds an alias action (opensearch-project#35) Signed-off-by: Megha Goyal <goyamegh@amazon.com> Co-authored-by: Megha Goyal <56077967+goyamegh@users.noreply.github.com>
…opensearch-project#589) * Adds an alias action (opensearch-project#35) Signed-off-by: Megha Goyal <goyamegh@amazon.com> Co-authored-by: Megha Goyal <56077967+goyamegh@users.noreply.github.com> Signed-off-by: Ronnak Saxena <ronsax@amazon.com>
Signed-off-by: Megha Goyal goyamegh@amazon.com
Issue #, if available:
#35 (#304)
Description of changes:
Adds support for an alias action in ISM.
Gives complete support for all update alias API options by reusing the alias actions parser internally and explicitly not defining the mappings in our config index.
Coming from the GitHub feature request, the use cases people asked for:
This should be easily doable with the Alias action, just have a state that gets transitioned into after the index is 30 days old (or 30 days rollover age) and then remove the alias.
Should be possible, the newly created index can remove the alias from all search-index-* indices and then add the alias it itself in a single call. The main thing would be knowing when ingestion finished for the new index.. which you could just use some absolute time using the transition condition if you know it only takes x amount of time.
CheckList:
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.
Testing steps:
1.1. Create an ISM policy
1.2 Create an index template to enable the policy on:
1.3 Change the cluster settings to trigger jobs every minute:
1.4 Create a new index:
1.5 Add a document to the index to trigger the job:
1.6 The first job will trigger the rollover action and a new index will be created.
1.7 Add another document to the two indices like step 1.5.
1.8 The new job will cause the second index to point to the log alias and the older one will be removed due to alias action.
1.9. Verify these steps using alias and index API:
2.1 Create the following policy:
2.2 This will create an Illegal argument exception with the error: "Remove_index is not allowed here."