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

[BUG] Performance Analyzer webserver on port 9600 not responding to any API calls (caused by JDK upgrade?) #545

Open
borutlukic opened this issue Mar 28, 2024 · 7 comments · May be fixed by #579
Labels
bug Something isn't working

Comments

@borutlukic
Copy link

What is the bug?
Opensearch performance analyzer app throws exception on startup and is not working.

How can one reproduce the bug?
Steps to reproduce the behavior:

  1. Run opensearch from docker image: opensearchproject/opensearch:2.12.0 expose port 9600
  2. GET localhost:9600/_plugins/_performanceanalyzer/metrics
  3. Hangs indefinitely (aka, no response is ever returned)

What is the expected behavior?
Expected is that the webserver API on port 9600 returns a response.

What is your host/environment?

  • OS: opensearchproject/opensearch:2.12.0
  • Version 2.12.0
  • Plugins

Do you have any additional context?
See logs/PerformanceAnalyzer.log and notice:

Exception in thread "main" java.lang.IllegalArgumentException: cannot add context to list
        at jdk.httpserver/sun.net.httpserver.ContextList.add(ContextList.java:37)
        at jdk.httpserver/sun.net.httpserver.ServerImpl.createContext(ServerImpl.java:276)
        at jdk.httpserver/sun.net.httpserver.HttpServerImpl.createContext(HttpServerImpl.java:74)
        at jdk.httpserver/sun.net.httpserver.HttpServerImpl.createContext(HttpServerImpl.java:39)
        at org.opensearch.performanceanalyzer.PerformanceAnalyzerApp.createClientServers(PerformanceAnalyzerApp.java:354)
        at org.opensearch.performanceanalyzer.PerformanceAnalyzerApp.createClientServers(PerformanceAnalyzerApp.java:319)
        at org.opensearch.performanceanalyzer.PerformanceAnalyzerApp.main(PerformanceAnalyzerApp.java:112)

Checking the source code it is clear that the same handler is added twice, so the createContext functions throws an exception on the second attempt.
Code from PerformanceAnalyzerApp.java:

            httpServer.createContext(Util.METRICS_QUERY_URL, queryMetricsRequestHandler);
            httpServer.createContext(
                    Util.LEGACY_OPENDISTRO_METRICS_QUERY_URL, queryMetricsRequestHandler);

The Util.METRICS_QUERY_URL and Util.LEGACY_OPENDISTRO_METRICS_QUERY_URL are equal.

@borutlukic borutlukic added bug Something isn't working untriaged labels Mar 28, 2024
@tophercullen
Copy link

tophercullen commented Apr 15, 2024

Ran into this issue with the official docker containers. Tried 2.12 and 2.13, same problem. PA isn't usable. 2.11.1 appears to work fine.

I feel like this is a config issue, but I don't know where. Its hard to imagine that no one has even tried to use PA in two whole releases.

@borutlukic
Copy link
Author

It is not a configuration issue. The code is broken. I think it started showing because JRE has been upgraded in 2.12 container. The old JRE had a bug in httpServer and it did not perform as per documentation so the above code worked. But in latest JRE they have fixed the issue, and adding same context twice will now throw exception on the second attempt. The 2 variables that define the context are hardcoded to same value in code and not configurable.

@ronnybremer
Copy link

same issue in OpenSearch 2.13, docker compose

@tophercullen
Copy link

tophercullen commented May 13, 2024

@ronnybremer @borutlukic As remediation for the JDK 21 issue with opensearch, we downgraded the JDK version used in the docker image to 17. Performance Analyzer now appears to work....?

Example Dockerfile

FROM  docker.io/opensearchproject/opensearch:2.12.0

USER 0
RUN dnf upgrade -y --refresh && dnf install -y java-17-amazon-corretto
USER 1000
ENV JAVA_HOME=/usr

@dblock
Copy link
Member

dblock commented Jun 24, 2024

Catch All Triage - 1 2 3 4 5 6

@dblock dblock changed the title [BUG] Performance Analyzer webserver on port 9600 not responding to any API calls [BUG] Performance Analyzer webserver on port 9600 not responding to any API calls (caused by JDK upgrade?) Jun 24, 2024
@kranthikirang
Copy link

This seems to be an issue in 2.16.0 as well. Any workarounds? or when can this fix is going to be available to OSS stream? Appreciate your help on this.

@rishabh6788
Copy link

rishabh6788 commented Sep 9, 2024

Having the same exact issue in OS-2.15, resolved by setting java to jdk-17.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
6 participants