Skip to content
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

Refactor coordinator to support create and delete index events when different index types exist on cluster #272

Merged

Conversation

thalurur
Copy link
Contributor

Issue #, if available:
N/A

Description of changes:
Adding support for coordinator to correctly determine the indices that should be managed/delete currently managed indices by checking all of the metadata services to get the existing indices uuids and there existence in the cluster - rather than relying on cluster state metadata alone

CheckList:

  • Commits are signed per the DCO using --signoff

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.

@thalurur thalurur requested a review from a team February 23, 2022 19:27
@thalurur thalurur force-pushed the migrationFix branch 2 times, most recently from 19656a6 to 3b1a065 Compare February 23, 2022 21:34
…e events and sweep

Signed-off-by: Ravi Thaluru <thalurur@users.noreply.github.com>
@codecov-commenter
Copy link

codecov-commenter commented Feb 23, 2022

Codecov Report

Merging #272 (5441548) into development-extension (10d724b) will increase coverage by 0.04%.
The diff coverage is 79.16%.

Impacted file tree graph

@@                     Coverage Diff                     @@
##             development-extension     #272      +/-   ##
===========================================================
+ Coverage                    67.95%   67.99%   +0.04%     
- Complexity                    1718     1727       +9     
===========================================================
  Files                          250      251       +1     
  Lines                        10847    10917      +70     
  Branches                      1681     1686       +5     
===========================================================
+ Hits                          7371     7423      +52     
- Misses                        2561     2582      +21     
+ Partials                       915      912       -3     
Impacted Files Coverage Δ
...management/indexstatemanagement/MetadataService.kt 30.35% <0.00%> (-1.18%) ⬇️
...ment/indexstatemanagement/util/RestHandlerUtils.kt 63.33% <ø> (ø)
...ment/indexstatemanagement/IndexMetadataProvider.kt 65.62% <65.62%> (ø)
...pensearch/indexmanagement/IndexManagementPlugin.kt 91.77% <80.95%> (-1.22%) ⬇️
...nt/indexstatemanagement/ManagedIndexCoordinator.kt 65.31% <85.71%> (+0.24%) ⬆️
...ndexstatemanagement/DefaultIndexMetadataService.kt 100.00% <100.00%> (ø)
...sport/action/addpolicy/TransportAddPolicyAction.kt 51.82% <100.00%> (ø)
...nt/indexstatemanagement/model/destination/Chime.kt 40.90% <0.00%> (-13.64%) ⬇️
...ent/rollup/action/explain/ExplainRollupResponse.kt 75.00% <0.00%> (-10.00%) ⬇️
...earch/indexmanagement/transform/model/Transform.kt 86.00% <0.00%> (-1.00%) ⬇️
... and 6 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 10d724b...5441548. Read the comment docs.

@thalurur thalurur changed the title Refactor coordinator to support different index type create and delet… Refactor coordinator to support different index type create and delete events Feb 23, 2022
@thalurur thalurur changed the title Refactor coordinator to support different index type create and delete events Refactor coordinator to support create and delete index events when different index types exist on cluster Feb 23, 2022
Signed-off-by: Ravi Thaluru <thalurur@users.noreply.github.com>
val response: ClusterStateResponse = client.suspendUntil { client.admin().cluster().state(clusterStateRequest, it) }

