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

Add thread pool tests for watcher system indices #107591

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

williamrandolph
Copy link
Contributor

Watcher is a system index, so gets, searches, and writes should be directed to system thread pools. This new integration test verifies that some basic Watcher operations succeed when user thread pools are completely blocked, using the test case class added in #106915.

I borrowed from AbstractWatcherIntegrationTestCase to get this working, so let me know if I got anything wrong in the borrowing.

@williamrandolph williamrandolph added >test Issues or PRs that are addressing/adding tests :Data Management/Watcher v8.15.0 labels Apr 17, 2024
@williamrandolph williamrandolph requested a review from a team April 17, 2024 20:42
@elasticsearchmachine elasticsearchmachine added the Team:Data Management Meta label for data/management team label Apr 17, 2024
@elasticsearchmachine
Copy link
Collaborator

Pinging @elastic/es-data-management (Team:Data Management)

public void testWatcherThreadPools() {
runWithBlockedThreadPools(() -> {
{
// write
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Are there any Watcher actions that will trigger a bulk request? That's a case that I don't have covered.

@williamrandolph williamrandolph requested a review from a team April 17, 2024 20:44
@masseyke
Copy link
Member

Do you also want to be testing that watcher history gets written in this case? Or are you just concerned with the .watches index here?

@williamrandolph
Copy link
Contributor Author

@masseyke .watcher-history isn't a system index (we want users to be able to interact with it), but .triggered-watches is a system index, and I should probably add something checking that case.

@williamrandolph
Copy link
Contributor Author

I've added a test verifying that the triggered watches service can write and search data when thread pools are blocked. I couldn't make anything work with the public API, so I used an instance of the service directly.

@williamrandolph williamrandolph changed the title Add thread pool test for watcher index Add thread pool tests for watcher system indices Apr 18, 2024
protected Settings nodeSettings(int nodeOrdinal, Settings otherSettings) {
return Settings.builder()
.put(super.nodeSettings(nodeOrdinal, otherSettings))
// if watcher is running, it may try to use blocked threads
Copy link
Contributor Author

Choose a reason for hiding this comment

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

todo: remove out of date comment

@dakrone
Copy link
Member

dakrone commented Aug 29, 2024

@elasticmachine update branch

@dakrone
Copy link
Member

dakrone commented Aug 29, 2024

@elasticmachine ok to test

@dakrone
Copy link
Member

dakrone commented Aug 29, 2024

buildkite test this

@lukewhiting lukewhiting removed the request for review from a team February 3, 2025 09:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
:Data Management/Watcher Team:Data Management Meta label for data/management team >test Issues or PRs that are addressing/adding tests v9.1.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants