Commit 56c7f0d
[Data] Return 'inf' for max object store memory usage (ray-project#59751)
ray-project#59412 updated the reservation
resource allocator to cap resource allocations based on the resources
returned by `min_max_resource_usage`. The problem is that running tasks
can produce any amounts of data, so it doesn't make sense to cap by
`obj_store_mem_max_pending_output_per_task * concurrency`.
This PR fixes that issue by setting the max object store memory usage to
'inf'.
Signed-off-by: Balaji Veeramani <bveeramani@berkeley.edu>
Signed-off-by: jasonwrwang <jasonwrwang@tencent.com>1 parent e0acb7a commit 56c7f0d
File tree
3 files changed
+10
-4
lines changed- python/ray/data
- _internal/execution/operators
- tests
3 files changed
+10
-4
lines changedLines changed: 3 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
484 | 484 | | |
485 | 485 | | |
486 | 486 | | |
487 | | - | |
| 487 | + | |
| 488 | + | |
| 489 | + | |
488 | 490 | | |
489 | 491 | | |
490 | 492 | | |
| |||
Lines changed: 3 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
188 | 188 | | |
189 | 189 | | |
190 | 190 | | |
191 | | - | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
192 | 194 | | |
193 | 195 | | |
194 | 196 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
680 | 680 | | |
681 | 681 | | |
682 | 682 | | |
683 | | - | |
| 683 | + | |
684 | 684 | | |
685 | | - | |
| 685 | + | |
| 686 | + | |
| 687 | + | |
686 | 688 | | |
687 | 689 | | |
688 | 690 | | |
| |||
0 commit comments