The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

An LLM-driven delivery agent at Tencent sharply cuts data-warehouse delivery workload — median delivery time fell from 228 to 23 minutes and engineer effort from 95 to 11 minutes in production, with an 87% success rate and 73.5% autonomous submission rate.

SiriusDeliver: Automating Data Warehouse Delivery at Tencent
Haining Xie, Xiaokai Zhou, Jiaming Yang, Siqi Shen, Ziwei Wang, Yifeng Zheng, Tengyue Xu, Yipeng Shi, Zefang Zong, Yang Li, Peng Chen, Jie Jiang, Debiao He, Xiao Yan, Jiawei Jiang · August 10, 2026
arxiv descriptive medium evidence 8/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Haining Xie unresolved corpus identity
  2. Xiaokai Zhou unresolved corpus identity
  3. Jiaming Yang unresolved corpus identity
  4. Siqi Shen unresolved corpus identity
  5. Ziwei Wang unresolved corpus identity
  6. Yifeng Zheng unresolved corpus identity
  7. Tengyue Xu unresolved corpus identity
  8. Yipeng Shi unresolved corpus identity
  9. Zefang Zong unresolved corpus identity
  10. Yang Li unresolved corpus identity
  11. Peng Chen unresolved corpus identity
  12. Jie Jiang unresolved corpus identity
  13. Debiao He unresolved corpus identity
  14. Xiao Yan unresolved corpus identity
  15. Jiawei Jiang unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Haining Xie provider ID
  2. Xiaokai Zhou provider ID
  3. Jiaming Yang provider ID
  4. Siqi Shen provider ID
  5. Ziwei Wang provider ID
  6. Yifeng Zheng provider ID
  7. T. Xu provider ID
  8. Yipeng Shi provider ID
  9. Zefang Zong provider ID
  10. Yang Li provider ID
  11. Peng Chen provider ID
  12. Jie Jiang provider ID
  13. Debiao He provider ID
  14. Xiao Yan provider ID
  15. Jiawei Jiang provider ID
SiriusDeliver, an LLM-augmented delivery automation agent for data warehouses, achieved an 87.2% end-to-end success rate in production and reduced median delivery time from 228 to 23 minutes and engineer effort from 95 to 11 minutes in a Tencent deployment.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Enterprise data warehouses (DWs) support business-critical analytics, but warehouse task delivery remains a complicated production process involving context retrieval, workflow configuration, code generation, platform submission, and failure diagnosis. Although large language models (LLMs) and coding agents have improved software development, they are insufficient for production DW delivery, which requires dependency-aware orchestration, lifecycle-aware artifact control, and continuous adaptation to evolving platform practices. We present SiriusDeliver, an end-to-end delivery automation agent for production warehouse task submission. SiriusDeliver integrates three components: a hierarchical delivery agent that orchestrates warehouse skills, an artifact lifecycle control module that verifies and revises artifacts before and after platform execution, and a trace-driven skill evolution mechanism that maintains reusable skills from delivery trajectories. We evaluate SiriusDeliver through offline datasets and large-scale production deployment on Tencent Cloud WeData. Offline experiments on real-world warehouse delivery cases show that SiriusDeliver improves delivery success and automation efficiency over representative baselines. During a two-month deployment across 6 business teams and 4 warehouse task types, SiriusDeliver served 3,600 monthly active users and supported 18,240 delivery sessions, achieving an 87.2% end-to-end success rate and a 73.5% autonomous submission rate. A one-month A/B test shows that SiriusDeliver reduces median delivery time from 228 to 23 minutes and engineer effort from 95 to 11 minutes, while maintaining comparable final delivery success.

Summary

Main Finding

SiriusDeliver is an end-to-end automation agent that substantially reduces human effort and time for data-warehouse (DW) task delivery while improving reliability. By combining a hierarchical delivery agent (scenario/context/artifact/platform skills), an artifact lifecycle control (pre- and post-execution diagnosis grounded in platform evidence), and trace-driven skill evolution (bounded updates from execution trajectories), Tencent deployed SiriusDeliver at scale and achieved large gains in success rate, automation, and engineer productivity.

