Clip RLIMIT_NOFILE increase to avoid redis failing to start on Big Sur

This commit is contained in:
Eric Liang
2020-12-14 14:05:19 -08:00
committed by GitHub
parent 69b0bc2132
commit 1eb4ac12b1
+2
View File
@@ -608,6 +608,8 @@ def init(
import resource
soft, hard = resource.getrlimit(resource.RLIMIT_NOFILE)
if soft < hard:
# https://github.com/ray-project/ray/issues/12059
soft = max(soft, min(hard, 65536))
logger.debug("Automatically increasing RLIMIT_NOFILE to max "
"value of {}".format(hard))
try: