gammacomputer
gammacomputer
Here is the complete logs I got in case it's useful: ``` WARNING: Unknown module: jdk.internal.jvmstat specified to --add-exports WARNING: package jdk.internal.access not in java.base WARNING: An illegal reflective access...
As [mentionned](https://github.com/apache/ignite/issues/11877#issue-2853851199) by [Wolfteam](https://github.com/Wolfteam), it seems that the issue is more likely caused by OPTION_LIBS=ignite-rest-http than CONFIG_URI, as the error is triggered with the following dockerfile: ``` FROM apacheignite/ignite:2.17.0 ENV...
I tried the following dockerfile but there is the same issue: ``` FROM apacheignite/ignite:2.17.0 RUN cp -r ${IGNITE_HOME}/libs/optional/ignite-rest-http ${IGNITE_HOME}/libs/ RUN wget -P ${IGNITE_HOME}/libs/ https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.18.1/jackson-core-2.18.1.jar ENV USER_LIBS=${IGNITE_HOME}/libs/ ```
The following workaround is working: ``` FROM apacheignite/ignite:2.17.0 RUN cp -r ${IGNITE_HOME}/libs/optional/ignite-rest-http ${IGNITE_HOME}/libs/ RUN cp -r ${IGNITE_HOME}/libs/optional/ignite-json ${IGNITE_HOME}/libs/ ``` Thanks a lot @NSAmelchev !
I'm not sure if I should close the ticket or not ? Maybe this behavior is expected to avoid having to load too much things ? Maybe what could be...
Hello ! @NSAmelchev found a workaround that requires to build an image from apacheignite/ignite:2.17.0 https://github.com/apache/ignite/issues/11886