@byte_array

Founder @Onehousehq — Data Infra for Agents. Creator of @apachehudi, built the first #DataLakehouse @Uber. Databases, Dist. Systems. LinkedIn, Confluent.

Joined April 2009
Reminded of Windows in 90s. The amount of confusion there is around Codex, Chat vs Work, Personal vs Business profile switching -- in ChatGPT.
3
118
The thing that makes AI agents useful ("non-deterministic reasoning") is exactly what makes them impossible to debug. Traditional automation was boring because it was predictable. Same input, same code, same output. AI is useful precisely because it breaks that model. It can "think on its feet", at 1000x human speeds. So, if you give an agent the same goal twice and it may take a different path, call different tools, retrieve different context, and produce a different answer. That autonomy is the value prop. The balance lies in ensuring that when something goes wrong, you can reproduce what actually happened. Teach it, Coach it. For that, versioning the model is not enough. You need the exact state of everything that influenced the result: • source data • transforms • embeddings • indexes • policy/config • model checkpoint Miss one, and you are not replaying the same run. AI makes systems non-deterministic. Versioning is how we make that non-determinism debuggable, auditable, and reproducible.
1
4
129
Caching is supposed to make queries faster. But on lakehouses, simply moving Parquet files into memory or fast SSDs often barely moves the needle. The common assumption is that data access is network-bound. With modern cloud networks offering amazing throughput, the bottleneck often isn’t the network anymore. It’s the CPU.
4
2
8
368
The breakthrough is format separation + hardware alignment + efficient cache distribution. That’s what unlocks consistent sub-100ms query latencies on lakehouses.
1
27
Vinoth Chandar retweeted
Google Cloud Dataproc 3.0.2 now supports Apache Hudi 1.2. This brings native VECTOR, BLOB, and VARIANT types to managed Spark clusters on GCP.
1
2
1
6
290
AWS EMR and GCP Dataproc both ship Hudi 1.x now. Most AI apps require four systems: Structured data → lakehouse Embeddings → vector DB Binary objects → object storage Semi-structured → document store Every write has to propagate across all four. Keeping them consistent is brutal. Hudi 1.2 collapses that. Native VECTOR, BLOB, and VARIANT types in one table. Vector search, binary storage, hierarchical queries—same transactional guarantees. The consistency problem disappears because there's nothing to sync.
3
1
11
402
Google Cloud Dataproc 3.0.2 now supports Apache Hudi 1.2. This brings native VECTOR, BLOB, and VARIANT types to managed Spark clusters on GCP.
59
Approaching now 10 yrs in production at some of the largest data lakes in the world. Collective accomplishments of the Apache Hudi community. 🫶
Uber published a teardown on cutting storage and compute costs for export workloads on GCS-backed Hudi tables. The problem: DSAR requests and compliance queries pull a few records from years of history. Small result sets, but they scan the entire table repeatedly. Repeated access breaks GCS auto-tiering. Data that should drop into Nearline, Coldline, or Archive stays hot in Standard. Storage costs stay high. Egress stays high. Metadata operations pile up. Secondary indexes don't fix this. Target records scatter across most files since the query is still a scan. The index still points to a large file set. The engine still pays the scan cost. ⚡ What works: Hudi column stats + table sorting on the predicate column. 1️⃣ Column stats live in Hudi's metadata table, not Parquet footers. Stats are indexed for fast access for engine pruning. Cold files stay cold without incurring penalties. Auto-tiering works. 2️⃣ Sorting clusters matching records into a small file subset Queries filter on rider_id or driver_id consistently. Sorting on that column tightens min/max ranges. Pruning gets dramatically more selective. Uber sorted one partition and benchmarked: 📉 Files touched: 100% → 8% 📉 GCS egress: ↓92% 📉 Compute cost: ↓91% 📉 Storage footprint: ↓15% (clustering similar values improves compression) Export workloads break typical lakehouse assumptions: narrow output, broad scan surface. Repeated execution keeps data hot, drives up costs across storage, retrieval, metadata ops, compute. Column stats + sorting fixes it. Files stay cold. Queries stay cheap.
1
6
298
Lays out how it all connects
Your lakehouse has a new job: fueling open models. Today we're launching AI training data pipelines on Onehouse for @baseten, @FireworksAI_HQ, and @togethercompute. The problem: Most teams "version" training data by dumping JSONL files into cloud storage. When labels change or eval surfaces a gap, there's no way to trace examples back to source records or rebuild the dataset. What we built: ✅ Quanton curates training examples from lakehouse tables using Spark SQL—join conversations to outcomes, filter by quality, validate schema, export versioned datasets. ✅ Onehouse submits training jobs to Baseten, Fireworks, or Together AI and tracks status. The provider returns fine-tuned weights or adapters. ✅ Lakegres serves point-in-time context during training or eval—queries tables for exact documents and state needed to replay traces. How it works: OneFlow ingests source data → Quanton curates examples → Airflow coordinates → provider trains → Lakegres serves context. The dataset stays reproducible. Engineers can inspect selection queries, trace examples to sources, and rebuild when labels change. Go to quanton.dev and give it a spin.
1
3
264
🔥 📣 Your lakehouse already has the data. Your training pipeline doesn't know how to use it. We're announcing AI training data pipelines on Onehouse for @baseten , @FireworksAI_HQ , and @togethercompute Training data curation today feels like carrying lake water in a leaky bucket. Most teams "version" training inputs by dumping JSONL files into a cloud folder. When a label changes or an evaluation surfaces a gap, there's no way to trace which examples came from where, or rebuild the dataset from updated source tables. Consider a support agent learning from past conversations. Useful examples require joining each conversation to its outcome: Was the issue resolved? Was the answer correct? Did someone intervene? The conversation alone isn't enough. The evidence lives in operational tables. When the model handles a class of requests poorly, the next training dataset needs to reflect updated labels, corrected data, and new selection logic. Teams need the selection query, the source-table versions it read, and the history of those corrections. 🔄 These are familiar data engineering requirements: joins, versioning, lineage, backfills. The lakehouse already handles them. Here's what we built: 1️⃣ Quanton curates examples from lakehouse tables using SQL selection logic—join conversations to resolution status, filter by outcome quality, batch vector search for good/bad examples at scale. It writes versioned exports as training datasets. 2️⃣ Onehouse submits the training job to Baseten, Fireworks, or Together AI and tracks status in the UI. The provider trains the model and returns the fine-tuned weights or adapter. 3️⃣ Lakegres serves point-in-time context during training or eval—queries lakehouse tables for the exact documents, records, or state needed to replay a past trace. The dataset remains reproducible. Engineers can inspect the selection query, trace examples to source records, and rebuild the dataset when labels change or evaluation surfaces gaps. Go to quanton.dev for a free account and give it a spin, let us know!
2
5
20
1,015
Companies spend billions on Spark compute every year. Most assume open-source accelerators can close the gap to commercial engines. We ran TPC-DS 10 TB across 5 engines on the same 11-node cluster to find out. OSS Spark: 12,200s (baseline) Comet (tuned): 9,122s (25% faster) Gluten (tuned): 8,563s (30% faster) Databricks Photon 18.2: 2,550s (5× faster) Quanton: 2,384s (5× faster) Open-source accelerators can get you partway there—under ideal conditions.
1
2
10
482
The gap between OSS and commercial Spark isn’t just raw speed. It’s how things behave when you run a setup close to production scale. ⚠️ On a realistic memory:disk ratio, both Comet and Gluten fail with OOMs on q67 and q93. Commercial engines handle these workloads without tuning. ⚠️ 1 TB is often too small to understand performance profiles of production Spark/lakehouse setups, since most joins at that scale become broadcast joins on the TPC-DS schema. #ApacheSpark #DataEngineering
1
86
The 30x jump in open-model adoption this year hides a costly blind spot. As Meta, GLM, Kimi, Qwen, and Mistral models get more capable, more teams are customizing them. But SFT, preference tuning, and RFT aren't interchangeable—and the differences determine whether you spend $50 or $50,000 for the same result. 1️⃣ Supervised fine-tuning (SFT) You provide prompt/response pairs. The model learns by imitation. Think: prompt → ideal response 2️⃣ Preference tuning (DPO) For each prompt, provide multiple responses and mark which is better. The model learns from comparisons. Think: prompt → preferred response + rejected response 3️⃣ Reinforcement fine-tuning (RFT) The model produces an answer, a grader scores it, and that becomes the reward signal. The grader can verify correctness, run tests, or apply domain rules. Think: task → response → grader → reward 📊 Each approach demands different data. SFT needs accurate, representative prompt/response pairs with consistent formatting. Preference tuning needs the full comparison record: what outputs were judged, which won, and the context. RFT needs a representative task distribution, execution context, and clear lineage to the source. ⚠️ The bottleneck across all three: data management. Training data is a data engineering problem: 🔍 Curate datasets from production ✅ Validate before training 🔗 Track provenance for every example 📦 Version each dataset 🔄 Make every run reproducible The training API is the easy part. The leverage is in the data infrastructure underneath.
1
5
176
Turns out AWS pricing is negotiable if you blog about it. AWS S3 Tables launched at $5.04 to compact 100GB Iceberg . EMR: $0.17. 29× markup. When we published the teardown, AWS dropped the price by 10× right after. Then it was $0.52 for the same job. EMR still 3× cheaper. Who knew transparency was a feature request? AWS has so many amazing services. But, 2 years in, S3 Tables still ships with the same foundational limitations it had at launch. Sadly, still only seems to beat competition by calling customer execs with some FUD about risk and support gaps if they don't adopt the managed service. Price cuts are good. Price cuts after being caught aren't really a win. They just make you wonder what else sold this way.
4
2
23
19,112