Skip to content

Commit

Permalink
Create and apply config on the Python-side of the builder
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Chia committed Aug 16, 2024
1 parent 75f8959 commit 291189b
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
1 change: 1 addition & 0 deletions daft/daft.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -1619,6 +1619,7 @@ class LogicalPlanBuilder:
) -> LogicalPlanBuilder: ...
@staticmethod
def table_scan(scan_operator: ScanOperatorHandle) -> LogicalPlanBuilder: ...
def with_planning_config(self, daft_planning_config: PyDaftPlanningConfig) -> LogicalPlanBuilder: ...
def select(self, to_select: list[PyExpr]) -> LogicalPlanBuilder: ...
def with_columns(self, columns: list[PyExpr]) -> LogicalPlanBuilder: ...
def exclude(self, to_exclude: list[str]) -> LogicalPlanBuilder: ...
Expand Down
25 changes: 24 additions & 1 deletion daft/logical/builder.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
from __future__ import annotations

import functools
import pathlib
from typing import TYPE_CHECKING
from typing import TYPE_CHECKING, Callable

from daft.context import get_context
from daft.daft import (
CountMode,
FileFormat,
Expand All @@ -27,6 +29,25 @@
)


def _apply_daft_planning_config_to_initializer(classmethod_func: Callable[..., LogicalPlanBuilder]):
"""Decorator to be applied to any @classmethod instantiation method on LogicalPlanBuilder
This decorator ensures that the current DaftPlanningConfig is applied to the instantiated LogicalPlanBuilder
"""

@functools.wraps(classmethod_func)
def wrapper(cls: type[LogicalPlanBuilder], *args, **kwargs):
instantiated_logical_plan_builder = classmethod_func(cls, *args, **kwargs)

# Parametrize the builder with the current DaftPlanningConfig
inner = instantiated_logical_plan_builder._builder
inner = inner.with_planning_config(get_context().daft_planning_config)

return cls(inner)

return wrapper


class LogicalPlanBuilder:
"""
A logical plan builder for the Daft DataFrame.
Expand Down Expand Up @@ -87,6 +108,7 @@ def optimize(self) -> LogicalPlanBuilder:
return LogicalPlanBuilder(builder)

@classmethod
@_apply_daft_planning_config_to_initializer
def from_in_memory_scan(
cls,
partition: PartitionCacheEntry,
Expand All @@ -106,6 +128,7 @@ def from_in_memory_scan(
return cls(builder)

@classmethod
@_apply_daft_planning_config_to_initializer
def from_tabular_scan(
cls,
*,
Expand Down
8 changes: 8 additions & 0 deletions src/daft-plan/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ use daft_scan::{file_format::FileFormat, PhysicalScanInfo, Pushdowns, ScanOperat
use {
crate::sink_info::{CatalogInfo, IcebergCatalogInfo},
crate::source_info::InMemoryInfo,
common_daft_config::PyDaftPlanningConfig,
daft_core::python::schema::PySchema,
daft_dsl::python::PyExpr,
daft_scan::python::pylib::ScanOperatorHandle,
Expand Down Expand Up @@ -551,6 +552,13 @@ impl PyLogicalPlanBuilder {
Ok(LogicalPlanBuilder::table_scan(scan_operator.into(), None)?.into())
}

pub fn with_planning_config(
&self,
daft_planning_config: PyDaftPlanningConfig,
) -> PyResult<Self> {
Ok(self.builder.with_config(daft_planning_config.config).into())
}

pub fn select(&self, to_select: Vec<PyExpr>) -> PyResult<Self> {
Ok(self.builder.select(pyexprs_to_exprs(to_select))?.into())
}
Expand Down

0 comments on commit 291189b

Please sign in to comment.