Release Notes / Version 10.2107
Table Of ContentsJava 11 host restriction for remote debugging has been removed
With Java 9+, remote debugging (with JDWP) is restricted to local connections by default. For the CoreMedia applications that are started in development mode (with JDWP activated), this host restriction has been removed by setting the address for the transport mechanism to
*:PORT
.
(CMS-14770)
Kill Solr container if it runs out of memory
In order to let the container management restart solr when it ran out of memory, we need to kill the process. To disable adding the default JVM switch to the SOLR_OPTS, you can set the environment variable
EXIT_ON_OOM=false
. Make sure to set this variable to
false
, if you already have set
-XX:+ExitOnOutOfMemoryError
in your container management or
Dockerfile
or remove your config after the update.
For AMP releases this flag will be set to false.
(CMS-14450)
Add service_start attribute to blueprint-solr cookbook
The newly added attribute toggle \{{node
'blueprint'
'solr'
'start_service'
}} will, when set to false prevent the solr from being started. This is similar to the feature within the
blueprint-tomcat
or
blueprint-spring-boot
cookbook
(CMS-11089)