小红花·文摘
  • 首页
  • 广场
  • 排行榜🏆
  • 直播
  • FAQ
Dify.AI
Snowflake把CDC推进Postgres内核实现自动复制

数据复制总崩盘?这次我们把CDC塞进Postgres心脏,让它自己跑! Snowflake把CDC直接推进Postgres内核,用推式架构加事务边界,把原本脆弱混乱的数据复制变成一套永不卡壳的发条机制,全程无需额外管道。 复制这个动作,从来就不是“复制”那么简单...

Snowflake把CDC推进Postgres内核实现自动复制

极道
极道 · 2026-08-10T05:28:00Z
Zhang Chen: Why I Dare to Call Myself a “PostgreSQL Database Recovery Expert”

After becoming a PostgreSQL ACE, Zhang Chen explains why he uses the title “PostgreSQL Database Recovery Expert” and how PDU evolved from offline extraction and WAL mining to fragment scanning and...

Zhang Chen: Why I Dare to Call Myself a “PostgreSQL Database Recovery Expert”

Planet PostgreSQL
Planet PostgreSQL · 2026-08-09T00:00:00Z

Debezium is a distributed CDC platform that tails PostgreSQL’s Write-Ahead Log and produces a Kafka event for every row change. It runs as a connector inside Kafka Connect, which means you deploy...

Debezium PostgreSQL Connector — CDC in Action

Kimserey Lam’s website, Software Development blog posts, videos and tutorials
Kimserey Lam’s website, Software Development blog posts, videos and tutorials · 2026-08-08T05:00:00Z
Shaun Thomas: Looking Forward to Postgres 19: Syntax Potpourri

Before diving into this final post covering new Postgres 19 features, I just want to say it's been a wild ride. Postgres 19 has been a veritable treasure trove of enhancements, perhaps more than...

Shaun Thomas: Looking Forward to Postgres 19: Syntax Potpourri

Planet PostgreSQL
Planet PostgreSQL · 2026-08-07T10:41:27Z
Andrei Mironov: PostgreSQL Row-Level Security for AI Agents: A Testable Setup

Build and verify PostgreSQL row-level security for AI agents with non-owner roles, FORCE RLS, explicit policies, controlled writes, and denial tests.

Andrei Mironov: PostgreSQL Row-Level Security for AI Agents: A Testable Setup

Planet PostgreSQL
Planet PostgreSQL · 2026-08-07T00:00:00Z
Antony Pegg: Postgres for Agentic AI: Your Database Is a Compute Layer, Not a Parking Lot

PostgreSQL is already the default database for agentic AI. That question is settled. But the more agentic your workloads get, the more your database needs to do. Models and workflows flood it with...

Antony Pegg: Postgres for Agentic AI: Your Database Is a Compute Layer, Not a Parking Lot

Planet PostgreSQL
Planet PostgreSQL · 2026-08-06T12:20:29Z
Avi Vallarapu: Tuning PostgreSQL HOT Updates - A HammerDB Benchmark

Vacuum is not a problem as we can help PostgreSQL avoid it with HOT updates. A HammerDB TPROC-C benchmark shows how tuning fillfactor for tables eliminates vacuum and reduces the bloat growth.

Avi Vallarapu: Tuning PostgreSQL HOT Updates - A HammerDB Benchmark

Planet PostgreSQL
Planet PostgreSQL · 2026-08-05T09:12:04Z
Postgres Changes gets AND filters, new operators, and column selection

Postgres Changes subscriptions can now combine filters with AND, match on more operators, and select only the columns you need in the payload.

Postgres Changes gets AND filters, new operators, and column selection

Blog - Supabase
Blog - Supabase · 2026-08-05T07:00:00Z

PostgreSQL logical replication lets an external consumer receive a stream of row-level changes (INSERT, UPDATE, DELETE, TRUNCATE) from the database in real time. It piggybacks on the Write-Ahead...

PostgreSQL Logical Replication and CDC

Kimserey Lam’s website, Software Development blog posts, videos and tutorials
Kimserey Lam’s website, Software Development blog posts, videos and tutorials · 2026-08-05T05:00:00Z

If you are a traditional database administrator (DBA) transitioning to Kubernetes, the cloud-native ecosystem can feel like a series of personal attacks on your workflow. For years, your...

Wellingtone Luvonga: Mastering PostgreSQL Configuration Management with CloudNativePG (CNPG)

Planet PostgreSQL
Planet PostgreSQL · 2026-08-04T05:00:38Z

“The database is locked up.” We heard some version of that sentence more than once this past week, from the same team, about what looked like the same problem. It was not the same problem. Once,...

Umair Shahid: PostgreSQL Lockup vs Stale Connection: How to Tell Them Apart

Planet PostgreSQL
Planet PostgreSQL · 2026-08-03T15:33:25Z
Elizabeth Garrett Christensen: Postgres COUNT(DISTINCT) Too Slow? Fast Approximation Guide

