You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-08-10 22:21:39 +02:00
v1.25: S3 Performance Improvements
Bug Fixes: * Fix custom settings for compress-level option being ignored. (Reported by Jens Wilke.) * Remove error when overlapping timelines are detected. Overlapping timelines are valid in many Point-in-Time-Recovery (PITR) scenarios. (Reported by blogh.) * Fix instances where database-id was not rendered as an integer in JSON info output. (Fixed by Cynthia Shang. Reported by Jason O'Donnell.) Features: * Improve performance of list requests on S3. Any beginning literal portion of a filter expression is used to generate a search prefix which often helps keep the request small enough to avoid rate limiting. (Suggested by Mihail Shvein.)
This commit is contained in:
@@ -6,7 +6,7 @@ pgBackRest aims to be a simple, reliable backup and restore system that can seam
|
||||
|
||||
Instead of relying on traditional backup tools like tar and rsync, pgBackRest implements all backup features internally and uses a custom protocol for communicating with remote systems. Removing reliance on tar and rsync allows for better solutions to database-specific backup challenges. The custom remote protocol allows for more flexibility and limits the types of connections that are required to perform a backup which increases security.
|
||||
|
||||
pgBackRest [v1.24](https://github.com/pgbackrest/pgbackrest/releases/tag/release/1.24) is the current stable release. Release notes are on the [Releases](http://www.pgbackrest.org/release.html) page.
|
||||
pgBackRest [v1.25](https://github.com/pgbackrest/pgbackrest/releases/tag/release/1.25) is the current stable release. Release notes are on the [Releases](http://www.pgbackrest.org/release.html) page.
|
||||
|
||||
## Features
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -10,7 +10,7 @@
|
||||
</intro>
|
||||
|
||||
<release-list>
|
||||
<release date="XXXX-XX-XX" version="1.25dev" title="UNDER DEVELOPMENT">
|
||||
<release date="2017-10-24" version="1.25" title="S3 Performance Improvements">
|
||||
<release-core-list>
|
||||
<release-bug-list>
|
||||
<release-item>
|
||||
|
@@ -487,8 +487,8 @@ my $oConfigHelpData =
|
||||
summary =>
|
||||
"Level for stderr logging.",
|
||||
description =>
|
||||
"Specifies which log levels must will be output to stderr rather than stdout (specified by log-level-console). " .
|
||||
"The timestamp and process will not be output to stderr.\n" .
|
||||
"Specifies which log levels will output to stderr rather than stdout (specified by log-level-console). The " .
|
||||
"timestamp and process will not be output to stderr.\n" .
|
||||
"\n" .
|
||||
"The following log levels are supported:\n" .
|
||||
"\n" .
|
||||
|
@@ -35,7 +35,7 @@ use constant BACKREST_BIN => abs_path(
|
||||
# Defines the current version of the BackRest executable. The version number is used to track features but does not affect what
|
||||
# repositories or manifests can be read - that's the job of the format number.
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
use constant BACKREST_VERSION => '1.25dev';
|
||||
use constant BACKREST_VERSION => '1.25';
|
||||
push @EXPORT, qw(BACKREST_VERSION);
|
||||
|
||||
# Format Format Number
|
||||
|
Reference in New Issue
Block a user