File size: 9,368 Bytes
6bff5d9 079782d 6bff5d9 079782d 6bff5d9 079782d 6bff5d9 f873f92 6bff5d9 f873f92 6bff5d9 079782d 6bff5d9 079782d 6bff5d9 079782d 6bff5d9 079782d 6bff5d9 5a60e93 6bff5d9 5a60e93 6bff5d9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | """TabularExecutor β runs compiled pandas/polars chain on a Parquet file.
Picks engine by file size:
β€ 100 MB β eager pandas
100 MB-1 GB β pyarrow with predicate pushdown
> 1 GB β polars lazy scan
Initial scope ships eager pandas only; the others are added when a real
file is too big.
"""
from __future__ import annotations
import asyncio
import io
import time
from collections.abc import Callable, Coroutine
from typing import Any
import pandas as pd
from ...catalog.models import Catalog, Source, Table
from ...storage.parquet import parquet_blob_name
from ...middlewares.logging import get_logger
from ..compiler.pandas import CompiledPandas, PandasCompiler
from ..ir.models import QueryIR
from .base import BaseExecutor, QueryResult
logger = get_logger("tabular_executor")
_AZ_BLOB_PREFIX = "az_blob://"
# Go's Supabase S3 data plane writes location_ref with this prefix instead of az_blob://.
# Both encode the same path structure after the prefix: {user_id}/{document_id}.
_OBJECT_STORAGE_PREFIX = "object_storage://"
_LOCATION_REF_PREFIXES = (_AZ_BLOB_PREFIX, _OBJECT_STORAGE_PREFIX)
_ROW_HARD_CAP = 10_000
class TabularExecutor(BaseExecutor):
"""Executes compiled pandas chain on a Parquet blob.
`fetch_blob` is injectable for tests β defaults to the storage backend
selected by `settings.storage_provider` (azure_blob | supabase_s3).
"""
def __init__(
self,
catalog: Catalog,
fetch_blob: Callable[[str], Coroutine[Any, Any, bytes]] | None = None,
) -> None:
self._catalog = catalog
self._compiler = PandasCompiler(catalog)
self._fetch_blob = fetch_blob or self._default_fetch_blob
@staticmethod
async def _default_fetch_blob(blob_name: str) -> bytes:
# Pick the storage backend by the same toggle the Go data plane uses.
# Blank/unknown falls back to Azure Blob (the pre-migration default).
from ...config.settings import settings
provider = (settings.storage_provider or "").strip().lower()
if provider == "supabase_s3":
from ...storage.object_storage import object_storage
return await object_storage.download_file(blob_name)
from ...storage.az_blob.az_blob import blob_storage
return await blob_storage.download_file(blob_name)
async def run(self, ir: QueryIR) -> QueryResult:
started = time.perf_counter()
table_name = ""
source_name = ""
try:
source, table = self._lookup(ir)
table_name = table.name
source_name = source.name
if source.source_type != "tabular":
raise ValueError(
f"TabularExecutor cannot run on source_type={source.source_type!r}; "
"expected 'tabular'"
)
compiled = self._compiler.compile(ir)
rendered_query = _render_query(ir, {c.column_id: c for c in table.columns})
logger.info("pandas query", query=rendered_query)
blob_name = _resolve_blob_name(source, table)
blob_bytes = await self._fetch_blob(blob_name)
result_df = await asyncio.to_thread(_load_and_apply, blob_bytes, compiled)
truncated = len(result_df) > _ROW_HARD_CAP
capped = result_df.head(_ROW_HARD_CAP)
columns = compiled.output_columns
rows = capped.to_dict(orient="records")
elapsed_ms = int((time.perf_counter() - started) * 1000)
logger.info(
"tabular query complete",
source_id=ir.source_id,
rows=len(rows),
truncated=truncated,
elapsed_ms=elapsed_ms,
)
return QueryResult(
source_id=ir.source_id,
backend="tabular",
columns=columns,
rows=rows,
row_count=len(rows),
truncated=truncated,
elapsed_ms=elapsed_ms,
table_id=ir.table_id,
table_name=table_name,
source_name=source_name,
query=rendered_query, # rendered pandas chain, for traceability (KM-691)
)
except Exception as e:
elapsed_ms = int((time.perf_counter() - started) * 1000)
logger.error(
"tabular executor failed",
source_id=ir.source_id,
error=str(e),
elapsed_ms=elapsed_ms,
)
return QueryResult(
source_id=ir.source_id,
backend="tabular",
elapsed_ms=elapsed_ms,
error=str(e),
table_id=ir.table_id,
table_name=table_name,
source_name=source_name,
)
# ------------------------------------------------------------------
# Helpers
# ------------------------------------------------------------------
def _lookup(self, ir: QueryIR) -> tuple[Source, Table]:
source = next(
(s for s in self._catalog.sources if s.source_id == ir.source_id), None
)
if source is None:
raise ValueError(f"source_id {ir.source_id!r} not in catalog")
table = next(
(t for t in source.tables if t.table_id == ir.table_id), None
)
if table is None:
raise ValueError(f"table_id {ir.table_id!r} not in source {ir.source_id!r}")
return source, table
# ---------------------------------------------------------------------------
# Module-level helpers (pure functions β easier to test in isolation)
# ---------------------------------------------------------------------------
def _resolve_blob_name(source: Source, table: Table) -> str:
"""Map source.location_ref + table β the Parquet blob name to download.
Delegates to ``parquet_service.parquet_blob_name`` so the same naming
convention (and ``_safe_sheet_name`` sanitization) is used on both the
write side (ingestion) and the read side (query execution).
CSV / Parquet β ``{user_id}/{document_id}.parquet``
XLSX β ``{user_id}/{document_id}__{safe_sheet}.parquet``
(writer always uploads with sheet suffix for XLSX,
regardless of sheet count β see processing_service
`_build_excel_documents`)
XLSX is detected via ``Source.name`` (the original filename). This relies
on the upload pipeline preserving the file extension, which it does today
because `Document.filename` is set once at upload and never renamed.
"""
matched_prefix = next(
(p for p in _LOCATION_REF_PREFIXES if source.location_ref.startswith(p)),
None,
)
if matched_prefix is None:
raise ValueError(
f"TabularExecutor expects 'az_blob://...' or 'object_storage://...' "
f"location_ref, got {source.location_ref!r}"
)
path = source.location_ref[len(matched_prefix):]
parts = path.split("/", 1)
if len(parts) != 2 or not parts[0] or not parts[1]:
raise ValueError(f"Malformed location_ref: {source.location_ref!r}")
user_id, document_id = parts
is_xlsx = source.name.lower().endswith(".xlsx")
sheet_name = table.name if is_xlsx else None
return parquet_blob_name(user_id, document_id, sheet_name)
def _render_value(v: object, cap: int = 5) -> str:
"""Render a filter value for the human-readable query string, truncating a
long list so a value-handoff `in`/`not_in` set doesn't dump thousands of ids
into the logs AND the user-facing traceability record (KM-691)."""
if isinstance(v, list | tuple) and len(v) > cap:
head = ", ".join(repr(x) for x in v[:cap])
return f"[{head}, β¦ +{len(v) - cap} more]"
return repr(v)
def _render_query(ir: QueryIR, cols_by_id: dict) -> str:
from ..ir.models import AggSelect, ColumnSelect
parts = ["df"]
if ir.filters:
conds = " & ".join(
f'(df["{cols_by_id[f.column_id].name}"] {f.op} {_render_value(f.value)})'
for f in ir.filters
)
parts.append(f"[{conds}]")
aggs = [s for s in ir.select if isinstance(s, AggSelect)]
cols = [s for s in ir.select if isinstance(s, ColumnSelect)]
if aggs:
col_names = [cols_by_id[s.column_id].name for s in cols]
if ir.group_by:
group_names = [cols_by_id[g].name for g in ir.group_by]
parts.append(f'.groupby({group_names})')
for agg in aggs:
col = f'["{cols_by_id[agg.column_id].name}"]' if agg.column_id else ""
fn_map = {"count": "count()", "count_distinct": "nunique()", "sum": "sum()", "avg": "mean()", "min": "min()", "max": "max()"}
parts.append(f'{col}.{fn_map.get(agg.fn, agg.fn + "()")}')
elif cols:
col_names = [cols_by_id[s.column_id].name for s in cols]
parts.append(f'[{col_names}]')
if ir.limit:
parts.append(f'.head({ir.limit})')
return "".join(parts)
def _load_and_apply(blob_bytes: bytes, compiled: CompiledPandas) -> pd.DataFrame:
"""Load Parquet bytes into a DataFrame and apply the compiled op chain."""
df = pd.read_parquet(io.BytesIO(blob_bytes))
return compiled.apply(df)
|