DBA晨报·第31期|PostgreSQL列存引擎性能飙升10倍、达梦DM9正式发布、Xata开源分支化Postgres平台
Clyde Jin
04-26
DBA
41

DBA晨报·第31期|PostgreSQL列存引擎性能飙升10倍、达梦DM9正式发布、Xata开源分支化Postgres平台

为你摘取技术圈值得关注的3件事。今天是2026年4月26日,星期日。

01 开源工具|PostgreSQL列存扩展storage_engine 1.0.7发布:聚合查询性能飙升10倍,存储空间压缩3-5倍

4月23日,PostgreSQL社区正式发布了storage_engine 1.0.7扩展,为PostgreSQL带来了列式压缩存储行式批量压缩存储两种高性能表访问方法(Table Access Methods),大幅增强PostgreSQL在分析型负载和HTAP场景下的能力。

核心特性一览

storage_engine扩展提供了两个核心表访问方法:

访问方法 核心能力 适用场景
colcompress 列式压缩存储 + 向量化执行 + 块级min/max过滤 + 并行扫描 + MergeTree-like排序 分析型负载、数据仓库
rowcompress 行式批量压缩 + 并行扫描 + DELETE/UPDATE支持(删除位图) + LRU解压缓存 HTAP混合负载

性能基准数据

项目官方GitHub页面披露了在PostgreSQL 18上的测试数据(100万行串行测试):

指标 相比传统Heap存储 说明
聚合查询速度 最高提升10倍 得益于列存储+向量化执行
存储空间 压缩3-5倍 列式压缩+批量压缩双重效果
GIN/JSONB查询 完全支持 与原生功能兼容

技术亮点解读

colcompress(列压缩存储)

  • 采用列式存储,同一列数据连续存放,大幅提升分析查询的I/O效率
  • 向量化执行:批量处理数据,减少函数调用开销
  • 块级min/max索引:扫描时自动跳过不包含目标数据的数据块
  • MergeTree风格排序:可指定排序键优化特定查询模式

rowcompress(行压缩存储)

  • 批量压缩:以行组为单位进行压缩,兼顾压缩率和访问性能
  • 删除位图:支持DELETE/UPDATE操作,不破坏压缩结构
  • LRU解压缓存:热点数据自动缓存在内存中

版本兼容性

PostgreSQL版本 支持状态
16 ✅ 支持
17 ✅ 支持
18 ✅ 支持
19 即将支持

GitHub仓库https://github.com/saulojb/storage_engine

DBA视角

storage_engine是PostgreSQL生态中近年来最重要的存储引擎扩展之一:

  • HTAP能力补全:此前PostgreSQL在OLTP场景已经成熟,但分析型负载需要依赖外部工具(如ClickHouse)或复杂的分区方案。storage_engine让PostgreSQL在单一实例中具备了列存储能力,覆盖了更多HTAP场景
  • MySQL用户迁移:对于从MySQL迁移到PostgreSQL的团队,以往担心PG没有类似ClickHouse的列存方案,现在有了开源选择
  • 测试建议:建议在分析型负载场景中评估colcompress的实际性能提升,并测试与现有应用(触发器等)的兼容性

column存储并非银弹——OLTP点查场景仍应使用传统堆存储或rowcompress。建议对读多写少的大表进行POC测试,验证压缩效果和查询加速比。

02 产业盛会|2026中国数据库技术与产业大会:达梦DM9正式发布,2025年市场规模达430.2亿元

4月22日,以“达梦筑基 智启新元”为主题的2026中国数据库技术与产业大会在北京隆重举行。大会由中国电子指导、中国软件行业协会主办、中国计算机学会数据库专委会协办、达梦数据承办,汇聚政产学研用各界超千位嘉宾。

市场数据重磅披露

赛迪顾问副总裁宋宇在大会演讲中披露:

指标 数据
2025年中国数据库市场规模 430.2亿元
国产厂商市场份额 已领先国外厂商
国产厂商排名 达梦数据保持第一

达梦四款战略新品发布

达梦数据在大会上集中发布了四款战略新品,全面覆盖集中式、分布式、云原生、一体机、图数据库等核心场景:

产品名称 定位 核心亮点
达梦数据库管理系统DM9 AI时代旗舰产品 集中式与分布式一体化架构,内置数据库设计智能体和运维智能体;450余项新特性升级
DAMENG PAI V2.0 新一代数据库一体机 IOPS起步1200万,向量数据检索性能提升超10倍,20亿行大表扫描性能提升超50倍,单次I/O时延降至80微秒
达梦启云数据库V4.0 云原生数据库 AI智能运维、跨云跨芯混合容灾、异构算力统一调度
图数据库GDMBASE V4.0 图数据库 图原生+向量一体化架构,十亿级点边混合检索<500ms,支撑超千亿级别图数据存储

AI战略全面发布

达梦数据副总经理冯源发布了企业全新AI战略:

  • 智能优化:AI驱动的查询优化,自动学习负载特征
  • 自治运维:故障预测、自动诊断、一键修复
  • 大模型融合:支撑RAG、向量检索等AI工作负载

