nickva commented on issue #5544:
URL: https://github.com/apache/couchdb/issues/5544#issuecomment-2894877281

   @idea-christian  `Too many processes` indicates you've hit the Erlang 
default process limit. If you have the memory and the CPU capacity (and it 
looks like you do) you can increase the limit.
   
   The default is a bit low `131072` (though recent Erlang releases bumped that 
up to 1M or so).
   
   You can increase the limit in the vm.args file add this to it:
   `+P1000000`
   
   The limit will be the next power of 2 higher than that:
   
   ```
   1> erlang:system_info(process_limit).
   1048576
   ```
   
   In production with larger clusters we use an even higher limit. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to