物理复制(流式)
学习设置和配置物理流式复制,以创建只读备用服务器。
物理复制(流式) 是 CoddyKit 上的免费 Advanced PostgreSQL: Indexing, Partitioning, Replication 课时。 这是第 2 节课,共 4 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 Advanced PostgreSQL: Indexing, Partitioning, Replication 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 Advanced PostgreSQL: Indexing, Partitioning, Replication 课程共包含 4 节课。
本课时的部分内容尚未翻译,以英文显示。
Physical Replication: A Byte-for-Byte Copy
Physical replication in PostgreSQL creates an exact, byte-for-byte copy of your primary database server. Think of it as mirroring the entire data directory and all changes that happen.
This method is highly robust for disaster recovery and provides a consistent read-only copy of your data, known as a standby server. If your primary server fails, you can promote the standby to become the new primary.
How Streaming Replication Works
Streaming replication is a form of physical replication where the primary server continuously sends its Write-Ahead Log (WAL) records to the standby server. The standby then applies these WAL records in real-time.
This ensures the standby is always up-to-date with the primary, minimizing data loss in case of a failure. It's like a constant stream of updates flowing from one database to another.
Primary Config: `wal_level`
To enable streaming replication, the primary server must generate enough WAL information. The wal_level parameter controls this.
It must be set to replica (or logical for more advanced features) in your postgresql.conf. The default minimal level is not sufficient for replication.
Let's check the current wal_level:
SHOW wal_level;Primary Config: `max_wal_senders`
The primary server needs processes to send WAL data to standby servers. These are called WAL sender processes.
The max_wal_senders parameter determines the maximum number of concurrent connections from standby servers. Set this to at least the number of standbys you plan to have, plus some for potential cascading standbys.
Check your current setting:
SHOW max_wal_senders;Creating a Replication User
It's best practice to create a dedicated PostgreSQL user for replication. This user needs the REPLICATION privilege, which allows it to connect and stream WAL data.
This separation enhances security and makes it clear which connections are for replication purposes.
Here's how you might create one (replace with a strong password):
CREATE USER repl_user WITH REPLICATION ENCRYPTED PASSWORD 'your_secret_password';Allowing Standby Connections (`pg_hba.conf`)
The primary server needs to allow connections from the standby server. This is configured in the pg_hba.conf file, which controls client authentication.
You'll need to add an entry for your replication user, specifying the IP address or range of your standby server(s). This tells PostgreSQL to trust connections from those standbys.
# Example pg_hba.conf entry:
host replication repl_user 192.168.1.100/32 md5Base Backup for Standby
Before a standby can start streaming WAL, it needs an initial copy of the primary's data directory. This is called a base backup.
PostgreSQL provides the pg_basebackup utility to create this snapshot. It copies all data files from the primary to the standby, ensuring they start from a consistent point.
This command is typically run from the standby server:
# Example pg_basebackup command (run on standby):
pg_basebackup -h primary_ip -p 5432 -U repl_user -D /var/lib/postgresql/16/main -F p -Xs -P -RStandby Configuration: `standby.signal`
Once the base backup is in place, the standby server needs to know it's a standby. For PostgreSQL 12 and later, this is signaled by the presence of an empty file named standby.signal in the data directory.
This file tells PostgreSQL to start in recovery mode and look for replication configuration.
Standby Configuration: `primary_conninfo`
The standby server also needs to know how to connect to the primary. This is specified using the primary_conninfo parameter in its postgresql.conf file.
It's a connection string similar to what you'd use with psql, including the primary's host, port, replication user, and password.
You can set this using ALTER SYSTEM on the standby:
ALTER SYSTEM SET primary_conninfo = 'host=primary_ip port=5432 user=repl_user password=your_secret_password application_name=my_standby';Replication Config Check
You've learned about the core parameters for setting up streaming replication. Let's test your knowledge!
Recap: Physical Streaming Replication
In this lesson, we explored physical streaming replication. You learned that it creates a byte-for-byte copy of the primary database by continuously sending WAL records.
- We covered primary server configurations like
wal_levelandmax_wal_senders. - You also learned about creating a dedicated replication user and configuring
pg_hba.conf. - Finally, we touched on preparing the standby with a base backup using
pg_basebackupand configuring its connection usingprimary_conninfo.
Next, we'll put these concepts into practice by setting up a standby server!
常见问题解答
「物理复制(流式)」课时是免费的吗?
是的 — 「物理复制(流式)」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 Advanced PostgreSQL: Indexing, Partitioning, Replication 课程的其余内容,请升级到 CoddyKit PRO。 Advanced PostgreSQL: Indexing, Partitioning, Replication 课程共包含 4 节课。
「物理复制(流式)」这节课中我会学到什么?
学习设置和配置物理流式复制,以创建只读备用服务器。 你通过在浏览器中直接运行的动手代码来练习 Advanced PostgreSQL: Indexing, Partitioning, Replication,全天候 AI 导师会在你学习这节课的过程中回答你的问题。
学习 Advanced PostgreSQL: Indexing, Partitioning, Replication 需要有经验吗?
无需任何先前经验。CoddyKit 上的 Advanced PostgreSQL: Indexing, Partitioning, Replication 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 2 节课,共 4 节。
「物理复制(流式)」课时需要多长时间?
大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。
我能在这节 Advanced PostgreSQL: Indexing, Partitioning, Replication 课中编写并运行代码吗?
能。每节 Advanced PostgreSQL: Indexing, Partitioning, Replication 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。