adam9899 / Issues

14 stars 0 forks source link

cascading worldgen-lag causing crash repeatedly #50

Open Tyrokas opened 4 years ago

Tyrokas commented 4 years ago

seems like my server is crashing everytime sombody is close to a certain village. server spits out warnings about the mods : -Ruins Mod -Fast Leaf Decay -Tinkers Alloying Addon -Loot Games which are loading new chunks and causing cascading worldgen lag.

I counted 13 warnings in total. then the server shuts down. crash-2019-12-27_21.25.01-server.txt

matthew-williams commented 4 years ago

Same issues. my server has 16GB dedicated and is maxing out on 16 GB used with 25GB in swap. Major memory leak.

https://imgur.com/a/UAGfq29


Server start Script

#!/bin/sh

# Read the settings.
. ./settings.sh

# Start the server.
start_server() {
    java -server -Xms${MIN_RAM} -Xmx${MAX_RAM} ${JAVA_PARAMETERS} -jar ${SERVER_JAR} nogui
}

echo "Starting MC Eternal Server..."
start_server
pause

settings.sh

# Don't edit these values unless you know what you are doing.
export SERVER_JAR="forge-1.12.2-14.23.5.2847-universal.jar"

# You can edit these values if you wish.
export MIN_RAM="1G"
export MAX_RAM="16G"
export JAVA_PARAMETERS="-XX:+UseG1GC -Dsun.rmi.dgc.server.gcInterval=2147483646 -XX:+UnlockExperimentalVMOptions -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M -Dfml.readTimeout=1$

I am able to play but barely and its all "Can't keep up messages" and Fast Leaf Decay/issues listed above.