ApiHdfsSnapshotResult Data Model

Detailed information about an HDFS snapshot command.

Properties
name data type description
processedPathCount number Number of processed paths.
processedPaths array of string The list of processed paths.

This is only available in the full view.

unprocessedPathCount number Number of unprocessed paths.
unprocessedPaths array of string The list of unprocessed paths. Note that paths 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 ApiHdfsSnapshot List of snapshots created.

This is only available in the full view.

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

This is only available in the full view.

creationErrorCount number Number of errors detected when creating snapshots.
creationErrors array of ApiHdfsSnapshotError 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 ApiHdfsSnapshotError List of errors encountered when deleting snapshots.

This is only available in the full view.

Example

{
  "processedPathCount" : 12345,
  "processedPaths" : [ "...", "..." ],
  "unprocessedPathCount" : 12345,
  "unprocessedPaths" : [ "...", "..." ],
  "createdSnapshotCount" : 12345,
  "createdSnapshots" : [ {
    "path" : "...",
    "snapshotName" : "...",
    "snapshotPath" : "...",
    "creationTime" : "..."
  }, {
    "path" : "...",
    "snapshotName" : "...",
    "snapshotPath" : "...",
    "creationTime" : "..."
  } ],
  "deletedSnapshotCount" : 12345,
  "deletedSnapshots" : [ {
    "path" : "...",
    "snapshotName" : "...",
    "snapshotPath" : "...",
    "creationTime" : "..."
  }, {
    "path" : "...",
    "snapshotName" : "...",
    "snapshotPath" : "...",
    "creationTime" : "..."
  } ],
  "creationErrorCount" : 12345,
  "creationErrors" : [ {
    "path" : "...",
    "snapshotName" : "...",
    "error" : "..."
  }, {
    "path" : "...",
    "snapshotName" : "...",
    "error" : "..."
  } ],
  "deletionErrorCount" : 12345,
  "deletionErrors" : [ {
    "path" : "...",
    "snapshotName" : "...",
    "error" : "..."
  }, {
    "path" : "...",
    "snapshotName" : "...",
    "error" : "..."
  } ]
}