Key Points

  • System design
    • Delivery Automation Agent: maintains a structured delivery state and orchestrates reusable warehouse skills in four layers (scenario, context, artifact, platform) to produce an artifact bundle A = ⟨G (workflow), C (node artifacts, e.g., SQL/PySpark), P (task configs)⟩.
    • Artifact Lifecycle Control: two-stage verification — pre-execution diagnosis (deterministic platform evidence + LLM reasoning) to catch silent defects and performance risks before submission; post-execution diagnosis (log-grounded failure extraction + KB retrieval + root-cause revision) to produce traceable repairs.
    • Trace-driven Skill Evolution: groups delivery trajectories by outcome to generate bounded LLM-updates that (a) repair failures and (b) compress successful patterns into reusable skills; maintains memory of compressed trajectories, configs, and platform feedback.
    • Diagnosis items formalized: issue description, judgment conditions, required evidence, and execution workflow — prevents unsupported claims and makes repairs auditable.
  • Empirical results (high level)
    • Offline (200 real-world delivery cases across 4 scenarios): end-to-end success increased by 14.5 percentage points (71.5% → 86.0% vs best baseline); token usage reduced by 30%; ablation studies confirm component contributions.
    • Production deployment (2 months on Tencent Cloud WeData): served 3,600 monthly active users across 6 teams, 18,240 delivery sessions; achieved 87.2% end-to-end success rate and 73.5% autonomous submission rate.
    • A/B test (1 month): median delivery time reduced from 228 to 23 minutes; engineer effort from 95 to 11 minutes; time-to-first-artifact from 44 to 2.6 minutes; manual intervention rate from 100% to 21%; final delivery success remained comparable.
  • Practical observations motivating the design: majority of delivery time is not SQL coding but cross-platform context retrieval, dependency resolution, and coordination; one-shot LLM generation is brittle for multi-stage, dependency-rich DW deliveries.

Data & Methods

  • Datasets and deployment
    • Offline evaluation: 200 real-world warehouse delivery cases, covering four delivery scenarios (e.g., synchronization, computation, workflow updates).
    • Online deployment: two-month roll-out on Tencent Cloud WeData across 6 business teams and 4 warehouse task types; recorded 18,240 sessions and 3,600+ MAUs.
    • One-month randomized A/B experiment comparing agent-driven workflows to human-driven baseline.
  • Metrics
    • End-to-end delivery success rate (final correctness/completion of task submission and execution).
    • Autonomous submission rate (fraction of deliveries submitted without human intervention).
    • Time metrics: median end-to-end delivery time, engineer active effort time, time to first artifact.
    • Token consumption for LLM usage (efficiency metric).
  • Methods & system evaluation
    • Comparative baselines: representative coding/agent baselines and skill-augmented agents.
    • Ablation studies: remove/disable components (e.g., lifecycle control, skill evolution) to measure their contribution.
    • Pre-execution checks: deterministic compilation/pre-compile checks, metadata verification, partition/predicate analysis to catch silent risks and performance hazards.
    • Post-execution pipeline: structured failure extraction from logs, retrieval of past fixes/troubleshooting docs, LLM-guided localized revisions.
    • Trace aggregation: grouping successful and failing trajectories to propose bounded, auditable updates to skills and memory.
  • Quantitative highlights
    • Offline: +14.5 percentage points success, −30% LLM token consumption vs strongest baseline.
    • Online: 87.2% end-to-end success, 73.5% autonomous submission.
    • A/B: delivery time 228→23 min (≈90% reduction); engineer effort 95→11 min (≈88% reduction); manual intervention rate 100%→21%.

Implications for AI Economics

  • Labor-productivity and cost implications
    • Large reductions in delivery time and hands-on engineer time imply significant labor cost savings per delivered warehouse task. For high-volume platforms (millions of tasks), these savings scale into substantial operational cost reductions.
    • Automation compresses low-value repetitive work (context retrieval, cross-platform coordination) into agent-managed workflows; human engineers shift toward higher-value tasks (design, validation, edge-case handling, governance).
  • Demand-side shifts in labor markets
    • Decreased demand for routine DW delivery tasks; increased demand for roles in agent management, monitoring, data governance, and platform engineering to handle edge cases, skill evolution governance, and audits.
    • Skills premium likely for engineers who can work with and supervise automation agents, interpret artifact lifecycle reports, and design resilient data pipelines.
  • Platform economics and vendor strategy
    • Cloud and DW platform providers gain incentives to integrate agent automation (differentiation, higher customer retention, and potential upsell of automated delivery tooling).
    • Economies of scale: skill libraries, diagnostic knowledge bases, and trajectory compression become more valuable as adoption grows — favoring larger platform players with broad user coverage.
  • Risk, governance, and transaction costs
    • Adoption requires investment in auditability, traceable diagnosis, and bounded model updates to manage reliability and liability; these governance costs are non-trivial and affect net economic gains.
    • Potential negative externalities: automated but incorrect deliveries can create silent data-quality risks; vendors/operators must internalize costs of monitoring and corrective processes.
  • Research and market opportunities
    • Cost–benefit and ROI studies: quantify direct labor savings, failure-repair costs, and required maintenance investments over time to guide enterprise adoption.
    • Market for “skill” marketplaces and certified diagnostic knowledge: third parties could sell vetted skill packs, repair rules, or trajectory templates.
    • Regulation and standards: need for standards around auditable automation, provenance of artifact revisions, and approval workflows — relevant to governance and compliance economics.
  • Broader productivity vs. distributional effects
    • SiriusDeliver-style automation increases aggregate productivity in data engineering but will redistribute work composition and potentially reduce demand for entry-level delivery roles. Policy and firm-level retraining strategies will matter for managing these distributional impacts.