response.state.metadata.indices.forEach {
// TODO waiting to add document count until it is definitely needed
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can do this elsewhere if you want, but it seems like it is safe to remove document count now, right?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lets check after all code is merged if we want to remove it or keep it - one concern is with evaluating conditions in transition which has the document count, I know we are skipping this evaluation at the moment in transition step

@downsrob
Copy link
Contributor

I noticed the failure, DeleteActionIT.test basic

java.lang.NullPointerException: null cannot be cast to non-null type kotlin.collections.Map<*, *>
...
 at org.opensearch.indexmanagement.indexstatemanagement.action.DeleteActionIT$test basic$4.invoke(DeleteActionIT.kt:64)

I had this flaky failure on another one of my development-extension PRs, we may have introduced some new flakiness in this test with our changes. I ran this IT(only this single test) 100 times yesterday and couldn't replicate the failure.

Signed-off-by: Ravi Thaluru <thalurur@users.noreply.github.com>
@thalurur
Copy link
Contributor Author

I noticed the failure, DeleteActionIT.test basic

java.lang.NullPointerException: null cannot be cast to non-null type kotlin.collections.Map<*, *>
...
 at org.opensearch.indexmanagement.indexstatemanagement.action.DeleteActionIT$test basic$4.invoke(DeleteActionIT.kt:64)

I had this flaky failure on another one of my development-extension PRs, we may have introduced some new flakiness in this test with our changes. I ran this IT(only this single test) 100 times yesterday and couldn't replicate the failure.

I see, let me check if there is something we are doing incorrect

Signed-off-by: Ravi Thaluru <thalurur@users.noreply.github.com>
Signed-off-by: Ravi Thaluru <thalurur@users.noreply.github.com>
@thalurur thalurur merged commit 2634d96 into opensearch-project:development-extension Feb 24, 2022
@thalurur thalurur deleted the migrationFix branch February 24, 2022 22:50
downsrob pushed a commit to downsrob/index-management that referenced this pull request Mar 8, 2022
Signed-off-by: Ravi Thaluru <thalurur@users.noreply.github.com>

Base commit to clean up old action interfaces and disabling all ISM related tests (opensearch-project#218)

Signed-off-by: Ravi Thaluru <thalurur@users.noreply.github.com>

Implement DeleteAcion using new interface (opensearch-project#221)

Signed-off-by: Ravi Thaluru <thalurur@users.noreply.github.com>

Adding base logic to transition step to enable policy execution (opensearch-project#223)

Signed-off-by: Ravi Thaluru <thalurur@users.noreply.github.com>

Support close action using new interface (opensearch-project#224)

* Implement close action

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Update functions

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Update AttemptCloseStepTests.kt

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Mark a test as private for now

Since TransitionAction is not yet implemented. Marking a test as private to avoid integ test failure

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Update CloseActionIT.kt

Signed-off-by: Annie Lee <leeyun@amazon.com>

Implement ReadOnlyAction using new interface (opensearch-project#227)

* Refactors ReadOnlyAction

Signed-off-by: Robert Downs <downsrob@amazon.com>

Implement ReadWriteAction using new interface (opensearch-project#228)

Signed-off-by: Clay Downs <downsrob@amazon.com>

Implement OpenAction using new interface (opensearch-project#230)

* Support open action

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Update AttemptOpenStep.kt

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Add close action test

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Add open action related tests

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Add open action test round trip

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Fix open action xcontent test

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Modify XContentTests for better comparison

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Update XContentTests.kt

Signed-off-by: Annie Lee <leeyun@amazon.com>

Implements RolloverAction with new interface, fixes default action retry commit (opensearch-project#231)

* Implements rollover action with new interface, fixes default action retry

Signed-off-by: Clay Downs <downsrob@amazon.com>

Support ReplicaCountAction using new interface (opensearch-project#233)

Signed-off-by: Annie Lee <leeyun@amazon.com>

Refactors rollup action and enables multi step actions (opensearch-project#235)

Signed-off-by: Robert Downs <downsrob@amazon.com>

Refactors Notification action with new interface (opensearch-project#238)

* Refactors notification action with new interface

Signed-off-by: Robert Downs <downsrob@amazon.com>

Upgrades detekt version, fixes flaky tests (opensearch-project#254)

* Upgrades detekt version to 1.17.1 (opensearch-project#252)

* Adds detekt ignores to not-yet-refactored files

* Fixes flaky rollup/transform explain IT (opensearch-project#247)

Signed-off-by: Robert Downs <downsrob@amazon.com>

Support force merge action using new interface (opensearch-project#256)

* Support force merge action

Signed-off-by: Annie Lee <leeyun@amazon.com>

Refactors Snapshot action to use new interface (opensearch-project#253)

* Refactors snapshot action to use new interface

Signed-off-by: Clay Downs <downsrob@amazon.com>

Support index priority action using new interface (opensearch-project#257)

Signed-off-by: Annie Lee <leeyun@amazon.com>

Support Allocation action using new interface (opensearch-project#246)

* Support Allocation action using new interface

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Pass in required parameter

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Update AttemptAllocationStep.kt

Adding correct const

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Update AttemptAllocationStep.kt

Typo in message

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Debug tests

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Update XContentTests.kt

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Revert "Debug tests"

This reverts commit d7123bd.

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Update IndexPolicyRequestTests.kt

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Support force merge action using new interface (opensearch-project#256)

* Support force merge action

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Update AllocationActionIT.kt

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Revert "Update IndexPolicyRequestTests.kt"

This reverts commit bd34e2e.

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Add debug log

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Remove debug log and change order of parameters

Signed-off-by: Annie Lee <leeyun@amazon.com>

* Update after comments

Fix order of include exclude parameter in parser
Add check to tests
Remove "Config" in message

Signed-off-by: Annie Lee <leeyun@amazon.com>

Merging changes from main branch (opensearch-project#259)

Signed-off-by: Ravi Thaluru <thalurur@users.noreply.github.com>

merge with main (opensearch-project#270)

Signed-off-by: Ravi Thaluru <thalurur@users.noreply.github.com>

Adds custom action parsing (opensearch-project#273)

* Adds custom action parsing logic

Signed-off-by: Robert Downs <downsrob@amazon.com>

Refactor coordinator to support create and delete index events when different index types exist on cluster (opensearch-project#272)

* Refactor coordinator to support different index type create and delete events and sweep

Signed-off-by: Ravi Thaluru <thalurur@users.noreply.github.com>

introducing custom uuid setting in SPI (opensearch-project#278)

* introducing custom uuid setting in SPI

Signed-off-by: Ravi Thaluru <thalurur@users.noreply.github.com>

Refactors the managed index runner to work with extensions (opensearch-project#262)

* Adds index creation date

Signed-off-by: Robert Downs <downsrob@amazon.com>

Adds NewClusterEventListeners and refactors Transition to work with custom actions

Signed-off-by: Robert Downs <downsrob@amazon.com>

Marks blocked actions list as deprecated

Signed-off-by: Clay Downs <89109232+downsrob@users.noreply.github.com>

Asserts the deprecation warning after adding to allow list in test

Signed-off-by: Robert Downs <downsrob@amazon.com>

Removes allow_list test

Signed-off-by: Robert Downs <downsrob@amazon.com>

* Fix additional rebase issues

Signed-off-by: Robert Downs <downsrob@amazon.com>

* Fixes failing tests

Signed-off-by: Robert Downs <downsrob@amazon.com>

* changes based on comments

Signed-off-by: Robert Downs <downsrob@amazon.com>

* Adds additional comments

Signed-off-by: Clay Downs <89109232+downsrob@users.noreply.github.com>

Makes rest APIs use new metadata service (opensearch-project#245)

* Makes rest API use new metadata service

Signed-off-by: Robert Downs <downsrob@amazon.com>

Adds missed flags (opensearch-project#286)

Signed-off-by: Clay Downs <89109232+downsrob@users.noreply.github.com>

Ports over show-applied-policies logic (opensearch-project#287)

Signed-off-by: Clay Downs <89109232+downsrob@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants