Skip to content

Commit 00731d6

Browse files
authored
fix(opensearch): Remove the performance analyzer plugin from the OpenSearch image (#1357)
* Remove the performance analyzer plugin from the OpenSearch image * fix changelog
1 parent ad2bbbf commit 00731d6

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ All notable changes to this project will be documented in this file.
1818
### Removed
1919

2020
- hive: Remove `4.0.0` ([#1340]).
21+
- opensearch: Remove the `performance-analyzer` plugin from the OpenSearch image ([#1357]).
2122

2223
[#1336]: https://github.com/stackabletech/docker-images/pull/1336
2324
[#1337]: https://github.com/stackabletech/docker-images/pull/1337
24-
[#1343]: https://github.com/stackabletech/docker-images/pull/1343
2525
[#1340]: https://github.com/stackabletech/docker-images/pull/1340
26+
[#1343]: https://github.com/stackabletech/docker-images/pull/1343
2627
[#1354]: https://github.com/stackabletech/docker-images/pull/1354
28+
[#1357]: https://github.com/stackabletech/docker-images/pull/1357
2729

2830
## [25.11.0] - 2025-11-07
2931

opensearch/Dockerfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ ARG OPENSEARCH_NEURAL_SEARCH_PLUGIN_VERSION
3030
ARG OPENSEARCH_NOTIFICATIONS_CORE_PLUGIN_VERSION
3131
ARG OPENSEARCH_NOTIFICATIONS_PLUGIN_VERSION
3232
ARG OPENSEARCH_OBSERVABILITY_PLUGIN_VERSION
33-
ARG OPENSEARCH_PERFORMANCE_ANALYZER_PLUGIN_VERSION
3433
ARG OPENSEARCH_REPORTS_SCHEDULER_PLUGIN_VERSION
3534
ARG OPENSEARCH_SEARCH_RELEVANCE_PLUGIN_VERSION
3635
ARG OPENSEARCH_SECURITY_ANALYTICS_PLUGIN_VERSION
@@ -128,7 +127,6 @@ rm -r jdk
128127
"org.opensearch.plugin:opensearch-notifications-core:${OPENSEARCH_NOTIFICATIONS_CORE_PLUGIN_VERSION}" \
129128
"org.opensearch.plugin:notifications:${OPENSEARCH_NOTIFICATIONS_PLUGIN_VERSION}" \
130129
"org.opensearch.plugin:opensearch-observability:${OPENSEARCH_OBSERVABILITY_PLUGIN_VERSION}" \
131-
"org.opensearch.plugin:performance-analyzer:${OPENSEARCH_PERFORMANCE_ANALYZER_PLUGIN_VERSION}" \
132130
"org.opensearch.plugin:opensearch-reports-scheduler:${OPENSEARCH_REPORTS_SCHEDULER_PLUGIN_VERSION}" \
133131
"org.opensearch.plugin:opensearch-search-relevance:${OPENSEARCH_SEARCH_RELEVANCE_PLUGIN_VERSION}" \
134132
"org.opensearch.plugin:opensearch-security-analytics:${OPENSEARCH_SECURITY_ANALYTICS_PLUGIN_VERSION}" \
@@ -152,9 +150,7 @@ find /stackable/opensearch-${PRODUCT_VERSION}/config -type f -exec chmod 660 {}
152150

153151
EOF
154152

155-
# The OpenSearch Performance Analyzer needs a JDK, not just a JRE.
156-
# With a JRE, the following exception is thrown:
157-
# java.lang.ClassNotFoundException: com.sun.tools.attach.VirtualMachine
153+
# The upstream image is built with a bundled JDK and not just a JRE, so we also ship OpenSearch with a JDK.
158154
FROM local-image/jdk-base AS final
159155

160156
ARG PRODUCT_VERSION

opensearch/boil-config.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jdk-base = "21"
2020
"opensearch-notifications-core-plugin-version" = "3.1.0.0"
2121
"opensearch-notifications-plugin-version" = "3.1.0.0"
2222
"opensearch-observability-plugin-version" = "3.1.0.0"
23-
"opensearch-performance-analyzer-plugin-version" = "3.1.0.0"
2423
"opensearch-reports-scheduler-plugin-version" = "3.1.0.0"
2524
"opensearch-search-relevance-plugin-version" = "3.1.0.0"
2625
"opensearch-security-analytics-plugin-version" = "3.1.0.0"

0 commit comments

Comments
 (0)