# Copyright (c) 2023-2025, PostgreSQL Global Development Group
# Test logical replication slots are always flushed to disk during a shutdown # checkpoint.
use strict;
use warnings FATAL => 'all';
use PostgreSQL::Test::Cluster;
use PostgreSQL::Test::Utils;
use Test::More;
sub compare_confirmed_flush
{
my ($node, $confirmed_flush_from_log) = @_;
# Fetch Latest checkpoint location from the control file
my ($stdout, $stderr) =
run_command([ 'pg_controldata', $node->data_dir ]);
my @control_data = split("\n", $stdout);
my $latest_checkpoint = undef; foreach (@control_data)
{ if ($_ =~ /^Latest checkpoint location:\s*(.*)$/mg)
{
$latest_checkpoint = $1;
last;
}
}
die "Latest checkpoint location not found in control file\n"
unless defined($latest_checkpoint);
# Is it same as the value read from log?
ok( $latest_checkpoint eq $confirmed_flush_from_log, "Check that the slot's confirmed_flush LSN is the same as the latest_checkpoint location"
);
return;
}
# Initialize publisher node
my $node_publisher = PostgreSQL::Test::Cluster->new('pub');
$node_publisher->init(allows_streaming => 'logical'); # Avoid checkpoint during the test, otherwise, the latest checkpoint location # will change.
$node_publisher->append_conf( 'postgresql.conf', q{
checkpoint_timeout = 1h
autovacuum = off
});
$node_publisher->start;
# Create subscriber node
my $node_subscriber = PostgreSQL::Test::Cluster->new('sub');
$node_subscriber->init;
$node_subscriber->start;
# Create tables
$node_publisher->safe_psql('postgres', "CREATE TABLE test_tbl (id int)");
$node_subscriber->safe_psql('postgres', "CREATE TABLE test_tbl (id int)");
# To avoid a shutdown checkpoint WAL record (that gets generated as part of # the publisher restart below) falling into a new page, advance the WAL # segment. Otherwise, the confirmed_flush_lsn and shutdown_checkpoint # location won't match.
$node_publisher->advance_wal(1);
# Insert some data
$node_publisher->safe_psql('postgres', "INSERT INTO test_tbl VALUES (generate_series(1, 5));");
# Setup logical replication
my $publisher_connstr = $node_publisher->connstr . ' dbname=postgres';
$node_publisher->safe_psql('postgres', "CREATE PUBLICATION pub FOR ALL TABLES");
$node_subscriber->safe_psql('postgres', "CREATE SUBSCRIPTION sub CONNECTION '$publisher_connstr' PUBLICATION pub"
);
my $result =
$node_subscriber->safe_psql('postgres', "SELECT count(*) FROM test_tbl");
is($result, qq(5), "check initial copy was done");
my $offset = -s $node_publisher->logfile;
# Note: Don't insert any data on the publisher that may cause the shutdown # checkpoint to fall into a new WAL file. See the comments atop advance_wal() # above.
# Restart the publisher to ensure that the slot will be flushed if required
$node_publisher->restart();
# Wait until the walsender creates decoding context
$node_publisher->wait_for_log(
qr/Streaming transactions committing after ([A-F0-9]+\/[A-F0-9]+), reading WAL from ([A-F0-9]+\/[A-F0-9]+)./,
$offset);
# Extract confirmed_flush from the logfile
my $log_contents = slurp_file($node_publisher->logfile, $offset);
$log_contents =~
qr/Streaming transactions committing after ([A-F0-9]+\/[A-F0-9]+), reading WAL from ([A-F0-9]+\/[A-F0-9]+)./
or die "could not get confirmed_flush_lsn";
# Ensure that the slot's confirmed_flush LSN is the same as the # latest_checkpoint location.
compare_confirmed_flush($node_publisher, $1);
done_testing();
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.26 Sekunden
(vorverarbeitet am 2026-08-10)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.