HDFS-16109. Fix flaky some unit tests since they offen timeout (#3172)
Reviewed-by: Ayush Saxena <ayushsaxena@apache.org> Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
This commit is contained in:
parent
35570e414a
commit
b87bac13e4
|
@ -877,7 +877,7 @@ public class TestDecommission extends AdminStatesBaseTest {
|
|||
* 2. close file with decommissioning
|
||||
* @throws Exception
|
||||
*/
|
||||
@Test(timeout=180000)
|
||||
@Test(timeout=360000)
|
||||
public void testDecommissionWithCloseFileAndListOpenFiles()
|
||||
throws Exception {
|
||||
LOG.info("Starting test testDecommissionWithCloseFileAndListOpenFiles");
|
||||
|
|
|
@ -358,7 +358,7 @@ public class TestFsVolumeList {
|
|||
assertEquals(200, volume5.getAvailable());
|
||||
}
|
||||
|
||||
@Test(timeout = 60000)
|
||||
@Test(timeout = 300000)
|
||||
public void testAddRplicaProcessorForAddingReplicaInMap() throws Exception {
|
||||
BlockPoolSlice.reInitializeAddReplicaThreadPool();
|
||||
Configuration cnf = new Configuration();
|
||||
|
|
|
@ -241,7 +241,7 @@ public class TestBootstrapStandby {
|
|||
* {@link DFSConfigKeys#DFS_IMAGE_TRANSFER_BOOTSTRAP_STANDBY_RATE_KEY}
|
||||
* created by HDFS-8808.
|
||||
*/
|
||||
@Test(timeout=30000)
|
||||
@Test(timeout=180000)
|
||||
public void testRateThrottling() throws Exception {
|
||||
cluster.getConfiguration(0).setLong(
|
||||
DFSConfigKeys.DFS_IMAGE_TRANSFER_RATE_KEY, 1);
|
||||
|
|
Loading…
Reference in New Issue