Takeaway: SiriusDeliver demonstrates that tightly integrated LLM-driven agents, when combined with deterministic platform grounding, lifecycle verification, and data-driven skill updates, can deliver substantial productivity and reliability gains in enterprise data-warehouse operations — producing clear economic benefits but also shifting labor demand and imposing governance and maintenance costs that must be managed for sustainable adoption.

Assessment

Paper Typedescriptive Evidence Strengthmedium — The paper reports both offline controlled comparisons (200 real cases vs baselines) and large-scale production deployment metrics (2 months, 3,600 MAUs, 18,240 sessions) including a one-month A/B test with large point estimates of time and effort savings; however, key experimental details are missing (randomization/assignment, confidence intervals, statistical significance, and potential selection/operational confounders), and results are from a single company/platform. Methods Rigormedium — The system design and evaluation combine sensible offline benchmarks and a production A/B test, but the writeup omits important methodological details (how users/sessions were allocated to treatment/control, pre-treatment balance, sample sizes for the A/B arm(s), statistical tests, robustness checks, and failure mode analysis), limiting causal claims and replicability. SampleOffline: 200 real-world warehouse delivery cases covering 4 warehouse scenarios. Online: two-month production deployment on Tencent Cloud WeData across 6 business teams with 3,600+ monthly active users and 18,240 delivery sessions; a one-month A/B test (sample size and assignment procedure not reported) measuring delivery time, engineer effort, time to first artifact, autonomous submission rate, and final delivery success. Themesproductivity human_ai_collab IdentificationProduction deployment evaluation with offline benchmarks plus a one-month online A/B test comparing SiriusDeliver-enabled delivery to the incumbent process; offline evaluation uses 200 real-world cases against skill-augmented baselines. The paper does not fully report randomization, assignment procedure, or statistical testing details for the A/B test. GeneralizabilitySingle-organization (Tencent) and single proprietary platform (WeData) — results may depend on platform APIs, integrations, and Tencent-specific workflows., Deployment covered 6 teams and 4 task types — evaluation may not generalize to other industries, smaller teams, or different warehouse architectures., A/B test details (randomization, blocking, sample sizes) are not provided, raising risk of selection bias and limited causal interpretability., Performance may depend on engineering investment, curated skill libraries, and platform-specific deterministic checks that are costly to replicate., LLM/agent model, prompting, and operational thresholds are not fully specified, limiting reproducibility across model families or configurations.

Claims (10)

ClaimDirectionOutcomeConfidence & EvidenceDetails
SiriusDeliver improved the average end-to-end delivery success rate from 71.5% to 86.0% over the strongest skill-augmented baseline on offline warehouse delivery cases. Organizational Efficiency positive Average end-to-end warehouse delivery success rate
Reading fidelity high
Study strength high
n=200
14.5 percentage-point increase, from 71.5% to 86.0%
0.3
SiriusDeliver reduced token consumption by 30% relative to the strongest skill-augmented baseline in the offline evaluation. Organizational Efficiency negative Token consumption during delivery automation
Reading fidelity high
Study strength high
n=200
30% reduction
0.3
During a two-month production deployment, SiriusDeliver achieved an 87.2% end-to-end success rate. Organizational Efficiency positive End-to-end delivery success rate
Reading fidelity high
Study strength medium
n=18240
87.2% end-to-end success rate
0.18
SiriusDeliver achieved a 73.5% autonomous submission rate during its two-month production deployment. Task Allocation positive Rate of deliveries submitted autonomously without manual submission
Reading fidelity high
Study strength medium
n=18240
73.5% autonomous submission rate
0.18
SiriusDeliver reduced median delivery time from 228 minutes to 23 minutes in a one-month A/B test. Task Completion Time negative Median time required to deliver a warehouse task
Reading fidelity high
Study strength high
228 to 23 minutes; 89.9% reduction
0.3
SiriusDeliver reduced engineer effort from 95 minutes to 11 minutes in a one-month A/B test. Organizational Efficiency negative Engineer effort per warehouse delivery
Reading fidelity high
Study strength high
95 to 11 minutes; 88.4% reduction
0.3
SiriusDeliver reduced time to first artifact from 44 minutes to 2.6 minutes in the one-month A/B test. Task Completion Time negative Time to first generated warehouse artifact
Reading fidelity high
Study strength high
44 to 2.6 minutes
0.3
SiriusDeliver reduced manual intervention from 100% to 21% in the one-month A/B test. Task Allocation negative Share of warehouse deliveries requiring manual intervention
Reading fidelity high
Study strength high
100% to 21%; 79 percentage-point reduction
0.3
SiriusDeliver maintained comparable final delivery success while reducing delivery time and engineer effort in the one-month A/B test. Organizational Efficiency null_result Final warehouse delivery success rate
Reading fidelity high
Study strength medium
not reported
0.18
SQL development accounts for less than 25% of end-to-end warehouse delivery time, while information retrieval and cross-platform coordination are the primary sources of effort. Organizational Efficiency negative Distribution of engineer time and effort across warehouse delivery activities
Reading fidelity high
Study strength low
less than 25% of end-to-end delivery time
0.09

Notes