ApiHBaseSnapshotResult Data Model

Detailed information about an HBase snapshot command.

Properties
name data type description
processedTableCount number Number of processed tables.
processedTables array of string The list of processed tables.

This is only available in the full view.

unprocessedTableCount number Number of unprocessed tables.
unprocessedTables array of string The list of unprocessed tables. Note that tables that are currently being processed will also be included in this list.

This is only available in the full view.

createdSnapshotCount number Number of snapshots created.
createdSnapshots array of ApiHBaseSnapshot List of snapshots created.

This is only available in the full view.

deletedSnapshotCount number Number of snapshots deleted.
deletedSnapshots array of ApiHBaseSnapshot List of snapshots deleted.

This is only available in the full view.

creationErrorCount number Number of errors detected when creating snapshots.
creationErrors array of ApiHBaseSnapshotError List of errors encountered when creating snapshots.

This is only available in the full view.

deletionErrorCount number Number of errors detected when deleting snapshots.
deletionErrors array of ApiHBaseSnapshotError List of errors encountered when deleting snapshots.

This is only available in the full view.

Example

{
  "processedTableCount" : 12345,
  "processedTables" : [ "...", "..." ],
  "unprocessedTableCount" : 12345,
  "unprocessedTables" : [ "...", "..." ],
  "createdSnapshotCount" : 12345,
  "createdSnapshots" : [ {
    "snapshotName" : "...",
    "tableName" : "...",
    "creationTime" : "...",
    "storage" : "REMOTE_S3"
  }, {
    "snapshotName" : "...",
    "tableName" : "...",
    "creationTime" : "...",
    "storage" : "LOCAL"
  } ],
  "deletedSnapshotCount" : 12345,
  "deletedSnapshots" : [ {
    "snapshotName" : "...",
    "tableName" : "...",
    "creationTime" : "...",
    "storage" : "LOCAL"
  }, {
    "snapshotName" : "...",
    "tableName" : "...",
    "creationTime" : "...",
    "storage" : "REMOTE_S3"
  } ],
  "creationErrorCount" : 12345,
  "creationErrors" : [ {
    "tableName" : "...",
    "snapshotName" : "...",
    "storage" : "REMOTE_S3",
    "error" : "..."
  }, {
    "tableName" : "...",
    "snapshotName" : "...",
    "storage" : "REMOTE_S3",
    "error" : "..."
  } ],
  "deletionErrorCount" : 12345,
  "deletionErrors" : [ {
    "tableName" : "...",
    "snapshotName" : "...",
    "storage" : "LOCAL",
    "error" : "..."
  }, {
    "tableName" : "...",
    "snapshotName" : "...",
    "storage" : "REMOTE_S3",
    "error" : "..."
  } ]
}