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 FileMetadataShuffler #40341

Merged
merged 1 commit into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
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: 0 additions & 4 deletions python/ray/data/_default_config.py

This file was deleted.

4 changes: 0 additions & 4 deletions python/ray/data/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import ray
from ray._private.ray_constants import env_integer
from ray.data._default_config import DEFAULT_FILE_METADATA_SHUFFLER
from ray.util.annotations import DeveloperAPI
from ray.util.scheduling_strategies import SchedulingStrategyT

Expand Down Expand Up @@ -171,7 +170,6 @@ def __init__(
execution_options: "ExecutionOptions",
use_ray_tqdm: bool,
enable_progress_bars: bool,
file_metadata_shuffler: str,
enable_get_object_locations_for_metrics: bool,
):
"""Private constructor (use get_current() instead)."""
Expand Down Expand Up @@ -205,7 +203,6 @@ def __init__(
self.execution_options = execution_options
self.use_ray_tqdm = use_ray_tqdm
self.enable_progress_bars = enable_progress_bars
self.file_metadata_shuffler = file_metadata_shuffler
self.enable_get_object_locations_for_metrics = (
enable_get_object_locations_for_metrics
)
Expand Down Expand Up @@ -257,7 +254,6 @@ def get_current() -> "DataContext":
execution_options=ray.data.ExecutionOptions(),
use_ray_tqdm=DEFAULT_USE_RAY_TQDM,
enable_progress_bars=DEFAULT_ENABLE_PROGRESS_BARS,
file_metadata_shuffler=DEFAULT_FILE_METADATA_SHUFFLER,
enable_get_object_locations_for_metrics=DEFAULT_ENABLE_GET_OBJECT_LOCATIONS_FOR_METRICS, # noqa E501
)

Expand Down
33 changes: 0 additions & 33 deletions python/ray/data/datasource/file_metadata_shuffler.py

This file was deleted.

Loading