-
Notifications
You must be signed in to change notification settings - Fork 107
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
Fatal Error has been occurring fequently #308
Comments
Hi @Bhumika-Khunt, Your process might have reached |
I also see you might have a lot of Java threads: 32558
If it's true, this is too many for your host. It has only 4 cores. |
I agree with @eastig in that you probably ran out of memory mappings. Every Java thread will consume two memory mappings (for the stack itself and for its guard pages). You can see this in the memory mappings of your error file (which I suppose is truncated):
This corresponds to your 265k stack size (i.e. -Xss256K) 32558 * 2 gives 65116 mappings just for the threads and is already quite close to your 64k mappings limit. |
Hi, I am experiencing JVM crash frequently.
The text was updated successfully, but these errors were encountered: