-XX:-UseGCOverheadLimit
-XX:ParallelGCThreads.
--
You received this message because you are subscribed to the Google Groups "Gremlin-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gremlin-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/f433d511-5a1a-4253-94e2-5edb66ba96d8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
mkdir -p -m a=rwx /data/databases
unzip -o $ZIP_NAME -d /data/databases/graphdb
chmod -R 0777 /data/databases/graphdb
/bin/bash /gremlin-server/bin/gremlin-server.sh conf/gremlin-server-neo4j.yaml
To unsubscribe from this group and stop receiving emails from it, send an email to gremlin-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/543fc6f7-65fe-417d-be56-9832c44e2e41%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hello @Robert,
Which parameters? I'm setting the following for JVM: -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -Xms128m -Xmx8G
And for the container, I'm running with reserved memory of 1GB.
To unsubscribe from this group and stop receiving emails from it, send an email to gremlin-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/811fae82-ef39-4c58-91c8-2e3842a32009%40googlegroups.com.
-XX:ParallelGCThreads` which brought the memory down which supports my theory.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/CALpEYoOicNN2a3RS7-rj9WSrGLbiFRhzfa3VERtYfo0k%3DH29Xw%40mail.gmail.com.
I think the main difference is in the number of cores. I see you did try using ``-XX:+PrintFlagsFinal` will tell you what the JVM has configured itself to use. It would be useful to see that output along with the entire gremlin-server start up log.
-XX:ParallelGCThreads` which brought the memory down which supports my theory.I think you were on the right track with some lib using up resources. However, it's not memory directly, but thread explosion (which in turn uses memory). If possible, just let java run unconstrained and see where it ends up at. That is, how much memory, how many threads.
Robert Dale
Apparently, ctrl-something sends... let me continue..If not, it would be interesting to see if you could isolate gremlin-server from neo4j and see what happens with each independently. Try gremlin-server with the default conf/gremlin-server.yaml. Also try starting neo4j standalone server with the memory parameters you have. Again, see where the memory and threads and up. You may need to take continuous dumps during startup.
Robert Dale
On Mon, Jun 12, 2017 at 1:24 PM, Robert Dale <rob...@gmail.com> wrote:
I think the main difference is in the number of cores. I see you did try using ``-XX:+PrintFlagsFinal` will tell you what the JVM has configured itself to use. It would be useful to see that output along with the entire gremlin-server start up log.
-XX:ParallelGCThreads` which brought the memory down which supports my theory.I think you were on the right track with some lib using up resources. However, it's not memory directly, but thread explosion (which in turn uses memory). If possible, just let java run unconstrained and see where it ends up at. That is, how much memory, how many threads.
Robert Dale