达梦数据董事长冯裕才表示,公司核心源代码实现100%全自主研发,未来将持续深耕AI与数据库深度融合、云原生、分布式、图计算等前沿技术。

专家观点与生态建设

北京大学教授梅宏:当前人工智能的本质可归纳为“数据驱动智能、计算实现智能”。以达梦为代表的企业已支撑起金融、电力、交通等核心场景的规模化应用,证明中国基础软件产业在关键业务中具备了“稳得住、扛得住”的实力。

中国计算机学会数据库专委会主任周傲英:人工智能的深度渗透正在重构数据库技术边界。国产数据库基本完成“可用”目标,但要实现“好用、耐用、智用”,仍需突破核心技术差距、高端人才供给、产学研转化等挑战。

中国电子副总经理王桂荣:坚持开源开放,不做封闭“全家桶”,联合上下游伙伴推动产业从“产品可用”向“生态好用”跨越。

产学研创新联合体启动:大会期间正式启动“国产数据库产学研创新联合体”,同时发布网信生态共同体暨达梦数据生态品牌“梦享会”。

标杆应用案例

案例 规模/效果
中国联通ERP系统 完成全栈创新升级,性能提升40%-50%,覆盖全国31省
福州市第一总医院 8个院区核心系统改造,CPU占用率仅3%,零重大宕机
香港政务平台 集成达梦数据库,实现“无体感”替换及AI数据精准管控

DBA视角

DM9的正式发布标志着国产数据库头部厂商全面进入“AI原生”竞争阶段:

  • 技术路线:关注DM9的“集中式+分布式一体化”架构,以及AI智能体在数据库内核的嵌入
  • 生态建设:“梦享会”生态品牌发布,达梦正从产品型公司向平台型公司转型
  • 选型参考:2025年430.2亿市场规模、国产厂商市场份额领先,国产数据库已成为核心场景的现实选择

对中国数据库DBA而言,达梦、OceanBase、金仓三强格局进一步稳固,建议关注各厂商在AI融合方向的技术路线差异。

03 开源生态|Xata正式开源核心平台:PostgreSQL存储层分支技术现已Apache 2.0许可

Xata公司近日宣布,将其PostgreSQL平台的核心技术Xata OSS正式开源,采用Apache 2.0许可证。这意味着开发者可以自由使用、修改和部署Xata的数据库分支技术。

核心开源能力

Xata OSS带来了PostgreSQL生态中独特的存储层能力:

能力 说明
写时复制分支 存储层实现秒级数据库克隆,不影响性能
分支自动休眠 非活动分支自动缩容至零,节省资源成本
标准PostgreSQL兼容 底层仍是标准PostgreSQL,无锁定风险

技术价值

传统PostgreSQL创建数据库副本通常需要pg_dump+恢复或文件系统快照,大型数据库可能需要数分钟到数小时。Xata通过在存储层实现写时复制(Copy-on-Write),实现了秒级克隆:

  • 开发测试加速:为每个PR/功能分支快速创建独立数据库环境
  • CI/CD集成:测试前创建快照,测试后自动销毁
  • 灾难恢复演练:克隆生产环境进行恢复测试

社区反应

PG社区对此表示热烈欢迎:

  • “存储层分支” 被视为PostgreSQL在高可用和开发效率方面的重要补充
  • 可能会催生更多基于Xata OSS的托管服务和企业级工具
  • Xata OSS的开源为自建PostgreSQL分支/克隆能力提供了新的选择

DBA视角

Xata OSS的开源对于希望提升开发效率和数据库管理水平的团队具有实际价值:

  • 开发流程优化:可以为每个功能分支创建独立的数据库环境,避免多团队共享数据库产生的相互干扰
  • 测试效率提升:测试前秒级创建生产数据副本,测试后自动释放
  • CI/CD集成:数据库环境管理可以完全自动化
  • 评估路径:建议在测试环境验证Xata OSS的分支性能和写时复制开销,小团队应考虑其运维复杂性

📌 本期结语:PostgreSQL storage_engine列存扩展带来10倍查询加速,填补PG分析型负载能力缺口;达梦DM9及四款新品正式发布,2025年市场规模达430.2亿元,国产厂商份额领先;Xata开源分支化PG平台,存储层写时复制能力为开发测试效率带来范式革新。祝各位DBA周末愉快!

DBA晨报·第31期|2026年4月26日

Star
Donate
AI晨报·第17期|中国牵头AI网络安全国际标准、GPT-5.5正式发布、国家超算互联网平台全面免费开放
Previous
AI晨报·第18期|广东AI大会今日深圳开幕、谷歌拟400亿美元加码Anthropic、AI漫剧版权大战一触即发
Next

Leave a comment

Registration is not required

Clyde Jin
303 Articles
0 Comments
0 Like
Recent Posts

HiddenMerit Daily · Issue 60

