HADOOP-11666. Revert the format change of du output introduced by HADOOP-6857. Contributed by Byron Wong.
This commit is contained in:
parent
bce3d442ff
commit
31b3f84601
|
@ -628,6 +628,9 @@ Release 2.7.0 - UNRELEASED
|
|||
HADOOP-11605. FilterFileSystem#create with ChecksumOpt should propagate it
|
||||
to wrapped FS. (gera)
|
||||
|
||||
HADOOP-11666. Revert the format change of du output introduced by
|
||||
HADOOP-6857. (Byron Wong via aajisaka)
|
||||
|
||||
Release 2.6.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -26,7 +26,6 @@ import java.util.List;
|
|||
|
||||
import org.apache.hadoop.classification.InterfaceAudience;
|
||||
import org.apache.hadoop.classification.InterfaceStability;
|
||||
import org.apache.hadoop.fs.ContentSummary;
|
||||
import org.apache.hadoop.fs.FsStatus;
|
||||
import org.apache.hadoop.fs.Path;
|
||||
import org.apache.hadoop.util.StringUtils;
|
||||
|
@ -118,7 +117,7 @@ class FsUsage extends FsCommand {
|
|||
"Note that, even without the -s option, this only shows size summaries " +
|
||||
"one level deep into a directory.\n\n" +
|
||||
"The output is in the form \n" +
|
||||
"\tsize\tdisk space consumed\tname(full path)\n";
|
||||
"\tsize\tname(full path)\n";
|
||||
|
||||
protected boolean summary = false;
|
||||
|
||||
|
@ -133,7 +132,7 @@ class FsUsage extends FsCommand {
|
|||
|
||||
@Override
|
||||
protected void processPathArgument(PathData item) throws IOException {
|
||||
usagesTable = new TableBuilder(3);
|
||||
usagesTable = new TableBuilder(2);
|
||||
// go one level deep on dirs from cmdline unless in summary mode
|
||||
if (!summary && item.stat.isDirectory()) {
|
||||
recursePath(item);
|
||||
|
@ -145,12 +144,16 @@ class FsUsage extends FsCommand {
|
|||
|
||||
@Override
|
||||
protected void processPath(PathData item) throws IOException {
|
||||
ContentSummary contentSummary = item.fs.getContentSummary(item.path);
|
||||
long length = contentSummary.getLength();
|
||||
long spaceConsumed = contentSummary.getSpaceConsumed();
|
||||
usagesTable.addRow(formatSize(length), formatSize(spaceConsumed), item);
|
||||
long length;
|
||||
if (item.stat.isDirectory()) {
|
||||
length = item.fs.getContentSummary(item.path).getLength();
|
||||
} else {
|
||||
length = item.stat.getLen();
|
||||
}
|
||||
usagesTable.addRow(formatSize(length), item);
|
||||
}
|
||||
}
|
||||
|
||||
/** show disk usage summary */
|
||||
public static class Dus extends Du {
|
||||
public static final String NAME = "dus";
|
||||
|
@ -259,4 +262,4 @@ class FsUsage extends FsCommand {
|
|||
return size() == 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -204,7 +204,7 @@
|
|||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^\s*size\s+disk space consumed\s+name\(full path\)\s*</expected-output>
|
||||
<expected-output>^\s*size\s+name\(full path\)\s*</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
|
|
@ -200,10 +200,8 @@ public class TestDFSShell {
|
|||
|
||||
@Test (timeout = 30000)
|
||||
public void testDu() throws IOException {
|
||||
int replication = 2;
|
||||
Configuration conf = new HdfsConfiguration();
|
||||
MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf)
|
||||
.numDataNodes(replication).build();
|
||||
MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf).numDataNodes(2).build();
|
||||
DistributedFileSystem fs = cluster.getFileSystem();
|
||||
PrintStream psBackup = System.out;
|
||||
ByteArrayOutputStream out = new ByteArrayOutputStream();
|
||||
|
@ -223,9 +221,7 @@ public class TestDFSShell {
|
|||
writeFile(fs, myFile2);
|
||||
assertTrue(fs.exists(myFile2));
|
||||
Long myFileLength = fs.getFileStatus(myFile).getLen();
|
||||
Long myFileDiskUsed = myFileLength * replication;
|
||||
Long myFile2Length = fs.getFileStatus(myFile2).getLen();
|
||||
Long myFile2DiskUsed = myFile2Length * replication;
|
||||
|
||||
String[] args = new String[2];
|
||||
args[0] = "-du";
|
||||
|
@ -242,9 +238,7 @@ public class TestDFSShell {
|
|||
out.reset();
|
||||
// Check if size matchs as expected
|
||||
assertThat(returnString, containsString(myFileLength.toString()));
|
||||
assertThat(returnString, containsString(myFileDiskUsed.toString()));
|
||||
assertThat(returnString, containsString(myFile2Length.toString()));
|
||||
assertThat(returnString, containsString(myFile2DiskUsed.toString()));
|
||||
|
||||
// Check that -du -s reports the state of the snapshot
|
||||
String snapshotName = "ss1";
|
||||
|
@ -269,9 +263,7 @@ public class TestDFSShell {
|
|||
returnString = out.toString();
|
||||
out.reset();
|
||||
Long combinedLength = myFileLength + myFile2Length;
|
||||
Long combinedDiskUsed = myFileDiskUsed + myFile2DiskUsed;
|
||||
assertThat(returnString, containsString(combinedLength.toString()));
|
||||
assertThat(returnString, containsString(combinedDiskUsed.toString()));
|
||||
} finally {
|
||||
System.setOut(psBackup);
|
||||
cluster.shutdown();
|
||||
|
|
|
@ -1086,7 +1086,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+/data15bytes</expected-output>
|
||||
<expected-output>^15\s+/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1104,7 +1104,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+data15bytesZZ</expected-output>
|
||||
<expected-output>^15\s+data15bytesZZ</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1125,19 +1125,19 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^120\s+120\s+data120bytes</expected-output>
|
||||
<expected-output>^120\s+data120bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+data15bytes</expected-output>
|
||||
<expected-output>^15\s+data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^30\s+30\s+data30bytes</expected-output>
|
||||
<expected-output>^30\s+data30bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^60\s+60\s+data60bytes</expected-output>
|
||||
<expected-output>^60\s+data60bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1155,7 +1155,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+/dir0/data15bytes</expected-output>
|
||||
<expected-output>^15\s+/dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1173,7 +1173,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+dir0/data15bytes</expected-output>
|
||||
<expected-output>^15\s+dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1194,19 +1194,19 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15( |\t)*15( |\t)*/dir0/data15bytes</expected-output>
|
||||
<expected-output>^15( |\t)*/dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^30( |\t)*30( |\t)*/dir0/data30bytes</expected-output>
|
||||
<expected-output>^30( |\t)*/dir0/data30bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^60( |\t)*60( |\t)*/dir0/data60bytes</expected-output>
|
||||
<expected-output>^60( |\t)*/dir0/data60bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^120( |\t)*120( |\t)*/dir0/data120bytes</expected-output>
|
||||
<expected-output>^120( |\t)*/dir0/data120bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1223,7 +1223,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+hdfs:///data15bytes</expected-output>
|
||||
<expected-output>^15\s+hdfs:///data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1243,19 +1243,19 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^120\s+120\s+hdfs:///data120bytes</expected-output>
|
||||
<expected-output>^120\s+hdfs:///data120bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+hdfs:///data15bytes</expected-output>
|
||||
<expected-output>^15\s+hdfs:///data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^30\s+30\s+hdfs:///data30bytes</expected-output>
|
||||
<expected-output>^30\s+hdfs:///data30bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^60\s+60\s+hdfs:///data60bytes</expected-output>
|
||||
<expected-output>^60\s+hdfs:///data60bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1273,7 +1273,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+hdfs:///dir0/data15bytes</expected-output>
|
||||
<expected-output>^15\s+hdfs:///dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1292,11 +1292,11 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+hdfs:///dir0/data15bytes</expected-output>
|
||||
<expected-output>^15\s+hdfs:///dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^1\.0 K\s+1\.0 K\s+hdfs:///dir0/data1k</expected-output>
|
||||
<expected-output>^1\.0 K\s+hdfs:///dir0/data1k</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1317,19 +1317,19 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15( |\t)*15( |\t)*hdfs:///dir0/data15bytes</expected-output>
|
||||
<expected-output>^15( |\t)*hdfs:///dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^30( |\t)*30( |\t)*hdfs:///dir0/data30bytes</expected-output>
|
||||
<expected-output>^30( |\t)*hdfs:///dir0/data30bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^60( |\t)*60( |\t)*hdfs:///dir0/data60bytes</expected-output>
|
||||
<expected-output>^60( |\t)*hdfs:///dir0/data60bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^120( |\t)*120( |\t)*hdfs:///dir0/data120bytes</expected-output>
|
||||
<expected-output>^120( |\t)*hdfs:///dir0/data120bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1346,7 +1346,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15( |\t)*15( |\t)*NAMENODE/data15bytes</expected-output>
|
||||
<expected-output>^15( |\t)*NAMENODE/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1366,19 +1366,19 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15( |\t)*15( |\t)*NAMENODE/data15bytes</expected-output>
|
||||
<expected-output>^15( |\t)*NAMENODE/data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^30( |\t)*30( |\t)*NAMENODE/data30bytes</expected-output>
|
||||
<expected-output>^30( |\t)*NAMENODE/data30bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^60( |\t)*60( |\t)*NAMENODE/data60bytes</expected-output>
|
||||
<expected-output>^60( |\t)*NAMENODE/data60bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^120( |\t)*120( |\t)*NAMENODE/data120bytes</expected-output>
|
||||
<expected-output>^120( |\t)*NAMENODE/data120bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1396,7 +1396,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15( |\t)*15( |\t)*NAMENODE/dir0/data15bytes</expected-output>
|
||||
<expected-output>^15( |\t)*NAMENODE/dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1417,19 +1417,19 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15( |\t)*15( |\t)*NAMENODE/dir0/data15bytes</expected-output>
|
||||
<expected-output>^15( |\t)*NAMENODE/dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^30( |\t)*30( |\t)*NAMENODE/dir0/data30bytes</expected-output>
|
||||
<expected-output>^30( |\t)*NAMENODE/dir0/data30bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^60( |\t)*60( |\t)*NAMENODE/dir0/data60bytes</expected-output>
|
||||
<expected-output>^60( |\t)*NAMENODE/dir0/data60bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^120( |\t)*120( |\t)*NAMENODE/dir0/data120bytes</expected-output>
|
||||
<expected-output>^120( |\t)*NAMENODE/dir0/data120bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1462,7 +1462,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^450\s+450\s+/dir0</expected-output>
|
||||
<expected-output>^450\s+/dir0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1494,7 +1494,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^450\s+450\s+dir0</expected-output>
|
||||
<expected-output>^450\s+dir0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1532,7 +1532,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^450\s+450\s+/dir0</expected-output>
|
||||
<expected-output>^450\s+/dir0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1565,7 +1565,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^450\s+450\s+hdfs:///dir0</expected-output>
|
||||
<expected-output>^450\s+hdfs:///dir0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1603,7 +1603,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^450\s+450\s+hdfs:///dir0</expected-output>
|
||||
<expected-output>^450\s+hdfs:///dir0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1635,7 +1635,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^450\s+450\s+NAMENODE/dir0</expected-output>
|
||||
<expected-output>^450\s+NAMENODE/dir0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -1673,7 +1673,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^450\s+450\s+NAMENODE/dir0</expected-output>
|
||||
<expected-output>^450\s+NAMENODE/dir0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4073,7 +4073,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+/data15bytes</expected-output>
|
||||
<expected-output>^15\s+/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4092,7 +4092,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+data15bytes</expected-output>
|
||||
<expected-output>^15\s+data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4110,7 +4110,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+/dir0/dir1/data/data15bytes</expected-output>
|
||||
<expected-output>^15\s+/dir0/dir1/data/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4128,7 +4128,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+dir0/dir1/data/data15bytes</expected-output>
|
||||
<expected-output>^15\s+dir0/dir1/data/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4146,11 +4146,11 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+/dir0/data15bytes</expected-output>
|
||||
<expected-output>^15\s+/dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^30\s+30\s+/dir0/data30bytes</expected-output>
|
||||
<expected-output>^30\s+/dir0/data30bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4168,11 +4168,11 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+dir0/data15bytes</expected-output>
|
||||
<expected-output>^15\s+dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^30\s+30\s+dir0/data30bytes</expected-output>
|
||||
<expected-output>^30\s+dir0/data30bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4318,7 +4318,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+hdfs:///data15bytes</expected-output>
|
||||
<expected-output>^15\s+hdfs:///data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4336,7 +4336,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+hdfs:///dir1/data/data15bytes</expected-output>
|
||||
<expected-output>^15\s+hdfs:///dir1/data/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4354,11 +4354,11 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+hdfs:///dir0/data15bytes</expected-output>
|
||||
<expected-output>^15\s+hdfs:///dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^30\s+30\s+hdfs:///dir0/data30bytes</expected-output>
|
||||
<expected-output>^30\s+hdfs:///dir0/data30bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4442,7 +4442,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+NAMENODE/data15bytes</expected-output>
|
||||
<expected-output>^15\s+NAMENODE/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4460,7 +4460,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+NAMENODE/dir1/data/data15bytes</expected-output>
|
||||
<expected-output>^15\s+NAMENODE/dir1/data/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4478,11 +4478,11 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+NAMENODE/dir0/data15bytes</expected-output>
|
||||
<expected-output>^15\s+NAMENODE/dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^30\s+30\s+NAMENODE/dir0/data30bytes</expected-output>
|
||||
<expected-output>^30\s+NAMENODE/dir0/data30bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4567,7 +4567,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+/data15bytes</expected-output>
|
||||
<expected-output>^15\s+/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4586,7 +4586,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+data15bytes</expected-output>
|
||||
<expected-output>^15\s+data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4604,7 +4604,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+/dir0/dir1/data/data15bytes</expected-output>
|
||||
<expected-output>^15\s+/dir0/dir1/data/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4622,7 +4622,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+dir0/dir1/data/data15bytes</expected-output>
|
||||
<expected-output>^15\s+dir0/dir1/data/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4640,11 +4640,11 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+/dir0/data15bytes</expected-output>
|
||||
<expected-output>^15\s+/dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^30\s+30\s+/dir0/data30bytes</expected-output>
|
||||
<expected-output>^30\s+/dir0/data30bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4662,11 +4662,11 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+dir0/data15bytes</expected-output>
|
||||
<expected-output>^15\s+dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^30\s+30\s+dir0/data30bytes</expected-output>
|
||||
<expected-output>^30\s+dir0/data30bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4813,7 +4813,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+hdfs:///data15bytes</expected-output>
|
||||
<expected-output>^15\s+hdfs:///data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4833,7 +4833,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+hdfs:///dir0/dir1/data/data15bytes</expected-output>
|
||||
<expected-output>^15\s+hdfs:///dir0/dir1/data/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4851,11 +4851,11 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+hdfs:///dir0/data15bytes</expected-output>
|
||||
<expected-output>^15\s+hdfs:///dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^30\s+30\s+hdfs:///dir0/data30bytes</expected-output>
|
||||
<expected-output>^30\s+hdfs:///dir0/data30bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4940,7 +4940,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+NAMENODE/data15bytes</expected-output>
|
||||
<expected-output>^15\s+NAMENODE/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4960,7 +4960,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+NAMENODE/dir0/dir1/data/data15bytes</expected-output>
|
||||
<expected-output>^15\s+NAMENODE/dir0/dir1/data/data15bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -4978,11 +4978,11 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^15\s+15\s+NAMENODE/dir0/data15bytes</expected-output>
|
||||
<expected-output>^15\s+NAMENODE/dir0/data15bytes</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^30\s+30\s+NAMENODE/dir0/data30bytes</expected-output>
|
||||
<expected-output>^30\s+NAMENODE/dir0/data30bytes</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -5605,7 +5605,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+/dir0</expected-output>
|
||||
<expected-output>^0\s+/dir0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -5623,7 +5623,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+/dir0/b</expected-output>
|
||||
<expected-output>^0\s+/dir0/b</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -5641,7 +5641,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+dir0</expected-output>
|
||||
<expected-output>^0\s+dir0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -5661,19 +5661,19 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+/dir0</expected-output>
|
||||
<expected-output>^0\s+/dir0</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+/dir1</expected-output>
|
||||
<expected-output>^0\s+/dir1</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+/dir2</expected-output>
|
||||
<expected-output>^0\s+/dir2</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+/dir3</expected-output>
|
||||
<expected-output>^0\s+/dir3</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -5693,19 +5693,19 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+dir0</expected-output>
|
||||
<expected-output>^0\s+dir0</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+dir1</expected-output>
|
||||
<expected-output>^0\s+dir1</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+dir2</expected-output>
|
||||
<expected-output>^0\s+dir2</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+dir3</expected-output>
|
||||
<expected-output>^0\s+dir3</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -5756,7 +5756,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+hdfs:///dir0</expected-output>
|
||||
<expected-output>^0\s+hdfs:///dir0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -5773,19 +5773,19 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+hdfs:///dir0</expected-output>
|
||||
<expected-output>^0\s+hdfs:///dir0</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+hdfs:///dir1</expected-output>
|
||||
<expected-output>^0\s+hdfs:///dir1</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+hdfs:///dir2</expected-output>
|
||||
<expected-output>^0\s+hdfs:///dir2</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+hdfs:///dir3</expected-output>
|
||||
<expected-output>^0\s+hdfs:///dir3</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -5836,7 +5836,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+NAMENODE/dir0</expected-output>
|
||||
<expected-output>^0\s+NAMENODE/dir0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -5853,19 +5853,19 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+NAMENODE/dir0</expected-output>
|
||||
<expected-output>^0\s+NAMENODE/dir0</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+NAMENODE/dir1</expected-output>
|
||||
<expected-output>^0\s+NAMENODE/dir1</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+NAMENODE/dir2</expected-output>
|
||||
<expected-output>^0\s+NAMENODE/dir2</expected-output>
|
||||
</comparator>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+NAMENODE/dir3</expected-output>
|
||||
<expected-output>^0\s+NAMENODE/dir3</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -6219,7 +6219,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+/user/file0</expected-output>
|
||||
<expected-output>^0\s+/user/file0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -6252,7 +6252,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+file0</expected-output>
|
||||
<expected-output>^0\s+file0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -6270,9 +6270,9 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0( |\t)*0( |\t)*file0</expected-output>
|
||||
<expected-output>^0( |\t)*0( |\t)*file1</expected-output>
|
||||
<expected-output>^0( |\t)*0( |\t)*file2</expected-output>
|
||||
<expected-output>^0( |\t)*file0</expected-output>
|
||||
<expected-output>^0( |\t)*file1</expected-output>
|
||||
<expected-output>^0( |\t)*file2</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -6308,7 +6308,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+hdfs:///user/file0</expected-output>
|
||||
<expected-output>^0\s+hdfs:///user/file0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -6325,9 +6325,9 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0( |\t)*0( |\t)*hdfs:///file0</expected-output>
|
||||
<expected-output>^0( |\t)*0( |\t)*hdfs:///file1</expected-output>
|
||||
<expected-output>^0( |\t)*0( |\t)*hdfs:///file2</expected-output>
|
||||
<expected-output>^0( |\t)*hdfs:///file0</expected-output>
|
||||
<expected-output>^0( |\t)*hdfs:///file1</expected-output>
|
||||
<expected-output>^0( |\t)*hdfs:///file2</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -6361,7 +6361,7 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+NAMENODE/user/file0</expected-output>
|
||||
<expected-output>^0\s+NAMENODE/user/file0</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
@ -6378,9 +6378,9 @@
|
|||
<comparators>
|
||||
<comparator>
|
||||
<type>RegexpComparator</type>
|
||||
<expected-output>^0\s+0\s+hdfs://\w+[-.a-z0-9]*:[0-9]+/file0</expected-output>
|
||||
<expected-output>^0\s+0\s+hdfs://\w+[-.a-z0-9]*:[0-9]+/file1</expected-output>
|
||||
<expected-output>^0\s+0\s+hdfs://\w+[-.a-z0-9]*:[0-9]+/file2</expected-output>
|
||||
<expected-output>^0\s+hdfs://\w+[-.a-z0-9]*:[0-9]+/file0</expected-output>
|
||||
<expected-output>^0\s+hdfs://\w+[-.a-z0-9]*:[0-9]+/file1</expected-output>
|
||||
<expected-output>^0\s+hdfs://\w+[-.a-z0-9]*:[0-9]+/file2</expected-output>
|
||||
</comparator>
|
||||
</comparators>
|
||||
</test>
|
||||
|
|
Loading…
Reference in New Issue