blob: 7a2f72614312ad861a4f040f5423c8c393042686 [file]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
"""
Module to read a Paimon table into a Ray Dataset, by using the Ray Datasource API.
"""
import heapq
import itertools
import logging
from functools import partial
from typing import Iterable, List, Optional
import pyarrow
from packaging.version import parse
import ray
from ray.data.datasource import Datasource
from pypaimon.read.datasource.split_provider import SplitProvider
from pypaimon.read.split import Split
from pypaimon.schema.data_types import PyarrowFieldParser
logger = logging.getLogger(__name__)
# Ray version constants for compatibility
RAY_VERSION_SCHEMA_IN_READ_TASK = "2.48.0" # Schema moved from BlockMetadata to ReadTask
RAY_VERSION_PER_TASK_ROW_LIMIT = "2.52.0" # per_task_row_limit parameter introduced
class RayDatasource(Datasource):
"""Ray Data ``Datasource`` implementation for reading Paimon tables.
Holds a :class:`SplitProvider` that supplies the four planning artefacts
needed to build read tasks (table, splits, read_type, predicate). Two
provider implementations exist today:
* :class:`CatalogSplitProvider` — resolves a fully-qualified table
identifier through the catalog and runs the ``ReadBuilder`` plan.
Used by the public :func:`pypaimon.ray.read_paimon` facade.
* :class:`PreResolvedSplitProvider` — wraps an already-resolved
``(table, splits, read_type, predicate)`` tuple. Used by the legacy
``TableRead.to_ray()`` bridge to skip a second catalog round-trip.
Both providers are cheap to instantiate; they defer the catalog
round-trip and split planning until the first read.
"""
def __init__(self, split_provider: SplitProvider):
"""Initialize a RayDatasource.
Args:
split_provider: The :class:`SplitProvider` that supplies the
table, splits, read_type, and predicate. Construct one with
:class:`CatalogSplitProvider` (from a table identifier +
catalog options) or :class:`PreResolvedSplitProvider` (from
an already-resolved ``TableRead``).
"""
self._split_provider = split_provider
self._schema = None
def get_name(self) -> str:
return f"PaimonTable({self._split_provider.display_name()})"
def estimate_inmemory_data_size(self) -> Optional[int]:
splits = self._split_provider.splits()
if not splits:
return 0
total_size = sum(split.file_size for split in splits)
return total_size if total_size > 0 else None
@staticmethod
def _distribute_splits_into_equal_chunks(
splits: Iterable[Split], n_chunks: int
) -> List[List[Split]]:
"""
Implement a greedy knapsack algorithm to distribute the splits across tasks,
based on their file size, as evenly as possible.
"""
chunks = [list() for _ in range(n_chunks)]
chunk_sizes = [(0, chunk_id) for chunk_id in range(n_chunks)]
heapq.heapify(chunk_sizes)
# From largest to smallest, add the splits to the smallest chunk one at a time
for split in sorted(
splits, key=lambda s: s.file_size if hasattr(s, 'file_size') and s.file_size > 0 else 0, reverse=True
):
smallest_chunk = heapq.heappop(chunk_sizes)
chunks[smallest_chunk[1]].append(split)
split_size = split.file_size if hasattr(split, 'file_size') and split.file_size > 0 else 0
heapq.heappush(
chunk_sizes,
(smallest_chunk[0] + split_size, smallest_chunk[1]),
)
return chunks
def get_read_tasks(self, parallelism: int, **kwargs) -> List:
"""Return a list of read tasks that can be executed in parallel."""
from ray.data.datasource import ReadTask
from ray.data.block import BlockMetadata
per_task_row_limit = kwargs.get('per_task_row_limit', None)
if parallelism < 1:
raise ValueError(f"parallelism must be at least 1, got {parallelism}")
# Pull provider state into locals once: avoids capturing self in the
# ReadTask closure (see ray-project/ray#49107) and amortises the
# provider-method dispatch over all chunks.
table = self._split_provider.table()
predicate = self._split_provider.predicate()
read_type = self._split_provider.read_type()
nested_name_paths = self._split_provider.nested_name_paths()
splits = self._split_provider.splits()
limit = self._split_provider.limit()
if not splits:
return []
if self._schema is None:
self._schema = PyarrowFieldParser.from_paimon_schema(read_type)
schema = self._schema
if parallelism > len(splits):
parallelism = len(splits)
logger.warning(
f"Reducing the parallelism to {parallelism}, as that is the number of splits"
)
# Create a partial function to avoid capturing self in closure
# This reduces serialization overhead (see https://github.com/ray-project/ray/issues/49107)
def _get_read_task(
splits: List[Split],
table=table,
predicate=predicate,
read_type=read_type,
schema=schema,
limit=limit,
nested_name_paths=nested_name_paths,
) -> Iterable[pyarrow.Table]:
"""Read function that will be executed by Ray workers."""
from pypaimon.read.table_read import TableRead
# nested_name_paths must be forwarded so a nested-leaf projection
# widens to the parent struct and extracts the leaves; without it
# the worker treats the flattened leaf names as missing top-level
# columns and reads every projected leaf as NULL.
worker_table_read = TableRead(
table, predicate, read_type, limit=limit,
nested_name_paths=nested_name_paths)
batch_reader = worker_table_read.to_arrow_batch_reader(splits)
has_data = False
for batch in iter(batch_reader.read_next_batch, None):
if batch.num_rows == 0:
continue
has_data = True
table = pyarrow.Table.from_batches([batch])
if table.schema != schema:
table = table.cast(schema)
yield table
if not has_data:
yield pyarrow.Table.from_arrays(
[pyarrow.array([], type=field.type) for field in schema],
schema=schema
)
# Use partial to create read function without capturing self
get_read_task = partial(
_get_read_task,
table=table,
predicate=predicate,
read_type=read_type,
schema=schema,
limit=limit,
nested_name_paths=nested_name_paths,
)
read_tasks = []
# Distribute splits across tasks using load balancing algorithm
for chunk_splits in self._distribute_splits_into_equal_chunks(splits, parallelism):
if not chunk_splits:
continue
# Calculate metadata for this chunk
total_rows = 0
total_size = 0
for split in chunk_splits:
if predicate is None:
# Only estimate rows if no predicate (predicate filtering changes row count)
merged = split.merged_row_count()
row_count = merged if merged is not None else split.row_count
if row_count > 0:
total_rows += row_count
if hasattr(split, 'file_size') and split.file_size > 0:
total_size += split.file_size
input_files = list(itertools.chain.from_iterable(
split.file_paths
for split in chunk_splits
if hasattr(split, 'file_paths') and split.file_paths
))
# For PrimaryKey tables, we can't accurately estimate num_rows before merge
if table and table.is_primary_key_table:
num_rows = None # Let Ray calculate actual row count after merge
elif predicate is not None:
num_rows = None # Can't estimate with predicate filtering
else:
num_rows = total_rows if total_rows > 0 else None
size_bytes = total_size if total_size > 0 else None
metadata_kwargs = {
'num_rows': num_rows,
'size_bytes': size_bytes,
'input_files': input_files if input_files else None,
'exec_stats': None, # Will be populated by Ray during execution
}
if parse(ray.__version__) < parse(RAY_VERSION_SCHEMA_IN_READ_TASK):
metadata_kwargs['schema'] = schema
metadata = BlockMetadata(**metadata_kwargs)
read_fn = partial(get_read_task, chunk_splits)
read_fn.__name__ = "read_paimon_table"
read_task_kwargs = {
'read_fn': read_fn,
'metadata': metadata,
}
if parse(ray.__version__) >= parse(RAY_VERSION_SCHEMA_IN_READ_TASK):
read_task_kwargs['schema'] = schema
if parse(ray.__version__) >= parse(RAY_VERSION_PER_TASK_ROW_LIMIT) and per_task_row_limit is not None:
read_task_kwargs['per_task_row_limit'] = per_task_row_limit
read_tasks.append(ReadTask(**read_task_kwargs))
return read_tasks