i was running a jruby something.rb script and suddenly it throws this

Error: Your application used more memory than the safety cap of 500m.
Specify -J-Xmx####m to increase it (#### = cap size in MB).
Specify -w for full OutOfMemoryError stack trace
link|improve this question

75% accept rate
2  
And your question was? – Ken White Nov 18 '09 at 19:21
feedback

2 Answers

up vote 2 down vote accepted

You are running out of memory (heap) reserved for Java virtual machine. Try to increase it in server startup with command line parameters or configuration files.

Something like this:

server_start_command -J-Xm900m

Or fix your ruby script to use less heap memory.

link|improve this answer
feedback

That would be -J-Xmx900m, which is basically just passing the -Xmx flag to the underlying JVM.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.