diff --git a/src/main/asciidoc/_chapters/ops_mgt.adoc b/src/main/asciidoc/_chapters/ops_mgt.adoc index 200c380051d..f2ee1cc7db6 100644 --- a/src/main/asciidoc/_chapters/ops_mgt.adoc +++ b/src/main/asciidoc/_chapters/ops_mgt.adoc @@ -1742,6 +1742,28 @@ image::bc_l1.png[] This is not an exhaustive list of all the screens and reports available. Have a look in the Web UI. +=== Snapshot Space Usage Monitoring + +Starting with HBase 0.95, Snapshot usage information on individual snapshots was shown in the HBase Master Web UI. This was further enhanced starting with HBase 1.3 to show the total Storefile size of the Snapshot Set. The following metrics are shown in the Master Web UI with HBase 1.3 and later. + +* Shared Storefile Size is the Storefile size shared between snapshots and active tables. +* Mob Storefile Size is the Mob Storefile size shared between snapshots and active tables. +* Archived Storefile Size is the Storefile size in Archive. + +The format of Archived Storefile Size is NNN(MMM). NNN is the total Storefile size in Archive, MMM is the total Storefile size in Archive that is specific to the snapshot (not shared with other snapshots and tables). + +.Master Snapshot Overview +image::master-snapshot.png[] + +.Snapshot Storefile Stats Example 1 +image::1-snapshot.png[] + +.Snapshot Storefile Stats Example 2 +image::2-snapshots.png[] + +.Empty Snapshot Storfile Stats Example +image::empty-snapshots.png[] + == Cluster Replication NOTE: This information was previously available at diff --git a/src/site/resources/images/1-snapshot.png b/src/site/resources/images/1-snapshot.png new file mode 100644 index 00000000000..a903902b413 Binary files /dev/null and b/src/site/resources/images/1-snapshot.png differ diff --git a/src/site/resources/images/2-snapshots.png b/src/site/resources/images/2-snapshots.png new file mode 100644 index 00000000000..2fd45748646 Binary files /dev/null and b/src/site/resources/images/2-snapshots.png differ diff --git a/src/site/resources/images/empty-snapshots.png b/src/site/resources/images/empty-snapshots.png new file mode 100644 index 00000000000..ce92e0fdb94 Binary files /dev/null and b/src/site/resources/images/empty-snapshots.png differ diff --git a/src/site/resources/images/master-snapshot.png b/src/site/resources/images/master-snapshot.png new file mode 100644 index 00000000000..51ffc9aa704 Binary files /dev/null and b/src/site/resources/images/master-snapshot.png differ