From 740bd006513d4383c235e4f9640851c828735762 Mon Sep 17 00:00:00 2001 From: Eric Liang Date: Sun, 2 Feb 2020 22:48:59 -0800 Subject: [PATCH] Use 100k for memory limit #7013) --- python/ray/ray_constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/ray_constants.py b/python/ray/ray_constants.py index f5fba1e17..790923c2f 100644 --- a/python/ray/ray_constants.py +++ b/python/ray/ray_constants.py @@ -59,7 +59,7 @@ DUPLICATE_REMOTE_FUNCTION_THRESHOLD = 100 # The maximum resource quantity that is allowed. TODO(rkn): This could be # relaxed, but the current implementation of the node manager will be slower # for large resource quantities due to bookkeeping of specific resource IDs. -MAX_RESOURCE_QUANTITY = 40000 +MAX_RESOURCE_QUANTITY = 100000 # Each memory "resource" counts as this many bytes of memory. MEMORY_RESOURCE_UNIT_BYTES = 50 * 1024 * 1024