Skip to content

Commit

Permalink
[Data] Remove unused force_reads parameter from `execute_to_iterato…
Browse files Browse the repository at this point in the history
…r` (ray-project#45487)

Signed-off-by: Balaji Veeramani <[email protected]>
Signed-off-by: gchurch <[email protected]>
  • Loading branch information
bveeramani authored and GabeChurch committed Jun 11, 2024
1 parent 347e993 commit a0d0fd1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/ray/data/_internal/plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,6 @@ def _get_num_rows_from_blocks_metadata(self, blocks: BlockList) -> Optional[int]
def execute_to_iterator(
self,
allow_clear_input_blocks: bool = True,
force_read: bool = False,
) -> Tuple[
Iterator[Tuple[ObjectRef[Block], BlockMetadata]],
DatasetStats,
Expand All @@ -484,7 +483,6 @@ def execute_to_iterator(
Args:
allow_clear_input_blocks: Whether we should try to clear the input blocks
for each operator.
force_read: Whether to force the read operator to fully execute.
Returns:
Tuple of iterator over output blocks and the executor.
Expand All @@ -496,7 +494,7 @@ def execute_to_iterator(
if self.has_computed_output():
return (
self.execute(
allow_clear_input_blocks, force_read
allow_clear_input_blocks, force_read=False
).iter_blocks_with_metadata(),
self._snapshot_stats,
None,
Expand Down

0 comments on commit a0d0fd1

Please sign in to comment.