Skip to content
Conference Open access

Beyond Context Windows: Data Transformations at Scale with LLMs

2026 · Proceedings of the 15th International Conference on Data Science, Technology and Applications · 0 citations · 33 references

TL;DR

A framework for scalable, dataset-scale LLM-based data transformation that processes data row-by-row in batches over lazily evaluated, distributed dataframes, enabling LLM-based transformations on arbitrarily large datasets without loading them into memory.

Abstract

: Applying large language models (LLMs) to real-world tabular datasets at scale is subject to a fundamental mismatch between model context limits and enterprise data size. Existing approaches address this by truncating data or fitting everything into a single prompt — methods that do not scale and sacrifice row-level semantic understanding. We present a framework for scalable, dataset-scale LLM-based data transformation. It processes data row-by-row in batches over lazily evaluated, distributed dataframes, enabling LLM-based transformations on arbitrarily large datasets without loading them into memory. Three composable primitives cover the most common patterns: MAP for field-level enrichment, FILTER for row selection, and REDUCE for semantic deduplication via embedding-based similarity search. An agentic orchestration layer accepts a plain-language goal, plans the required primitive sequence, and routes operations that require no semantic reasoning to generated Python code. We evaluate the framework on five domain-specific benchmarks. On a 51,291-row agentic enrichment task, the pipeline achieves 96.2% accuracy in 9.4 minutes. On a 3-million-row deduplication task, REDUCE completes in 1.90 hours. Single-primitive benchmarks reach 99.6% coverage on category extraction, Macro F1 of 0.97 on sentiment classification, and 96% accuracy on compliance filtering. The framework is released as open source at https://github.com/vitalops/datatune.

Read PDF

Similar papers

Preprint Jul 2026

DataClawEval: A Benchmark for Data Engineering Agents in Real Industrial Harness

DataClawEval is introduced, the first comprehensive benchmark designed specifically to evaluate the end-to-end task completion capabilities of autonomous agents in real-world data engineering scenarios, and it comprises 100 rigorous, end-to-end tasks spanning five execution engines.

Debin Meng, Jiaming Yang, Zefang Zong et al. · 0 citations

Expanding the Physical Design Space of LLM Data Systems

It is argued that LLM-native data systems should expose selected inference-time mechanisms to the optimizer as physical design choices and advocate constructing Pareto frontiers of candidate implementations and exposing only non-dominated choices to the optimizer.

Gabriele Sanmartino, Matthias Urban, Carsten Binnig et al. · 0 citations
Preprint Apr 2026

BatchDAG: LLM-Planned Execution Graphs for Scalable Ad-Hoc Analysis Over Enterprise Data

BatchDAG is a general-purpose orchestration layer that replaces multiple hand-engineered workflows with a single system that generates the appropriate execution strategy from natural language, and is not primarily an accuracy improvement over hand-optimized pipelines.

Anupreet Walia · 0 citations
Open access 2026

HyMIR: A BI-Inspired Hybrid Intermediate Representation for Schema-Agnostic Text-to-SQL

This work revisits generation-target IRs under the BIRD regime and proposes HyMIR, a typed JSON IR designed for enterprise-scale schemas, indicating comparable representational coverage across the two benchmarks and quantifying a hard upper bound on attainable model performance under this IR and compiler stack.

Weihou Chen, Ying-Ren Chien · 0 citations
Preprint Jul 2026

Not as Sweet by Another Name: An Empirical Study of Format Robustness in LLM Document Workflows

A format-aware metamorphic testing framework with three metamorphic relations is proposed to comprehensively evaluate the format robustness of end-to-end LLM document workflows and demonstrates that document format is not a neutral wrapper but a critical factor affecting the reliability of LLM software systems.

Xiaoyu Zhang, Xianyun Cheng, Tianlin Li et al. · 0 citations