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
trino-mongo-trino-coordinator-1 | + launcher_opts=(--etc-dir /etc/trino)
trino-mongo-trino-coordinator-1 | + grep -s -q node.id /etc/trino/node.properties
trino-mongo-trino-coordinator-1 | + launcher_opts+=("-Dnode.id=${HOSTNAME}")
trino-mongo-trino-coordinator-1 | + exec /usr/lib/trino/bin/launcher run --etc-dir /etc/trino -Dnode.id=trino-coordinator
trino-mongo-trino-coordinator-1 | Unrecognized VM option 'UseBiasedLocking'
trino-mongo-trino-coordinator-1 | Error: Could not create the Java Virtual Machine.
trino-mongo-trino-coordinator-1 | Error: A fatal exception has occurred. Program will exit.
trino-mongo-trino-coordinator-1 exited with code 1
Since the latest trino image doesn't support UseBiasedLocking anymore, this option should be removed.
By the way, the following is the default config for jvm.config in the latest image.
-server
-agentpath:/usr/lib/trino/bin/libjvmkill.so
-XX:InitialRAMPercentage=80
-XX:MaxRAMPercentage=80
-XX:G1HeapRegionSize=32M
-XX:+ExplicitGCInvokesConcurrent
-XX:+HeapDumpOnOutOfMemoryError
-XX:+ExitOnOutOfMemoryError
-XX:-OmitStackTraceInFastThrow
-XX:ReservedCodeCacheSize=256M
-XX:PerMethodRecompilationCutoff=10000
-XX:PerBytecodeRecompilationCutoff=10000
-Djdk.attach.allowAttachSelf=true
-Djdk.nio.maxCachedBufferSize=2000000
# Reduce starvation of threads by GClocker, recommend to set about the number of cpu cores (JDK-8192647)
-XX:+UnlockDiagnosticVMOptions
-XX:GCLockerRetryAllocationCount=32
The text was updated successfully, but these errors were encountered:
Since the latest trino image doesn't support
UseBiasedLocking
anymore, this option should be removed.By the way, the following is the default config for
jvm.config
in the latest image.The text was updated successfully, but these errors were encountered: