Skip to content

Commit 05a9d6c

Browse files
srinathk10dstrodtman
authored andcommitted
[Train] Enable debug logging; fix default actor_locality_enabled (#56632)
- Enable RAY_DATA_DEBUG_RESOURCE_MANAGER for debugging resource manager. - Enable Ray Data progress bar. - Set actor_locality_enabled to True --------- Signed-off-by: Srinath Krishnamachari <srinath.krishnamachari@anyscale.com> Signed-off-by: Srinath Krishnamachari <68668616+srinathk10@users.noreply.github.com> Signed-off-by: Douglas Strodtman <douglas@anyscale.com>
1 parent da3a4d3 commit 05a9d6c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

release/release_tests.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2176,6 +2176,11 @@
21762176

21772177
cluster:
21782178
byod:
2179+
runtime_env:
2180+
# Enable verbose stats for resource manager
2181+
- RAY_DATA_DEBUG_RESOURCE_MANAGER=1
2182+
2183+
# 'type: gpu' means: use the 'ray-ml' image.
21792184
type: gpu
21802185
cluster_compute: compute_configs/compute_gpu_4x4_aws.yaml
21812186

release/train_tests/benchmark/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ class RecsysConfig(TaskConfig):
4141
class RayDataConfig(DataLoaderConfig):
4242
# NOTE: Optional[int] doesn't play well with argparse.
4343
local_buffer_shuffle_size: int = -1
44-
enable_operator_progress_bars: bool = False
44+
enable_operator_progress_bars: bool = True
4545
ray_data_prefetch_batches: int = 4
4646
ray_data_override_num_blocks: int = -1
4747
locality_with_output: bool = False
48-
actor_locality_enabled: bool = False
48+
actor_locality_enabled: bool = True
4949
enable_shard_locality: bool = True
5050
preserve_order: bool = False
5151
ray_data_pin_memory: bool = False

0 commit comments

Comments
 (0)