79313247

Date: 2024-12-28 05:11:50
Score: 1.5
Natty:
Report link

@stephen Thanks for your Reply

We have done successfully adding the JDK to the Ignite Image by following steps. Now able to take Thread dump and Heap dump

Following are the steps followed

  1. Download the binary from the official site of Apache Ignite Apache Link - Download
  2. Created a Docker File to build image with the following contents
     FROM openjdk:11
     ENV IGNITE_HOME=/opt/ignite/apache-ignite
     ENTRYPOINT ["/opt/ignite/apache-ignite/run.sh"]
     WORKDIR /opt/ignite
     COPY apache-ignite* apache-ignite 
     COPY run.sh /opt/ignite/apache-ignite/
     RUN chmod 777 -R /opt/ignite/apache-ignite
    
  1. Finally Able to Take Heap dump using jstack, jmap commands

Note: Cause : Apache Ignite Temurin Eclipse jdk RebuildVM information: OpenJDK Runtime Environment 11.0.21+9 Eclipse Adoptium OpenJDK 64-Bit Server VM 11.0.21+9
which didnt have those Heap/Thread Commands.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @stephen
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Karthik_Rajendiran