From df91d5c66f133071482410cb1dc0eed3ccd78e81 Mon Sep 17 00:00:00 2001 From: Keith Massey Date: Wed, 7 May 2025 09:49:20 -0500 Subject: [PATCH 1/2] Adding a known issue for watcher during upgrade --- docs/release-notes/known-issues.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/release-notes/known-issues.md b/docs/release-notes/known-issues.md index 56b135ea9ff69..9eca1009fab8c 100644 --- a/docs/release-notes/known-issues.md +++ b/docs/release-notes/known-issues.md @@ -27,3 +27,10 @@ This issue will be fixed in a future patch release (see [PR #126990](https://git ``` For information about editing your JVM settings, refer to [JVM settings](https://www.elastic.co/docs/reference/elasticsearch/jvm-settings). + +* Users upgrading from an Elasticsearch cluster that had previously been on a version between 7.10.0 and 7.12.1 may see that Watcher will not start on 9.x. The solution is to run the following commands in Kibana Dev Tools: + ``` + DELETE _index_template/.triggered_watches + DELETE _index_template/.watches + POST /_watcher/_start + ``` From b473fb112d453fd96e08a45c8b9d6b39e91b359a Mon Sep 17 00:00:00 2001 From: Keith Massey Date: Wed, 7 May 2025 10:00:23 -0500 Subject: [PATCH 2/2] mentioning curl --- docs/release-notes/known-issues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release-notes/known-issues.md b/docs/release-notes/known-issues.md index 9eca1009fab8c..c95f2a353bd06 100644 --- a/docs/release-notes/known-issues.md +++ b/docs/release-notes/known-issues.md @@ -28,7 +28,7 @@ This issue will be fixed in a future patch release (see [PR #126990](https://git For information about editing your JVM settings, refer to [JVM settings](https://www.elastic.co/docs/reference/elasticsearch/jvm-settings). -* Users upgrading from an Elasticsearch cluster that had previously been on a version between 7.10.0 and 7.12.1 may see that Watcher will not start on 9.x. The solution is to run the following commands in Kibana Dev Tools: +* Users upgrading from an Elasticsearch cluster that had previously been on a version between 7.10.0 and 7.12.1 may see that Watcher will not start on 9.x. The solution is to run the following commands in Kibana Dev Tools (or the equivalent using curl): ``` DELETE _index_template/.triggered_watches DELETE _index_template/.watches