From 5a112ab212259e302a0b3f0bce05ed44f0f44ba5 Mon Sep 17 00:00:00 2001 From: Eric Liang Date: Thu, 19 Mar 2020 16:00:30 -0700 Subject: [PATCH] Remove object store memory cap (#7654) --- 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 5046ff720..d751d1baf 100644 --- a/python/ray/ray_constants.py +++ b/python/ray/ray_constants.py @@ -17,7 +17,7 @@ ID_SIZE = 20 # The default maximum number of bytes to allocate to the object store unless # overridden by the user. -DEFAULT_OBJECT_STORE_MAX_MEMORY_BYTES = 20 * 10**9 +DEFAULT_OBJECT_STORE_MAX_MEMORY_BYTES = 200 * 10**9 # The smallest cap on the memory used by the object store that we allow. # This must be greater than MEMORY_RESOURCE_UNIT_BYTES * 0.7 OBJECT_STORE_MINIMUM_MEMORY_BYTES = 75 * 1024 * 1024