[rllib] Enable object store memory limit by default (#5534)

This commit is contained in:
Eric Liang
2019-08-26 01:37:28 -07:00
committed by GitHub
parent 7d28bbbdbb
commit 97ccd75952
8 changed files with 25 additions and 19 deletions
+1 -1
View File
@@ -183,7 +183,7 @@ class ResourceSpec(
if memory is None:
memory = (avail_memory - object_store_memory - (redis_max_memory
if is_head else 0))
if memory < 500e6 and memory < 0.05 * system_memory:
if memory < 100e6 and memory < 0.05 * system_memory:
raise ValueError(
"After taking into account object store and redis memory "
"usage, the amount of memory on this node available for "