@@ -97,7 +97,7 @@ All metrics are aggregated, and exposed through a **RESTful API (/storagedistrib
9797| totalOzoneCapacity | Long | Total raw capacity across all DataNodes in bytes. |
9898| totalOzoneUsedSpace | Long | Total used space across all DataNodes in bytes. |
9999| totalOzoneFreeSpace | Long | Total free space across all DataNodes in bytes. |
100- | totalOzonePreAllocatedContainerSpace | Long | Pre-allocated space for open containers. |
100+ | totalOzoneCommittedSpace | Long | Pre-allocated space for open containers. |
101101| totalOzoneMinimumFreeSpace | Long | Sum of all the minimumFreeSpace configured across all DataNodes in bytes. |
102102
103103##### globalNamespace Object
@@ -110,7 +110,7 @@ All metrics are aggregated, and exposed through a **RESTful API (/storagedistrib
110110| Field | Type | Description |
111111| ----------------------------| --------| --------------------------------------------------------|
112112| openKeyBytes | Object | Bytes currently held by open keys (not yet committed). |
113- | committedKeyBytes | Long | Bytes committed to existing keys. |
113+ | finalizedKeyBytes | Long | Total bytes in keys that have completed writing. |
114114
115115##### openKeyBytes Object
116116| Field | Type | Description |
@@ -129,7 +129,7 @@ Each object represents the storage metrics for a single DataNode.
129129| capacity | Long | Total capacity of the DataNode in bytes. |
130130| used | Long | Used space on the DataNode in bytes. |
131131| remaining | Long | Remaining free space on the DataNode in bytes. |
132- | committed | Long | Bytes committed to keys on this DataNode . |
132+ | committed | Long | Bytes pre allocated for the containers . |
133133| minimumFreeSpace | Long | Configured minimum free space in bytes. |
134134| reserved | Long | Configured reserved space in bytes. |
135135
@@ -143,7 +143,7 @@ Each object represents the storage metrics for a single DataNode.
143143 "totalOzoneCapacity" : 3242976054744 ,
144144 "totalOzoneUsedSpace" : 15744356352 ,
145145 "totalOzoneFreeSpace" : 3002519420928 ,
146- "totalOzonePreAllocatedContainerSpace " : 0 ,
146+ "totalOzoneCommittedSpace " : 0 ,
147147 "totalMinimumFreeSpace" : 0
148148 },
149149 "globalNamespace" : {
@@ -156,7 +156,7 @@ Each object represents the storage metrics for a single DataNode.
156156 "openKeyAndFileBytes" : 0 ,
157157 "multipartOpenKeyBytes" : 0
158158 },
159- "committedKeyBytes " : 5242880000
159+ "finalizedKeyBytes " : 5242880000
160160 },
161161 "dataNodeUsage" : [
162162 {
0 commit comments