Skip to content
Open
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
14 changes: 14 additions & 0 deletions python/ray/data/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2200,6 +2200,20 @@ py_test(
],
)

py_test(
name = "test_catalog",
size = "small",
srcs = ["tests/test_catalog.py"],
tags = [
"exclusive",
"team:data",
],
deps = [
":conftest",
"//:ray_lib",
],
)

py_test(
name = "test_iter_jax",
size = "small",
Expand Down
10 changes: 10 additions & 0 deletions python/ray/data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@
read_videos,
read_webdataset,
)
from ray.data.catalog import (
Catalog,
ReaderFormat,
ResolvedSource,
UnityCatalog,
)

# Module-level cached global functions for callable classes. It needs to be defined here
# since it has to be process-global across cloudpickled funcs.
Expand Down Expand Up @@ -192,6 +198,10 @@
"read_unity_catalog",
"read_videos",
"read_webdataset",
"Catalog",
"ReaderFormat",
"ResolvedSource",
"UnityCatalog",
"KafkaAuthConfig",
"Preprocessor",
]
231 changes: 0 additions & 231 deletions python/ray/data/_internal/datasource/uc_datasource.py

This file was deleted.

Loading
Loading