That's 320 milliseconds vs 671 ms for exact COUNT(DISTINCT) which is about twice as fast on a single scan. Also HLL isn't just about raw speed on one query. The function names are a bit verbose...

Elizabeth Garrett Christensen: Postgres COUNT(DISTINCT) Too Slow? Fast Approximation Guide

Planet PostgreSQL
Planet PostgreSQL · 2026-07-31T22:49:00Z

On 16th of March 2026, Peter Eisentraut committed patch: SQL Property Graph Queries (SQL/PGQ)   Implementation of SQL property graph queries, according to SQL/PGQ standard (ISO/IEC 9075-16:2023)....

Hubert 'depesz' Lubaczewski: Waiting for PostgreSQL 19 – SQL Property Graph Queries (SQL/PGQ)

Planet PostgreSQL
Planet PostgreSQL · 2026-07-31T16:57:44Z
Muhammad Aqeel: PostgreSQL 18's extension_control_path: Decoupling Extensions from Server Images

PostgreSQL 18 adds a Grand Unified Configuration (GUC), , that lets an extension's control and SQL files live outside the server's own directories. Together with Kubernetes's ImageVolume and...

Muhammad Aqeel: PostgreSQL 18's extension_control_path: Decoupling Extensions from Server Images

Planet PostgreSQL
Planet PostgreSQL · 2026-07-31T10:08:07Z
Shaun Thomas: Looking Forward to Postgres 19: The Cult of Functionality

Postgres ships with a genuinely bountiful catalog of built-in functions. There are literally thousands of them, covering everything from trigonometry to JSON path queries to full-text ranking....

Shaun Thomas: Looking Forward to Postgres 19: The Cult of Functionality

Planet PostgreSQL
Planet PostgreSQL · 2026-07-31T09:31:21Z
Massively parallel Postgres backups

PlanetScale backs up petabyte-scale sharded Postgres databases in hours using parallel infrastructure, object storage, and WAL replay.

Massively parallel Postgres backups

PlanetScale - Blog
PlanetScale - Blog · 2026-07-31T00:00:00Z
Christopher Winslett: Hybrid Search Patterns with Postgres and pgvector

Most production vector queries are not simple nearest-neighbor searches. Rarely is the query to return "the 10 most similar documents in the entire table." Typically, it's something closer to:...

Christopher Winslett: Hybrid Search Patterns with Postgres and pgvector

Planet PostgreSQL
Planet PostgreSQL · 2026-07-30T15:00:00Z

Transaction isolation levels control what data a transaction can see when other transactions are concurrently modifying the database. Understanding them is essential for CDC (Change Data Capture),...

Transaction Isolation and Exported Snapshots in PostgreSQL

Kimserey Lam’s website, Software Development blog posts, videos and tutorials
Kimserey Lam’s website, Software Development blog posts, videos and tutorials · 2026-07-29T05:00:00Z

Background Why a new driver Things you won't find in other Java drivers Batch INSERT rewritten to array parameters A real pipelining API It won't hand your password to an unencrypted...

Sehrope Sarkuni: Introducing pg-java, a new PostgreSQL driver for the JVM

Planet PostgreSQL
Planet PostgreSQL · 2026-07-29T04:00:00Z
Dimitri Fontaine: SQL Improvements in PostgreSQL 11–18: A Personal Selection

Seven major versions of PostgreSQL shipped between 2018 and 2025, one per year without exception, and each with a changelog of 150 to 200 user-visible changes. Each release covers a broad canvas —...

Dimitri Fontaine: SQL Improvements in PostgreSQL 11–18: A Personal Selection

Planet PostgreSQL
Planet PostgreSQL · 2026-07-28T14:39:25Z
  • <<
  • <
  • 1 (current)
  • 2
  • 3
  • >
  • >>
👤 个人中心
在公众号发送验证码完成验证
登录验证
在本设备完成一次验证即可继续使用

完成下面两步后,将自动完成登录并继续当前操作。

1 关注公众号
小红花技术领袖公众号二维码
小红花技术领袖
如果当前 App 无法识别二维码,请在微信搜索并关注该公众号
2 发送验证码
在公众号对话中发送下面 4 位验证码
友情链接: MOGE.AI 九胧科技 模力方舟 Gitee AI 菜鸟教程 Remio.AI DeekSeek连连 53AI 神龙海外代理IP IPIPGO全球代理IP 东波哥的博客 匡优考试在线考试系统 开源服务指南 蓝莺IM Solo 独立开发者社区 AI酷站导航 极客Fun 我爱水煮鱼 周报生成器 He3.app 简单简历 白鲸出海 T沙龙 职友集 TechParty 蟒周刊 Best AI Music Generator

小红花技术领袖俱乐部
小红花·文摘:汇聚分发优质内容
小红花技术领袖俱乐部
Copyright © 2021-
粤ICP备2022094092号-1
公众号 小红花技术领袖俱乐部公众号二维码
视频号 小红花技术领袖俱乐部视频号二维码