forked from 2ndquadrant-it/puppet-barman
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support create_slot
and primary_conninfo
parameters
#13
Merged
deric
merged 1 commit into
deric:master
from
shamil:support_create_slot_and_primary_conninfo
Nov 22, 2024
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,8 +65,6 @@ | |
# @param archiver_batch_size | ||
# Setting this option enables batch processing of WAL files. | ||
# The default processes all currently available files. | ||
# @param backup_directory | ||
# Directory where backup data for a server will be placed. | ||
# @param backup_method | ||
# Configure the method barman used for backup execution. If set to rsync (default), | ||
# barman will execute backup using the rsync command. If set to postgres barman will use the | ||
|
@@ -87,6 +85,9 @@ | |
# @param compression | ||
# Compression algorithm. Currently supports 'gzip' (default), | ||
# 'bzip2', and 'custom'. Disabled if false. | ||
# @param create_slot | ||
# Determines whether Barman should automatically create a replication slot if it’s | ||
# not already present for streaming WAL files. One of 'auto' or 'manual' (default). | ||
# @param custom_compression_filter | ||
# Customised compression algorithm applied to WAL files. | ||
# @param custom_decompression_filter | ||
|
@@ -207,10 +208,6 @@ | |
# pg_basebackup command. Only available with | ||
# pg_basebackup >= 9.3. By default it is set to | ||
# barman_streaming_backup. | ||
# @param streaming_conninfo | ||
# Connection string used by Barman to connect to the | ||
# Postgres server via streaming replication protocol. By | ||
# default it is set to the same value as *conninfo*. | ||
Comment on lines
-210
to
-213
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Obsolete doc, it's only relevant in the server scope. |
||
# @param streaming_wals_directory | ||
# Directory where WAL files are streamed from the | ||
# PostgreSQL server to Barman. | ||
|
@@ -291,6 +288,7 @@ | |
Optional[Integer] $basebackup_retry_sleep = undef, | ||
Optional[Integer] $basebackup_retry_times = undef, | ||
Optional[Integer] $check_timeout = undef, | ||
Barman::CreateSlot $create_slot = undef, | ||
Optional[String] $custom_compression_filter = undef, | ||
Optional[String] $custom_decompression_filter = undef, | ||
Stdlib::IP::Address $exported_ipaddress = "${facts['networking']['ip']}/32", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# create_slow parrams | ||
type Barman::CreateSlot = Optional[Enum['manual', 'auto']] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Obsolete doc