This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch branch-1.2-lts in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.2-lts by this push: new 4cb81093e5f [minor](be) set fd number check to 60000 for BE start script (#25078) (#31011) 4cb81093e5f is described below commit 4cb81093e5fc5babf804cd0594c887350c374270 Author: Mingyu Chen <morning...@163.com> AuthorDate: Fri Feb 9 17:37:51 2024 +0800 [minor](be) set fd number check to 60000 for BE start script (#25078) (#31011) bp #25078 --- bin/start_be.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/start_be.sh b/bin/start_be.sh index d0e4f6485e3..5f3fd479bae 100755 --- a/bin/start_be.sh +++ b/bin/start_be.sh @@ -72,8 +72,8 @@ if [[ "$(uname -s)" != 'Darwin' ]]; then fi MAX_FILE_COUNT="$(ulimit -n)" -if [[ "${MAX_FILE_COUNT}" -lt 65536 ]]; then - echo "Please set the maximum number of open file descriptors to be 65536 using 'ulimit -n 65536'." +if [[ "${MAX_FILE_COUNT}" -lt 60000 ]]; then + echo "Please set the maximum number of open file descriptors larger than 60000, eg: 'ulimit -n 60000'." exit 1 fi --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org