|
@@ -499,56 +499,12 @@ public class DistributedFileSystem extends FileSystem {
|
|
|
return dfs;
|
|
|
}
|
|
|
|
|
|
- /** @deprecated Use {@link org.apache.hadoop.fs.FsStatus} instead */
|
|
|
- @InterfaceAudience.Private
|
|
|
- @Deprecated
|
|
|
- public static class DiskStatus extends FsStatus {
|
|
|
- public DiskStatus(FsStatus stats) {
|
|
|
- super(stats.getCapacity(), stats.getUsed(), stats.getRemaining());
|
|
|
- }
|
|
|
-
|
|
|
- public DiskStatus(long capacity, long dfsUsed, long remaining) {
|
|
|
- super(capacity, dfsUsed, remaining);
|
|
|
- }
|
|
|
-
|
|
|
- public long getDfsUsed() {
|
|
|
- return super.getUsed();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
@Override
|
|
|
public FsStatus getStatus(Path p) throws IOException {
|
|
|
statistics.incrementReadOps(1);
|
|
|
return dfs.getDiskStatus();
|
|
|
}
|
|
|
|
|
|
- /** Return the disk usage of the filesystem, including total capacity,
|
|
|
- * used space, and remaining space
|
|
|
- * @deprecated Use {@link org.apache.hadoop.fs.FileSystem#getStatus()}
|
|
|
- * instead */
|
|
|
- @Deprecated
|
|
|
- public DiskStatus getDiskStatus() throws IOException {
|
|
|
- return new DiskStatus(dfs.getDiskStatus());
|
|
|
- }
|
|
|
-
|
|
|
- /** Return the total raw capacity of the filesystem, disregarding
|
|
|
- * replication.
|
|
|
- * @deprecated Use {@link org.apache.hadoop.fs.FileSystem#getStatus()}
|
|
|
- * instead */
|
|
|
- @Deprecated
|
|
|
- public long getRawCapacity() throws IOException{
|
|
|
- return dfs.getDiskStatus().getCapacity();
|
|
|
- }
|
|
|
-
|
|
|
- /** Return the total raw used space in the filesystem, disregarding
|
|
|
- * replication.
|
|
|
- * @deprecated Use {@link org.apache.hadoop.fs.FileSystem#getStatus()}
|
|
|
- * instead */
|
|
|
- @Deprecated
|
|
|
- public long getRawUsed() throws IOException{
|
|
|
- return dfs.getDiskStatus().getUsed();
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* Returns count of blocks with no good replicas left. Normally should be
|
|
|
* zero.
|