-
Notifications
You must be signed in to change notification settings - Fork 25.1k
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
williamrandolph
wants to merge
5
commits into
elastic:main
Choose a base branch
from
williamrandolph:si/watcher-thread-pool-test
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
459b790
Get a watcher thread pool test running
williamrandolph 448312e
Add get and search to watcher thread pool test
williamrandolph ccabeb1
Merge branch 'main' into si/watcher-thread-pool-test
williamrandolph 74506d3
Add test for the triggered watches index
williamrandolph 985155a
Merge branch 'main' into si/watcher-thread-pool-test
elasticmachine File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
151 changes: 151 additions & 0 deletions
151
.../src/internalClusterTest/java/org/elasticsearch/xpack/watcher/WatcherThreadPoolTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
package org.elasticsearch.xpack.watcher; | ||
|
||
import org.elasticsearch.action.bulk.BulkResponse; | ||
import org.elasticsearch.common.settings.Settings; | ||
import org.elasticsearch.index.query.TermQueryBuilder; | ||
import org.elasticsearch.indices.SystemIndexThreadPoolTestCase; | ||
import org.elasticsearch.license.LicenseSettings; | ||
import org.elasticsearch.plugins.Plugin; | ||
import org.elasticsearch.test.store.MockFSIndexStore; | ||
import org.elasticsearch.test.transport.MockTransportService; | ||
import org.elasticsearch.xpack.core.XPackSettings; | ||
import org.elasticsearch.xpack.core.watcher.execution.Wid; | ||
import org.elasticsearch.xpack.core.watcher.transport.actions.QueryWatchesAction; | ||
import org.elasticsearch.xpack.core.watcher.transport.actions.get.GetWatchRequestBuilder; | ||
import org.elasticsearch.xpack.core.watcher.transport.actions.put.PutWatchRequestBuilder; | ||
import org.elasticsearch.xpack.core.watcher.watch.Watch; | ||
import org.elasticsearch.xpack.ilm.IndexLifecycle; | ||
import org.elasticsearch.xpack.watcher.condition.InternalAlwaysCondition; | ||
import org.elasticsearch.xpack.watcher.execution.TriggeredWatch; | ||
import org.elasticsearch.xpack.watcher.execution.TriggeredWatchStore; | ||
import org.elasticsearch.xpack.watcher.test.LocalStateWatcher; | ||
import org.elasticsearch.xpack.watcher.trigger.TriggerService; | ||
import org.elasticsearch.xpack.watcher.trigger.schedule.ScheduleTriggerEvent; | ||
|
||
import java.time.ZonedDateTime; | ||
import java.util.Collection; | ||
import java.util.HashSet; | ||
import java.util.List; | ||
import java.util.Set; | ||
|
||
import static org.elasticsearch.xpack.watcher.client.WatchSourceBuilders.watchBuilder; | ||
import static org.elasticsearch.xpack.watcher.input.InputBuilders.noneInput; | ||
import static org.elasticsearch.xpack.watcher.trigger.TriggerBuilders.schedule; | ||
import static org.elasticsearch.xpack.watcher.trigger.schedule.Schedules.interval; | ||
import static org.hamcrest.Matchers.equalTo; | ||
import static org.hamcrest.Matchers.hasSize; | ||
import static org.mockito.Mockito.mock; | ||
import static org.mockito.Mockito.when; | ||
|
||
public class WatcherThreadPoolTests extends SystemIndexThreadPoolTestCase { | ||
|
||
@Override | ||
protected Collection<Class<? extends Plugin>> nodePlugins() { | ||
return Set.of(LocalStateWatcher.class, IndexLifecycle.class); | ||
} | ||
|
||
@Override | ||
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 | ||
.put(XPackSettings.WATCHER_ENABLED.getKey(), true) | ||
.put(LicenseSettings.SELF_GENERATED_LICENSE_TYPE.getKey(), "trial") | ||
.put(XPackSettings.SECURITY_ENABLED.getKey(), false) | ||
.build(); | ||
} | ||
|
||
@Override | ||
protected Collection<Class<? extends Plugin>> getMockPlugins() { | ||
Set<Class<? extends Plugin>> plugins = new HashSet<>(super.getMockPlugins()); | ||
// security has its own transport service | ||
plugins.remove(MockTransportService.TestPlugin.class); | ||
// security has its own transport | ||
// we have to explicitly add it otherwise we will fail to set the check_index_on_close setting | ||
plugins.add(MockFSIndexStore.TestPlugin.class); | ||
return plugins; | ||
} | ||
|
||
/** | ||
* The main watcher index (.watches) can be tested through the watcher API | ||
*/ | ||
public void testWatcherThreadPools() { | ||
runWithBlockedThreadPools(() -> { | ||
{ | ||
// write | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. |
||
var response = new PutWatchRequestBuilder(client(), "test-watch").setSource( | ||
watchBuilder().trigger(schedule(interval("3m"))).input(noneInput()).condition(InternalAlwaysCondition.INSTANCE) | ||
).get(); | ||
assertTrue(response.isCreated()); | ||
} | ||
|
||
{ | ||
// get | ||
var response = new GetWatchRequestBuilder(client()).setId("test-watch").get(); | ||
assertThat(response.getId(), equalTo("test-watch")); | ||
} | ||
|
||
{ | ||
// search | ||
var request = new QueryWatchesAction.Request(null, null, new TermQueryBuilder("_id", "test-watch"), null, null); | ||
var response = client().execute(QueryWatchesAction.INSTANCE, request).actionGet(); | ||
assertThat(response.getWatchTotalCount(), equalTo(1L)); | ||
} | ||
}); | ||
} | ||
|
||
/** | ||
* This test uses an instance of TriggeredWatchStore directly because the public | ||
* API doesn't seem to return much information that indicates changes in the | ||
* underlying index. | ||
*/ | ||
public void testTriggeredWatchesIndex() { | ||
internalCluster().getInstances(TriggerService.class).forEach(TriggerService::pauseExecution); | ||
|
||
TriggeredWatchStore watchStore = internalCluster().getInstance(TriggeredWatchStore.class); | ||
|
||
List<Watch> fakeWatches = getFakeWatches(List.of("fake-patek-phillipe", "fake-tag-heuer")); | ||
List<Wid> wids = fakeWatches.stream().map(w -> new Wid(w.id(), ZonedDateTime.now())).toList(); | ||
|
||
runWithBlockedThreadPools(() -> { | ||
try { | ||
BulkResponse bulkResponse = watchStore.putAll( | ||
wids.stream() | ||
.map(w -> new TriggeredWatch(w, new ScheduleTriggerEvent(ZonedDateTime.now(), ZonedDateTime.now()))) | ||
.toList() | ||
); | ||
assertFalse(bulkResponse.hasFailures()); | ||
assertBusy(() -> { | ||
Collection<TriggeredWatch> triggeredWatches1 = watchStore.findTriggeredWatches(fakeWatches, clusterService().state()); | ||
assertThat(triggeredWatches1, hasSize(2)); | ||
}); | ||
|
||
wids.forEach(watchStore::delete); | ||
|
||
assertBusy(() -> { | ||
Collection<TriggeredWatch> triggeredWatches2 = watchStore.findTriggeredWatches(fakeWatches, clusterService().state()); | ||
assertThat(triggeredWatches2, hasSize(0)); | ||
}); | ||
} catch (Exception e) { | ||
throw new RuntimeException(e); | ||
} finally { | ||
internalCluster().getInstances(TriggerService.class).forEach(triggerService -> triggerService.start(List.of())); | ||
} | ||
}); | ||
} | ||
|
||
private static List<Watch> getFakeWatches(List<String> watchNames) { | ||
return watchNames.stream().map(n -> { | ||
Watch fakeWatch = mock(Watch.class); | ||
when(fakeWatch.id()).thenReturn(n); | ||
return fakeWatch; | ||
}).toList(); | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
todo: remove out of date comment