Fix impala stress test (#5596)

This commit is contained in:
Philipp Moritz 2019-08-31 01:20:53 -07:00
parent 04b869678e
commit d80dda9f59

View file

@ -152,14 +152,14 @@ COMMON_CONFIG = {
# Object store memory to reserve for the trainer process. Being large
# enough to fit a few copies of the model weights should be sufficient.
# This is enabled by default since models are typically quite small.
"object_store_memory": 200 * 1024 * 1024,
"object_store_memory": 0,
# Heap memory to reserve for each worker. Should generally be small unless
# your environment is very heavyweight.
"memory_per_worker": 0,
# Object store memory to reserve for each worker. This only needs to be
# large enough to fit a few sample batches at a time. This is enabled
# by default since it almost never needs to be larger than ~200MB.
"object_store_memory_per_worker": 200 * 1024 * 1024,
"object_store_memory_per_worker": 0,
# === Execution ===
# Number of environments to evaluate vectorwise per worker.