惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 司徒正美
M
MIT News - Artificial intelligence
博客园_首页
IT之家
IT之家
L
LangChain Blog
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
人人都是产品经理
人人都是产品经理
博客园 - Franky
云风的 BLOG
云风的 BLOG
罗磊的独立博客
量子位
G
Google Developers Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
博客园 - 叶小钗
S
SegmentFault 最新的问题
Stack Overflow Blog
Stack Overflow Blog
B
Blog
T
Tailwind CSS Blog
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

Moor Insights & Strategy

The Claude-ification Effect - Does Microsoft Copilot Cowork Offer Something New? MI&S Weekly Analyst Insights — Week Ending June 12, 2026 RESEARCH NOTE: Computex 2026 Shows How Infrastructure Fragments as AI Scales Is SAP's AI Transformation the Future of SaaS? - Pulse Brief OpenAI Flexes Enterprise Ambitions With Colin Fleming As Business CMO RESEARCH NOTE: Rayfin Turns Microsoft Fabric Into a Runtime for Agent-Built Apps RESEARCH NOTE: Google I/O 2026 — More Details on AI and AR Glasses, Including Project Aura BROADCAST ANALYSIS: Patrick Moorhead Discusses the AI Market, Semiconductors, SpaceX, and Big IPOs on The Street, June 10, 2026 At Cisco Live 2026, Cisco Bets The Network Is The AI Platform MI&S Weekly Analyst Insights — Week Ending June 5, 2026 Apple WWDC 2026 - Resetting Siri, OS Improvements, and Parental Controls BROADCAST ANALYSIS: Patrick Moorhead Discusses NVIDIA Computex, China Trade Restrictions, and Berkshire’s Google Investment on CNBC Asia, June 1, 2026 RESEARCH NOTE: Dell Makes Its Case for Owning the Enterprise AI Stack Microsoft Work Trend Index 2026 Shows AI Productivity Is Not Enough Huawei's Chip Claims, SpaceX IPO Insights, Network X, Starcloud, AT&T & Amazon Leo Updates RESEARCH NOTE: Can Intel Wildcat Lake Challenge Apple’s MacBook Neo and Make Cheap PCs Great Again? ANALYST INSIGHT: Tenstorrent Is Disrupting the Inference Market MI&S Weekly Analyst Insights — Week Ending May 29, 2026 RESEARCH NOTE: Panasonic TOUGHBOOK 56 Brings Much-Needed Updates to the Rugged Form Factor RESEARCH NOTE: Amazon’s Acquisition of Globalstar Accelerates Amazon Leo Ambitions RESEARCH NOTE: IBM Turns Sovereignty Into a Product ANALYST INSIGHT: Mission-Critical ERP Needs Mission-Critical Agents RESEARCH NOTE: Cadence Leans into EDA Super Agents at Cadence LIVE 2026 MI&S Weekly Analyst Insights — Week Ending May 22, 2026 RESEARCH NOTE: Distance Technologies Partners on Kia Vision Meta Turismo Concept Car Retail AI Requires a Fundamentally Different Approach to Implementation — Research Brief BROADCAST ANALYSIS: Patrick Moorhead Discusses NVIDIA Earnings on CNBC, May 20, 2026 Enterprises Need To Be Careful Before They Go All-In On Anthropic RESEARCH NOTE: AT&T, T-Mobile, and Verizon Create Unprecedented Joint Venture for D2D Satellite Simplicity MI&S Weekly Analyst Insights — Week Ending May 15, 2026
pgEdge ColdFront Bets the Postgres Cold Tier Can Stay Low...
Mike Leone · 2026-06-27 · via Moor Insights & Strategy

Teams running Postgres in production keep telling me their databases never stop growing. Old data piles up that no one reads, and no one is allowed to delete it. pgEdge’s answer with ColdFront is to push that cold data down to cheap object storage, and the part I like is that it keeps it live and writable instead of freezing it. It’s a premise I’m buying. Storage bills climb on data that has gone quiet, and the usual fixes all make you give something up.

A writable cold tier is the part that makes this different

Tiering data by temperature is old. Hot, active records stay in fast Postgres storage, and older records you’re required to keep but rarely access get pushed to a cheaper storage option like S3. What pgEdge does differently is keep that cold data writable under the same table name, so an application keeps querying one table and never knows the older rows have been moved.

When it comes to tiering, the cold archive is almost always read-only. When you do need to reach back in, say to fix a record or run a deletion for compliance, you copy it to the hot tier, change it, and you end up paying for the round trip. ColdFront applies updates and deletes directly to the Iceberg copy, so old data behaves like the rest of the table. You pay for that on writes, though. One edit to a cold row can rewrite full Parquet files in object storage. A normal write avoids all that.

DuckDB inside Postgres turns the archive into something you can query

The analytics piece comes from DuckDB, which ColdFront runs inside the Postgres process itself. Queries against the cold Parquet data use a columnar engine built for that work, so they run fast without a separate analytics system. A team doing trend analysis or aggregations over years of history skips the ETL pipeline and the second platform that usually comes with it.

Let’s also be clear that running analytics inside the operational database isn’t new. HTAP was a niche idea a decade ago, largely because doing it well was slow and expensive. Object storage is cheap now, and a columnar engine like DuckDB can handle a heavy in-process scan without a separate service to run. It’s not that the database got smarter, but more that the tools and storage around it did. The catch is the shared process. A scan across years of history competes with live transactional work for the same CPU and memory, so cutting the second system puts more load on the one that’s left.

Open Iceberg turns storage into a hedge instead of a trap

ColdFront runs on stock community Postgres 16, 17, and 18, and it’s open source under the Postgres license. The important part is that the cold data lands in standard Apache Iceberg, not a pgEdge format. And with Iceberg turning into the common ground most engines read and write, anything parked there stays queryable by other tools and moves with you if you ever swap the database. That level of portability is a great value for a cold tier you might sit on for years.

It also works with pgEdge’s Spock replication, which keeps the cold data reachable for reads and writes from every node in a multi-master setup. The data itself stays portable, though only up to a point. You can take the Iceberg files with you, but the automation that tiered them and the in-process engine that makes them fast to query are pgEdge’s, so leaving means keeping the data and rebuilding the part that made it useful.

Where ColdFront leaves a small vendor in a crowded Postgres field

The whole field is chasing one governed copy of data for transactions, analytics, and AI. pgEdge can’t win that on breadth, and as a smaller open-source player, it shouldn’t try. Picking the writable cold tier as its sharp edge is the right call, and Postgres is the leverage, since anything that ships as a plain extension reaches the largest operational install base. The real contest runs upstream of other Postgres add-ons, over whether the operational database keeps its own queryable copy of history or ships it to a separate analytics platform, and a writable Iceberg tier is a small but real claim on that ground.

Consistency is the hard part of building this. You’ve got a hot Postgres tier and a cold Iceberg archive, and once both start accepting writes, keeping them in sync is what breaks down. Usually, it breaks late, under load, well after a quick test looks clean. pgEdge says it serializes writes with a commit protocol it ran through TLA+, and that’s the kind of thing I want a Postgres vendor to be reaching for. On the cost front, I’d set expectations based on the fact that while object storage is cheap, you’ll still likely pay some of it back in rewrites and in running a second engine. While tiering helps trim the storage bill, it doesn’t eliminate it. The real savings lie under the headline number. I like what pgEdge did anyway. A small player should pick one thing and do it well, and this is that. The timing helps too. Storage keeps taking a bigger slice of the database bill, and that’s exactly what ColdFront goes after.