patroni.scripts.barman.utils module
Utilitary stuff to be used by Barman related scripts.
- exception patroni.scripts.barman.utils.ApiNotOkView on GitHub
Bases:
ExceptionThe
pg-backup-apiis not currently up and running.
- class patroni.scripts.barman.utils.OperationStatus(value)View on GitHub
Bases:
IntEnumPossible status of
pg-backup-apioperations.- Variables:
IN_PROGRESS – the operation is still ongoing.
FAILED – the operation failed.
DONE – the operation finished successfully.
- DONE = 2
- FAILED = 1
- IN_PROGRESS = 0
- class patroni.scripts.barman.utils.PgBackupApi(api_url: str, cert_file: str | None, key_file: str | None, retry_wait: int, max_retries: int)View on GitHub
Bases:
objectFacilities for communicating with the
pg-backup-api.- Variables:
api_url – base URL to reach the
pg-backup-api.cert_file – certificate to authenticate against the
pg-backup-api, if required.key_file – certificate key to authenticate against the
pg-backup-api, if required.retry_wait – how long in seconds to wait before retrying a failed request to the
pg-backup-api.max_retries – maximum number of retries when
pg-backup-apireturns malformed responses.http – a HTTP pool manager for performing web requests.
- __init__(api_url: str, cert_file: str | None, key_file: str | None, retry_wait: int, max_retries: int) NoneView on GitHub
Create a new instance of
BarmanRecover.Make sure the
pg-backup-apiis reachable and running fine.Note
When using any method which send requests to the API, be aware that they might raise
RetriesExceededupon HTTP request errors.Similarly, when instantiating this class you may face an
ApiNotOk, if the API is down or returns a bogus status.- Parameters:
api_url – base URL to reach the
pg-backup-api.cert_file – certificate to authenticate against the
pg-backup-api, if required.key_file – certificate key to authenticate against the
pg-backup-api, if required.retry_wait – how long in seconds to wait before retrying a failed request to the
pg-backup-api.max_retries – maximum number of retries when
pg-backup-apireturns malformed responses.
- _build_full_url(url_path: str) strView on GitHub
Build the full URL by concatenating url_path with the base URL.
- Parameters:
url_path – path to be accessed in the
pg-backup-api.- Returns:
the full URL after concatenating.
- static _deserialize_response(response: HTTPResponse) AnyView on GitHub
Retrieve body from response as a deserialized JSON object.
- Parameters:
response – response from which JSON body will be deserialized.
- Returns:
the deserialized JSON body.
- _ensure_api_ok() NoneView on GitHub
Ensure
pg-backup-apiis reachable andOK.- Raises:
ApiNotOk: ifpg-backup-apistatus is notOK.
- _get_request(url_path: str) AnyView on GitHub
Perform a
GETrequest to url_path.- Parameters:
url_path – URL to perform the
GETrequest against.- Returns:
the deserialized response body.
- Raises:
RetriesExceeded: raised from the correspondingurllib3exception.
- _post_request(url_path: str, body: Any) AnyView on GitHub
Perform a
POSTrequest to url_path serializing body as JSON.- Parameters:
url_path – URL to perform the
POSTrequest against.body – the body to be serialized as JSON and sent in the request.
- Returns:
the deserialized response body.
- Raises:
RetriesExceeded: raised from the correspondingurllib3exception.
- static _serialize_request(body: Any) AnyView on GitHub
Serialize a request body.
- Parameters:
body – content of the request body to be serialized.
- Returns:
the serialized request body.
- create_config_switch_operation(*args: Any, **kwargs: Any) AnyView on GitHub
- create_recovery_operation(*args: Any, **kwargs: Any) AnyView on GitHub
- get_operation_status(*args: Any, **kwargs: Any) AnyView on GitHub
- exception patroni.scripts.barman.utils.RetriesExceededView on GitHub
Bases:
ExceptionMaximum number of retries exceeded.
- patroni.scripts.barman.utils.retry(exceptions: Type[Exception] | Tuple[Type[Exception], ...]) AnyView on GitHub
Retry an operation n times if expected exceptions are faced.
Note
Should be used as a decorator of a class’ method as it expects the first argument to be a class instance.
The class which method is going to be decorated should contain a couple attributes:
max_retries: maximum retry attempts before failing;retry_wait: how long in seconds to wait before retrying.
- Parameters:
exceptions – exceptions that could trigger a retry attempt.
- Raises:
RetriesExceeded: if the maximum number of attempts has beenexhausted.
- patroni.scripts.barman.utils.set_up_logging(log_file: str | None = None) NoneView on GitHub
Set up logging to file, if log_file is given, otherwise to console.
- Parameters:
log_file – file where to log messages, if any.