Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Data] Remove unused force_reads parameter from execute_to_iterator #45487

Merged
merged 1 commit into from
May 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading