From: | Michael Paquier <michael(at)paquier(dot)xyz> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Refactor tar method of walmethods.c to rely on the compression m |
Date: | 2022-01-07 04:49:48 |
Message-ID: | E1n5hCG-0006ld-90@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers pgsql-hackers |
Refactor tar method of walmethods.c to rely on the compression method
Since d62bcc8, the directory method of walmethods.c uses the compression
method to determine which code path to take. The tar method, used by
pg_basebackup --format=t, was inconsistent regarding that, as it relied
on the compression level to check if no compression or gzip should be
used. This commit makes the code more consistent as a whole in this
file, making the tar logic use a compression method rather than
assigning COMPRESSION_NONE that would be ignored.
The options of pg_basebackup are planned to be reworked but we are not
sure yet of the shape they should have as this has some dependency with
the integration of the server-side compression for base backups, so this
is left out for the moment. This change has as benefit to make easier
the future integration of new compression methods for the tar method of
walmethods.c, for the client-side compression.
Reviewed-by: Georgios Kokolatos
Discussion: https://postgr.es/m/Yb3GEgWwcu4wZDuA@paquier.xyz
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/000f3adfdc4336df83777eba86ce48f36cb6c6e9
Modified Files
--------------
src/bin/pg_basebackup/pg_basebackup.c | 3 +-
src/bin/pg_basebackup/walmethods.c | 57 ++++++++++++++++++++++-------------
2 files changed, 38 insertions(+), 22 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Paquier | 2022-01-07 05:14:04 | pgsql: Add TAP tests for pg_basebackup with compression |
Previous Message | Tom Lane | 2022-01-06 21:47:14 | pgsql: Prevent altering partitioned table's rowtype, if it's used elsew |
From | Date | Subject | |
---|---|---|---|
Next Message | tanghy.fnst@fujitsu.com | 2022-01-07 05:17:21 | RE: Support tab completion for upper character inputs in psql |
Previous Message | Justin Pryzby | 2022-01-07 04:43:37 | Re: Map WAL segment files on PMEM as WAL buffers |