[Data] Disable filter when no valid checkpoint#60095
[Data] Disable filter when no valid checkpoint#60095wxwmd wants to merge 7 commits intoray-project:masterfrom
Conversation
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
|
@owenowenisme hi, please check this when you have time |
Signed-off-by: xiaowen.wxw <wxw403883@alibaba-inc.com> do not filter input block when no checkpoint Signed-off-by: xiaowen.wxw <wxw403883@alibaba-inc.com> do not filter input block when no checkpoint Signed-off-by: xiaowen.wxw <wxw403883@alibaba-inc.com> do not filter input block when no checkpoint Signed-off-by: xiaowen.wxw <wxw403883@alibaba-inc.com>
1df29e0 to
2cd9eb6
Compare
36b5c99 to
567dea5
Compare
Signed-off-by: xiaowen.wxw <wxw403883@alibaba-inc.com>
567dea5 to
47a1cf9
Compare
Signed-off-by: xiaowen.wxw <wxw403883@alibaba-inc.com>
3266064 to
d363090
Compare
…ble_filtering_when_ckpt_unavailable
|
ready to be reviewed |
|
This pull request has been automatically marked as stale because it has not had You can always ask for help on our discussion forum or Ray's public slack channel. If you'd like to keep this open, just leave any comment, and the stale label will be removed. |
|
still ready to be reviewed. comment to remove the stale label |
| # [https://github.com/ray-project/ray/issues/54520] | ||
| checkpoint_ds.context.checkpoint_config = None | ||
|
|
||
| if checkpoint_ds.count() == 0: |
There was a problem hiding this comment.
nit: since we use Optional[ObjectRef[Block]] here, why not just use if ckpt_filter is not None to replace _checkpoint_existed ? This flag is a bit redundant.
|
merged into #60294 |
I am using Raydata's Checkpoint.
When rayjob runs for the first time,
checkpoint_pathis an empty directory. At this point, there is no need to filter theinput_block; it can be returned directly.By doing this, when a rayjob runs for the first time(that is, without checkpoint):

When a rayjob runs for the second time(with checkpoint):
