mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
Fix impala stress test (#5596)
This commit is contained in:
parent
04b869678e
commit
d80dda9f59
1 changed files with 2 additions and 2 deletions
|
@ -152,14 +152,14 @@ COMMON_CONFIG = {
|
||||||
# Object store memory to reserve for the trainer process. Being large
|
# Object store memory to reserve for the trainer process. Being large
|
||||||
# enough to fit a few copies of the model weights should be sufficient.
|
# enough to fit a few copies of the model weights should be sufficient.
|
||||||
# This is enabled by default since models are typically quite small.
|
# 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
|
# Heap memory to reserve for each worker. Should generally be small unless
|
||||||
# your environment is very heavyweight.
|
# your environment is very heavyweight.
|
||||||
"memory_per_worker": 0,
|
"memory_per_worker": 0,
|
||||||
# Object store memory to reserve for each worker. This only needs to be
|
# 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
|
# 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.
|
# 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 ===
|
# === Execution ===
|
||||||
# Number of environments to evaluate vectorwise per worker.
|
# Number of environments to evaluate vectorwise per worker.
|
||||||
|
|
Loading…
Add table
Reference in a new issue