Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Data] Remove ineffective retry code in
plan_read_op
(#47456)
Currently, Ray Data calls read tasks with retries. The intended purpose is to retry transient errors while reading data. https://github.com/ray-project/ray/blob/eda6d092973831523693be15535872ed8ea14fdd/python/ray/data/_internal/planner/plan_read_op.py#L103-L109 However, the code doesn't achieve the intended result because read tasks return generator objects, and Python will never raise runtime errors while returning a generator (Python might raise runtime errors when the programs iterates over the returned generator). --------- Signed-off-by: Balaji Veeramani <bveeramani@berkeley.edu>
- Loading branch information