0Pricing
Advanced PostgreSQL: Indexing, Partitioning, Replication · Ders

Fiziksel Çoğaltma (Akış)

Salt okunur bir bekleme sunucusu oluşturmak için fiziksel akış çoğaltmasını kurmayı ve yapılandırmayı öğrenin.

Fiziksel Çoğaltma (Akış), CoddyKit'te ücretsiz bir Advanced PostgreSQL: Indexing, Partitioning, Replication dersidir. Bu, 4 dersinin 2. dersidir. Aşağıdan dersin tamamını ücretsiz okuyabilir, sonra tarayıcıda yerleşik kod editörü ve 7/24 yapay zeka koçu ile uygulamalı olarak pratik yapabilirsin. Bu, Advanced PostgreSQL: Indexing, Partitioning, Replication öğrenme yolunun bir parçasıdır ve ilerlemeniz web ve CoddyKit uygulaması arasında senkronize olur. Advanced PostgreSQL: Indexing, Partitioning, Replication kursu toplamda 4 dersten oluşur.

Bu dersin bazı bölümleri henüz çevrilmemiş olup İngilizce olarak gösterilmektedir.

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        md5

Base 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 -R

Standby 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_level and max_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_basebackup and configuring its connection using primary_conninfo.

Next, we'll put these concepts into practice by setting up a standby server!

Sıkça Sorulan Sorular

“Fiziksel Çoğaltma (Akış)” dersi ücretsiz mi?

Evet — “Fiziksel Çoğaltma (Akış)” dersin tüm metni burada web'de ücretsiz olarak okunabilir. Etkileşimli olarak pratik yapmak (yerleşik kod editörü ve 7/24 yapay zeka koçu) ve Advanced PostgreSQL: Indexing, Partitioning, Replication kursunun geri kalanını açmak için CoddyKit PRO'ya yükselt. Advanced PostgreSQL: Indexing, Partitioning, Replication kursu toplamda 4 dersten oluşur.

“Fiziksel Çoğaltma (Akış)” dersinde ne öğreneceğim?

Salt okunur bir bekleme sunucusu oluşturmak için fiziksel akış çoğaltmasını kurmayı ve yapılandırmayı öğrenin. Advanced PostgreSQL: Indexing, Partitioning, Replication ile uygulamalı kodu tarayıcıda doğrudan çalıştırarak pratik yaparsın ve 7/24 yapay zeka koçu dersi çalışırken sorularını yanıtlar.

Advanced PostgreSQL: Indexing, Partitioning, Replication öğrenmeye başlamak için deneyim gerekli mi?

Önceden deneyim gerekmez. CoddyKit'te Advanced PostgreSQL: Indexing, Partitioning, Replication, başlangıçtan ileri seviyeye kadar yapılandırıldığı için buradan başlayabilir veya başından başlayıp kendi hızında ilerleme yapabilirsin. Bu, 4 dersinin 2. dersidir.

“Fiziksel Çoğaltma (Akış)” dersi ne kadar sürer?

Çoğu CoddyKit dersi yaklaşık 5–10 dakika sürer. Her biri kısa ve etkileşimli olduğu için sabit ilerleme yaparsın ve web ile uygulama arasında tam olarak bıraktığın yerden devam edebilirsin.

Bu Advanced PostgreSQL: Indexing, Partitioning, Replication dersinde kod yazıp çalıştırabilir miyim?

Evet. Her Advanced PostgreSQL: Indexing, Partitioning, Replication dersi yerleşik bir kod editörü içerir, bu sayede tarayıcıda gerçek kod yazıp çalıştırabilir ve anlık yapay zeka geri bildirimi alırsın — yerel kurulum gerekli değildir.

Bu kursun tüm dersleri

  1. Çoğaltma Kavramlarını Anlama
  2. Fiziksel Çoğaltma (Akış)
  3. Bekleme Sunucusu Kurulumu
  4. Senkron ve Asenkron Çoğaltma Karşılaştırması
← Advanced PostgreSQL: Indexing, Partitioning, Replication Sayfasına Dön