Surveillance de l’état de la réplication
Apprenez à surveiller efficacement l’état et la santé de votre configuration de réplication afin d’identifier et de résoudre les problèmes de manière proactive.
Surveillance de l’état de la réplication est une leçon Advanced PostgreSQL: Indexing, Partitioning, Replication gratuite sur CoddyKit. Ceci est la leçon 2 sur 4. Tu peux lire la leçon complète ci-dessous gratuitement — puis la pratiquer en direct dans le navigateur avec un éditeur de code intégré et un tuteur IA 24/7. Elle fait partie du parcours d'apprentissage Advanced PostgreSQL: Indexing, Partitioning, Replication, et ta progression se synchronise sur le web et l'application CoddyKit. Le cours Advanced PostgreSQL: Indexing, Partitioning, Replication comprend 4 leçons au total.
Certaines parties de cette leçon n'ont pas encore été traduites et s'affichent en anglais.
Why Monitor Replication?
PostgreSQL replication is key for high availability and read scalability. But how do you know if it's working correctly?
Monitoring replication health is crucial to ensure your standby servers are up-to-date and ready to take over if the primary fails. Without it, you might discover issues only when it's too late!
Key Replication Metrics
When monitoring replication, you'll want to keep an eye on a few key metrics:
- Replication Status: Is the standby connected and actively receiving data?
- Replication Lag: How far behind is the standby compared to the primary?
- WAL Activity: Are Write-Ahead Log (WAL) files being transferred and applied correctly?
The `pg_stat_replication` View
PostgreSQL provides a powerful system view called pg_stat_replication. This view offers detailed information about each active standby server connected to your primary.
It's your go-to source for real-time replication status and progress.
`pg_stat_replication` Live
Let's see what information pg_stat_replication provides. Run this query on your primary server:
SELECT
client_addr,
state,
sync_state,
sync_priority
FROM pg_stat_replication;Understanding `state` & `sync_state`
The state and sync_state columns are vital:
state: Shows the standby's current activity (e.g.,streaming,catching up,backup).streamingmeans it's actively receiving WAL records.sync_state: Indicates if the standby isasync(asynchronous) orsync(synchronous). Synchronous standbys guarantee data durability across multiple servers.
Understanding Replication Lag
Replication lag is the delay between when a transaction commits on the primary and when it's applied on the standby.
High lag means your standby isn't up-to-date. In a failover scenario, this could lead to data loss. We want lag to be as low as possible, ideally zero.
Calculating Replication Lag
You can calculate replication lag in bytes using pg_wal_lsn_diff(). This function measures the difference between two Log Sequence Numbers (LSNs).
A common way to see lag is by comparing the primary's current LSN to the standby's replay_lsn from pg_stat_replication.
SELECT
client_addr,
pg_wal_lsn_diff(pg_current_wal_lsn(), replay_lsn) AS lag_bytes
FROM pg_stat_replication;Standby Recovery Status
What about checking the standby server itself? You can use the pg_is_in_recovery() function to confirm if a server is currently acting as a standby and applying WAL records.
It returns true if the server is in recovery mode (i.e., a standby) and false if it's a primary.
SELECT pg_is_in_recovery();WAL Progress & LSNs
Beyond simple lag, you can track the progress of WAL application more granularly. The pg_wal_lsn_diff() function is also useful for comparing any two LSNs.
For example, you could compare write_lsn, flush_lsn, and replay_lsn from pg_stat_replication to pinpoint where delays are occurring (writing to disk, flushing, or replaying).
Quick Check: Replication Status
You run SELECT client_addr, state, sync_state FROM pg_stat_replication; on your primary and see the following output for one standby:
client_addr | state | sync_state
------------+----------+-----------
192.168.1.5 | streaming | asyncWhich of the following statements are true about this standby?
Recap & Next Steps
You've learned how to monitor PostgreSQL replication health! We explored:
- Why monitoring lag and status is critical.
- Using the
pg_stat_replicationview on the primary. - Interpreting
stateandsync_state. - Calculating replication lag with
pg_wal_lsn_diff(). - Checking standby recovery status with
pg_is_in_recovery().
Regularly checking these metrics helps ensure your high availability setup is robust and reliable!
Questions Fréquemment Posées
La leçon « Surveillance de l’état de la réplication » est-elle gratuite ?
Oui — le texte complet de « Surveillance de l’état de la réplication » est gratuit à lire ici sur le web. Pour la pratiquer de manière interactive (un éditeur de code intégré et un tuteur IA 24/7) et déverrouiller le reste du cours Advanced PostgreSQL: Indexing, Partitioning, Replication, passe à CoddyKit PRO. Le cours Advanced PostgreSQL: Indexing, Partitioning, Replication comprend 4 leçons au total.
Qu'est-ce que j'apprendrai dans « Surveillance de l’état de la réplication » ?
Apprenez à surveiller efficacement l’état et la santé de votre configuration de réplication afin d’identifier et de résoudre les problèmes de manière proactive. Tu pratiques Advanced PostgreSQL: Indexing, Partitioning, Replication avec du code pratique que tu exécutes directement dans le navigateur, et un tuteur IA 24/7 répond à tes questions au fur et à mesure que tu avances dans la leçon.
Dois-je avoir de l'expérience pour commencer Advanced PostgreSQL: Indexing, Partitioning, Replication ?
Aucune expérience préalable n'est requise. Advanced PostgreSQL: Indexing, Partitioning, Replication sur CoddyKit est structuré pour les débutants jusqu'aux apprenants avancés, donc tu peux commencer ici ou depuis le début et avancer à ton rythme. Ceci est la leçon 2 sur 4.
Combien de temps prend la leçon « Surveillance de l’état de la réplication » ?
La plupart des leçons CoddyKit prennent environ 5–10 minutes. Chacune est courte et interactive, tu progresses régulièrement et tu repiques exactement où tu t'es arrêté sur le web et l'app.
Peux-tu écrire et exécuter du code dans cette leçon Advanced PostgreSQL: Indexing, Partitioning, Replication ?
Oui. Chaque leçon Advanced PostgreSQL: Indexing, Partitioning, Replication inclut un éditeur de code intégré, tu écris et exécutes du vrai code directement dans ton navigateur et tu reçois des retours IA instantanés — aucune configuration locale requise.
Toutes les leçons de ce cours
- Outils de basculement automatique (Patroni)
- Surveillance de l’état de la réplication
- Stratégies de reprise après sinistre
- Routage des connexions avec PgBouncer et HAProxy