HDFS-16169. Fix TestBlockTokenWithDFSStriped#testEnd2End failure (#3850)
Reviewed-by: Fei Hui <feihui.ustc@gmail.com>
Reviewed-by: litao <tomleescut@gmail.com>
Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
(cherry picked from commit 39cad5f28f
)
This commit is contained in:
parent
8032b680fb
commit
110104da38
|
@ -1638,6 +1638,11 @@ public class TestBalancer {
|
||||||
BalancerParameters p = BalancerParameters.DEFAULT;
|
BalancerParameters p = BalancerParameters.DEFAULT;
|
||||||
runBalancer(conf, totalUsedSpace, totalCapacity, p, 0);
|
runBalancer(conf, totalUsedSpace, totalCapacity, p, 0);
|
||||||
|
|
||||||
|
// namenode will ask datanode to delete replicas in heartbeat response
|
||||||
|
cluster.triggerHeartbeats();
|
||||||
|
// namenode will update block locations according to the report
|
||||||
|
cluster.triggerDeletionReports();
|
||||||
|
|
||||||
// verify locations of striped blocks
|
// verify locations of striped blocks
|
||||||
locatedBlocks = client.getBlockLocations(fileName, 0, fileLen);
|
locatedBlocks = client.getBlockLocations(fileName, 0, fileLen);
|
||||||
StripedFileTestUtil.verifyLocatedStripedBlocks(locatedBlocks, groupSize);
|
StripedFileTestUtil.verifyLocatedStripedBlocks(locatedBlocks, groupSize);
|
||||||
|
|
Loading…
Reference in New Issue