本文整理匯總了Java中org.apache.hadoop.hdfs.server.datanode.FSDataset.VolumeInfo類的典型用法代碼示例。如果您正苦於以下問題:Java VolumeInfo類的具體用法?Java VolumeInfo怎麽用?Java VolumeInfo使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
VolumeInfo類屬於org.apache.hadoop.hdfs.server.datanode.FSDataset包,在下文中一共展示了VolumeInfo類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getVolumeInfo
import org.apache.hadoop.hdfs.server.datanode.FSDataset.VolumeInfo; //導入依賴的package包/類
/**
* Returned information is a JSON representation of a map with
* volume name as the key and value is a map of volume attribute
* keys to its values
*/
@Override // DataNodeMXBean
public String getVolumeInfo() {
final Map<String, Object> info = new HashMap<String, Object>();
Collection<VolumeInfo> volumes = ((FSDataset)this.data).getVolumeInfo();
for (VolumeInfo v : volumes) {
final Map<String, Object> innerInfo = new HashMap<String, Object>();
innerInfo.put("usedSpace", v.usedSpace);
innerInfo.put("freeSpace", v.freeSpace);
innerInfo.put("reservedSpace", v.reservedSpace);
info.put(v.directory, innerInfo);
}
return JSON.toString(info);
}