You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: encountered environment variables that are no longer supported
Use jvm.options or ES_JAVA_OPTS to configure the JVM
ES_HEAP_SIZE=192m: set -Xms192m and -Xmx192m in jvm.options or add "-Xms192m -Xmx192m" to ES_JAVA_OPTS
Same issue. Executors do not support the JAVA_OPTS environment variable but the framework will only launch if JAVA_OPTS is set. So basically this framework doesn't work.
I'm seeing the following
Error: encountered environment variables that are no longer supported
Use jvm.options or ES_JAVA_OPTS to configure the JVM
ES_HEAP_SIZE=192m: set -Xms192m and -Xmx192m in jvm.options or add "-Xms192m -Xmx192m" to ES_JAVA_OPTS
Despite my Marahon task does not have those:
"env": {
"JAVA_OPTS":"-Xms128m -Xmx256m",
"ES_JAVA_OPTS":"-Xms128m -Xmx256m"
}
Scheduler runs ok, the error is only found on executor nodes.
I think that the problem is here
elasticsearch/scheduler/src/main/java/org/apache/mesos/elasticsearch/scheduler/configuration/ExecutorEnvironmentalVariables.java
Line 21 in 8eb2497
Please advice.
The text was updated successfully, but these errors were encountered: