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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
