partition_backup_progress
Creates, updates, deletes, gets or lists a partition_backup_progress resource.
Overview
| Name | partition_backup_progress |
| Type | Resource |
| Id | azure.service_fabric_dataplane.partition_backup_progress |
Fields
The following fields are returned by SELECT queries:
- get_partition_backup_progress
| Name | Datatype | Description |
|---|---|---|
BackupId | string | |
BackupLocation | string | |
BackupState | string | |
EpochOfLastBackupRecord | object | An Epoch is a configuration number for the partition as a whole. When the configuration of the replica set changes, for example when the Primary replica changes, the operations that are replicated from the new Primary replica are said to be a new Epoch from the ones which were sent by the old Primary replica. |
FailureError | object | Error object containing error code and error message. All required parameters must be populated in order to send to Azure. |
LsnOfLastBackupRecord | string | |
TimeStampUtc | string (date-time) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_partition_backup_progress | select | partition_id, endpoint | timeout | Gets details for the latest backup triggered for this partition. Returns information about the state of the latest backup along with details or failure reason in case of completion. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
endpoint | string | The service endpoint host (no scheme). (default: ) |
partition_id | string | The identity of the partition. |
timeout | integer (int64) | The server timeout for performing the operation in seconds. This timeout specifies the time duration that the client is willing to wait for the requested operation to complete. The default value for this parameter is 60 seconds. |
SELECT examples
- get_partition_backup_progress
Gets details for the latest backup triggered for this partition. Returns information about the state of the latest backup along with details or failure reason in case of completion.
SELECT
BackupId,
BackupLocation,
BackupState,
EpochOfLastBackupRecord,
FailureError,
LsnOfLastBackupRecord,
TimeStampUtc
FROM azure.service_fabric_dataplane.partition_backup_progress
WHERE partition_id = '{{ partition_id }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;