### Eclipse Workspace Patch 1.0 #P hbase-0.20-ro Index: src/webapps/master/table.jsp =================================================================== --- src/webapps/master/table.jsp (revision 819224) +++ src/webapps/master/table.jsp (working copy) @@ -27,6 +27,7 @@ master.getServerAddressToServerInfo(); String tableHeader = "
| Name | Region Server | Encoded Name | Start Key | End Key |
|---|
| Attribute Name | Value | Description |
|---|---|---|
| Enabled | <%= hbadmin.isTableEnabled(table.getTableName()) %> | Is the table enabled |
| Fragmentation | <%= frags.get(tableName) != null ? frags.get(tableName).intValue() + "%" : "n/a" %> | How fragmented is the table. After a major compaction it is 0%. |
| Table | Description | |
|---|---|---|
| <%= Bytes.toString(HConstants.ROOT_TABLE_NAME) %> | The -ROOT- table holds references to all .META. regions. | |
| Table | Frag. | Description |
| <%= Bytes.toString(HConstants.ROOT_TABLE_NAME) %> | +<%= frags.get("-ROOT-") != null ? frags.get("-ROOT-").intValue() + "%" : "n/a" %> | +The -ROOT- table holds references to all .META. regions. | +
| <%= Bytes.toString(HConstants.META_TABLE_NAME) %> | The .META. table holds references to all User Table regions | |
| <%= Bytes.toString(HConstants.META_TABLE_NAME) %> | +<%= frags.get(".META.") != null ? frags.get(".META.").intValue() + "%" : "n/a" %> | +The .META. table holds references to all User Table regions | +
| Table | Description | |
|---|---|---|
| Table | Frag. | Description |
| ><%= htDesc.getNameAsString() %> | <%= htDesc.toString() %> | |
| ><%= htDesc.getNameAsString() %> | +<%= frags.get(htDesc.getNameAsString()) != null ? frags.get(htDesc.getNameAsString()).intValue() + "%" : "n/a" %> | +<%= htDesc.toString() %> |