-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
internal error in rnorm #181
Comments
Hello, can you re-run with |
OK, did that, perhaps I didn't do it quite right. Caused by: java.lang.OutOfMemoryError: Java heap space Frame(d=1): rnorm (called as: rnorm(n^2)) with frame slot contents: Frame(d=1): rnorm (called as: rnorm(n^2)) |
indeed not enough memory. I'll have to give the container and possibly also the JVM (via |
Just to make sure,, I added this to the container run command |
You need to pass it to the R command, example:
will set the max heap size to 8GB, which should be enough. Now the question is if you container will have 8GB of memory available, but then that's an issue of properly configuring the container/Docker. |
Ah, thanks. Do you have a suggestion for the docker side? I am doing this:
and still getting the killed message for the process inside the container. At least it isn't erring as before! |
This documentation: https://docs.docker.com/config/containers/resource_constraints tells me that you probably need something like
and then still run FastR with the |
The text was updated successfully, but these errors were encountered: