You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by GitBox <gi...@apache.org> on 2023/01/17 06:42:55 UTC

[GitHub] [rocketmq] carlvine500 commented on issue #5899: docker with lots of topic: No file descriptors available

carlvine500 commented on issue #5899:
URL: https://github.com/apache/rocketmq/issues/5899#issuecomment-1384904997

   we fix it after check the ulimit  .
   before fixed: 
   > ulimit -a
   ```
   ...
   -n: file descriptors               1024
   ...
   ```
   after fixed:
   ```
   ...
   -n: file descriptors               10240
   ...
   ```
   step1: /usr/lib/systemd/system/docker.service
   [Service]
   LimitNOFILE=infinity
   LimitNPROC=infinity
   LimitCORE=infinity
   step2: /etc/sysconfig/docker
   OPTIONS="--default-ulimit nofile=10240:10240"
   
   
   
   


-- 
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: commits-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org