patroni.scripts.barman.utils module
Utilitary stuff to be used by Barman related scripts.
- exception patroni.scripts.barman.utils.ApiNotOk
Bases:
ExceptionThe
pg-backup-apiis not currently up and running.
- class patroni.scripts.barman.utils.OperationStatus(*values)
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)
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) None
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) str
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) Any
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() None
Ensure
pg-backup-apiis reachable andOK.- Raises:
ApiNotOk: ifpg-backup-apistatus is notOK.
- _get_request(url_path: str) Any
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) Any
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.
- exception patroni.scripts.barman.utils.RetriesExceeded
Bases:
ExceptionMaximum number of retries exceeded.
- patroni.scripts.barman.utils.retry(exceptions: Type[Exception] | Tuple[Type[Exception], ...]) Any
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.