📊 HiddenMerit Daily · Issue 60 Focus on Database Frontiers, Practical Insights for DBAs July 22, 2026 | 5 Selected Global Breaking News 01|Oracle Releases Largest Quarterly Patch in History: 1,449 Patches Fix 1,235 CVEs, 261 Critical On July 21, Oracle released its July 2026 Critical Patch Update (CPU), setting a record for the largest single patch release in the company’s history. This CPU contains 1,449 security patches fixing 1,235 independent CVEs across 32 Oracle product families, of which 261 patches are rated Critical. Patch Distribution by Product Family: Product Family Patches Remotely Exploitable Without Authentication Oracle E‑Business Suite 410 45 Oracle Fusion Middleware 355 219 Oracle Communications 168 122 Oracle MySQL 54 9 Oracle Database Server 15 6 Context for This Patch: Oracle had already issued an urgent “Prepare Now” warning a week earlier, emphasising that AI is fundamentally lowering the barrier to discovering and exploiting vulnerabilities – frontier AI models can analyse software changes, reverse‑engineer security patches, and develop attack paths at unprecedented speed. Oracle has collaborated with state‑of‑the‑art models from Anthropic and OpenAI to proactively identify and fix potential security vulnerabilities. Oracle strongly recommends that customers immediately test and deploy this update in their monthly patch cycles. […]

HiddenMerit Daily · Issue 59

📊 HiddenMerit Daily · Issue 59 Focus on Database Frontiers, Practical Insights for DBAs July 21, 2026 | 5 Selected Global Breaking News 01|Oracle Issues Urgent Warning: July 21 Release Update to Fix Large Number of High‑Risk Vulnerabilities, Immediate Deployment Recommended On July 13, Oracle issued an urgent security warning, strongly recommending that all customers running supported Oracle Database versions (including Oracle Database 19c and Oracle AI Database 26ai) immediately test and deploy the Release Update (RU) after its release on July 21. Background: New frontier AI models are significantly lowering the barrier to discovering and exploiting software vulnerabilities – these models can identify weaknesses, analyse software changes, reverse‑engineer security patches, and develop potential attack paths at unprecedented speed and scale. AI models are also becoming increasingly adept at combining multiple weaknesses across the application and data stack into complex attacks, even when individual weaknesses do not themselves pose a serious risk. As a result, protecting systems solely at the network or application layer is no longer sufficient; enterprises must protect the entire technology stack. Fixes Included in This RU: Oracle has collaborated with state‑of‑the‑art models from Anthropic and OpenAI to proactively identify and fix potential security vulnerabilities. The upcoming […]

HiddenMerit Daily · Issue 58

📊 HiddenMerit Daily · Issue 58 Focus on Database Frontiers, Practical Insights for DBAs July 20, 2026 | 5 Selected Global Breaking News 01|CAICT: Domestic Databases Enter Core System “Deep Water,” AI‑Native Leads New Industry Landscape On July 9, at the 2026 Trustworthy Database Development Conference, CAICT released the “Database Development Research Report (2026).” The report notes that domestic databases have basically completed peripheral system replacement and have officially entered the critical business system breakthrough phase. Key Data: The global database market reached $131.6 billion in 2025 (approximately RMB 894.09 billion). The Chinese database market reached $9.49 billion in 2025 (approximately RMB 64.48 billion), and is expected to reach RMB 97.974 billion by 2028, with a CAGR of 13.06%. The number of domestic database vendors has shrunk from a peak of 167 to 94, with a clear head‑concentration effect and an intensifying “Matthew effect.” AI‑Native Becomes the Main Theme: The report points out that database technology is accelerating its evolution toward the AI‑native direction, and the global database industry is entering a new phase of landscape restructuring. The role of databases is upgrading from “underlying support systems” to “core engines enabling intelligent decision‑making and business innovation.” AI agents are becoming […]

HiddenMerit Daily · Issue 56

📊 HiddenMerit Daily · Issue 56 Focus on Database Frontiers, Practical Insights for DBAs July 6, 2026 | 5 Selected Global Breaking News 01|Kingware Releases Manufacturing Scenario Database Evolution White Paper: SQL Server Replacement Enters “Deep Water” On July 5, CETC Kingware published a technical article titled “Database Evolution in Manufacturing Scenarios: How Kingware Replaces SQL Server,” pointing out that the data surge on industrial shop floors has exceeded the processing capacity of single‑node systems. Traditional database architectures that rely on vertical scaling are facing unprecedented performance challenges. Over the next 1‑3 years, manufacturing enterprises will no longer face only the “choice of replacement,” but must answer the strategic question: “How do we build an autonomous data foundation in the context of de‑IOE?” Three Paradigm Shifts: Hybrid Workloads Become the Norm: The IT architecture of modern factories is shifting from separated OLTP and OLAP to HTAP mode. The same data system must simultaneously handle tens of thousands of device instruction writes per second and minute‑level production report analysis. Distributed Architecture Becomes a Hard Requirement: When a single table exceeds 100 million rows with daily increments exceeding 1 million rows, the index maintenance cost of traditional single‑node databases rises exponentially. Autonomous […]
生成中...
扫描二维码
扫描二维码