YARN-9914. Use separate configs for free disk space checking for full and not-full disks. Contributed by Jim Brennan
This commit is contained in:
parent
862526530a
commit
eef34f2d87
|
@ -1942,6 +1942,17 @@ public class YarnConfiguration extends Configuration {
|
||||||
*/
|
*/
|
||||||
public static final String NM_MIN_PER_DISK_FREE_SPACE_MB =
|
public static final String NM_MIN_PER_DISK_FREE_SPACE_MB =
|
||||||
NM_DISK_HEALTH_CHECK_PREFIX + "min-free-space-per-disk-mb";
|
NM_DISK_HEALTH_CHECK_PREFIX + "min-free-space-per-disk-mb";
|
||||||
|
/**
|
||||||
|
* The minimum space that must be available on an offline
|
||||||
|
* disk for it to be marked as online. The value should not be less
|
||||||
|
* than NM_MIN_PER_DISK_FREE_SPACE_MB. If its value is less than
|
||||||
|
* NM_MIN_PER_DISK_FREE_SPACE_MB or is not set, it will be set to the
|
||||||
|
* same value as NM_MIN_PER_DISK_FREE_SPACE_MB.
|
||||||
|
* This applies to nm-local-dirs and nm-log-dirs.
|
||||||
|
*/
|
||||||
|
public static final String NM_WM_HIGH_PER_DISK_FREE_SPACE_MB =
|
||||||
|
NM_DISK_HEALTH_CHECK_PREFIX +
|
||||||
|
"min-free-space-per-disk-watermark-high-mb";
|
||||||
/**
|
/**
|
||||||
* By default, all of the disk can be used before it is marked as offline.
|
* By default, all of the disk can be used before it is marked as offline.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1657,13 +1657,26 @@
|
||||||
</property>
|
</property>
|
||||||
|
|
||||||
<property>
|
<property>
|
||||||
<description>The minimum space that must be available on a disk for
|
<description>The minimum space in megabytes that must be available on a disk for
|
||||||
it to be used. This applies to yarn.nodemanager.local-dirs and
|
it to be used. If space on a disk falls below this threshold, it will be marked
|
||||||
|
as bad. This applies to yarn.nodemanager.local-dirs and
|
||||||
yarn.nodemanager.log-dirs.</description>
|
yarn.nodemanager.log-dirs.</description>
|
||||||
<name>yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb</name>
|
<name>yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb</name>
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
|
|
||||||
|
<property>
|
||||||
|
<description>The minimum space in megabytes that must be available on a bad
|
||||||
|
disk for it to be marked as good. This value should not be less
|
||||||
|
than yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb.
|
||||||
|
If it is less than yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb,
|
||||||
|
or it is not set, it will be set to the
|
||||||
|
same value as yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb.
|
||||||
|
This applies to yarn.nodemanager.local-dirs and yarn.nodemanager.log-dirs.</description>
|
||||||
|
<name>yarn.nodemanager.disk-health-checker.min-free-space-per-disk-watermark-high-mb</name>
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
|
||||||
<property>
|
<property>
|
||||||
<description>The path to the Linux container executor.</description>
|
<description>The path to the Linux container executor.</description>
|
||||||
<name>yarn.nodemanager.linux-container-executor.path</name>
|
<name>yarn.nodemanager.linux-container-executor.path</name>
|
||||||
|
|
|
@ -110,7 +110,8 @@ public class DirectoryCollection {
|
||||||
|
|
||||||
private float diskUtilizationPercentageCutoffHigh;
|
private float diskUtilizationPercentageCutoffHigh;
|
||||||
private float diskUtilizationPercentageCutoffLow;
|
private float diskUtilizationPercentageCutoffLow;
|
||||||
private long diskUtilizationSpaceCutoff;
|
private long diskFreeSpaceCutoffLow;
|
||||||
|
private long diskFreeSpaceCutoffHigh;
|
||||||
|
|
||||||
private int goodDirsDiskUtilizationPercentage;
|
private int goodDirsDiskUtilizationPercentage;
|
||||||
|
|
||||||
|
@ -123,7 +124,7 @@ public class DirectoryCollection {
|
||||||
* directories to be monitored
|
* directories to be monitored
|
||||||
*/
|
*/
|
||||||
public DirectoryCollection(String[] dirs) {
|
public DirectoryCollection(String[] dirs) {
|
||||||
this(dirs, 100.0F, 100.0F, 0);
|
this(dirs, 100.0F, 100.0F, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -139,7 +140,7 @@ public class DirectoryCollection {
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public DirectoryCollection(String[] dirs, float utilizationPercentageCutOff) {
|
public DirectoryCollection(String[] dirs, float utilizationPercentageCutOff) {
|
||||||
this(dirs, utilizationPercentageCutOff, utilizationPercentageCutOff, 0);
|
this(dirs, utilizationPercentageCutOff, utilizationPercentageCutOff, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -154,7 +155,26 @@ public class DirectoryCollection {
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public DirectoryCollection(String[] dirs, long utilizationSpaceCutOff) {
|
public DirectoryCollection(String[] dirs, long utilizationSpaceCutOff) {
|
||||||
this(dirs, 100.0F, 100.0F, utilizationSpaceCutOff);
|
this(dirs, 100.0F, 100.0F, utilizationSpaceCutOff, utilizationSpaceCutOff);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create collection for the directories specified. Users must specify the
|
||||||
|
* minimum amount of free space that must be available for the dir to be used.
|
||||||
|
*
|
||||||
|
* @param dirs
|
||||||
|
* directories to be monitored
|
||||||
|
* @param utilizationSpaceCutOffLow
|
||||||
|
* minimum space, in MB, that must be available on the disk for the
|
||||||
|
* dir to be taken out of the good dirs list
|
||||||
|
* @param utilizationSpaceCutOffHigh
|
||||||
|
* minimum space, in MB, that must be available on the disk for the
|
||||||
|
* dir to be moved from the bad dirs list to the good dirs list
|
||||||
|
*/
|
||||||
|
public DirectoryCollection(String[] dirs, long utilizationSpaceCutOffLow,
|
||||||
|
long utilizationSpaceCutOffHigh) {
|
||||||
|
this(dirs, 100.0F, 100.0F, utilizationSpaceCutOffLow,
|
||||||
|
utilizationSpaceCutOffHigh);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -162,7 +182,7 @@ public class DirectoryCollection {
|
||||||
* maximum percentage of disk utilization allowed and the minimum amount of
|
* maximum percentage of disk utilization allowed and the minimum amount of
|
||||||
* free space that must be available for the dir to be used. If either check
|
* free space that must be available for the dir to be used. If either check
|
||||||
* fails the dir is removed from the good dirs list.
|
* fails the dir is removed from the good dirs list.
|
||||||
*
|
*
|
||||||
* @param dirs
|
* @param dirs
|
||||||
* directories to be monitored
|
* directories to be monitored
|
||||||
* @param utilizationPercentageCutOffHigh
|
* @param utilizationPercentageCutOffHigh
|
||||||
|
@ -174,12 +194,41 @@ public class DirectoryCollection {
|
||||||
* @param utilizationSpaceCutOff
|
* @param utilizationSpaceCutOff
|
||||||
* minimum space, in MB, that must be available on the disk for the
|
* minimum space, in MB, that must be available on the disk for the
|
||||||
* dir to be marked as good
|
* dir to be marked as good
|
||||||
*
|
*/
|
||||||
|
public DirectoryCollection(String[] dirs,
|
||||||
|
float utilizationPercentageCutOffHigh,
|
||||||
|
float utilizationPercentageCutOffLow, long utilizationSpaceCutOff) {
|
||||||
|
this(dirs, utilizationPercentageCutOffHigh,
|
||||||
|
utilizationPercentageCutOffLow, utilizationSpaceCutOff,
|
||||||
|
utilizationSpaceCutOff);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create collection for the directories specified. Users must specify the
|
||||||
|
* maximum percentage of disk utilization allowed and the minimum amount of
|
||||||
|
* free space that must be available for the dir to be used. If either check
|
||||||
|
* fails the dir is removed from the good dirs list.
|
||||||
|
*
|
||||||
|
* @param dirs
|
||||||
|
* directories to be monitored
|
||||||
|
* @param utilizationPercentageCutOffHigh
|
||||||
|
* percentage of disk that can be used before the dir is taken out
|
||||||
|
* of the good dirs list
|
||||||
|
* @param utilizationPercentageCutOffLow
|
||||||
|
* percentage of disk that can be used when the dir is moved from
|
||||||
|
* the bad dirs list to the good dirs list
|
||||||
|
* @param utilizationSpaceCutOffLow
|
||||||
|
* minimum space, in MB, that must be available on the disk for the
|
||||||
|
* dir to be taken out of the good dirs list
|
||||||
|
* @param utilizationSpaceCutOffHigh
|
||||||
|
* minimum space, in MB, that must be available on the disk for the
|
||||||
|
* dir to be moved from the bad dirs list to the good dirs list
|
||||||
*/
|
*/
|
||||||
public DirectoryCollection(String[] dirs,
|
public DirectoryCollection(String[] dirs,
|
||||||
float utilizationPercentageCutOffHigh,
|
float utilizationPercentageCutOffHigh,
|
||||||
float utilizationPercentageCutOffLow,
|
float utilizationPercentageCutOffLow,
|
||||||
long utilizationSpaceCutOff) {
|
long utilizationSpaceCutOffLow,
|
||||||
|
long utilizationSpaceCutOffHigh) {
|
||||||
conf = new YarnConfiguration();
|
conf = new YarnConfiguration();
|
||||||
try {
|
try {
|
||||||
String diskValidatorName = conf.get(YarnConfiguration.DISK_VALIDATOR,
|
String diskValidatorName = conf.get(YarnConfiguration.DISK_VALIDATOR,
|
||||||
|
@ -199,12 +248,10 @@ public class DirectoryCollection {
|
||||||
this.readLock = lock.readLock();
|
this.readLock = lock.readLock();
|
||||||
this.writeLock = lock.writeLock();
|
this.writeLock = lock.writeLock();
|
||||||
|
|
||||||
diskUtilizationPercentageCutoffHigh = Math.max(0.0F, Math.min(100.0F,
|
setDiskUtilizationPercentageCutoff(utilizationPercentageCutOffHigh,
|
||||||
utilizationPercentageCutOffHigh));
|
utilizationPercentageCutOffLow);
|
||||||
diskUtilizationPercentageCutoffLow = Math.max(0.0F, Math.min(
|
setDiskUtilizationSpaceCutoff(utilizationSpaceCutOffLow,
|
||||||
diskUtilizationPercentageCutoffHigh, utilizationPercentageCutOffLow));
|
utilizationSpaceCutOffHigh);
|
||||||
diskUtilizationSpaceCutoff =
|
|
||||||
utilizationSpaceCutOff < 0 ? 0 : utilizationSpaceCutOff;
|
|
||||||
|
|
||||||
dirsChangeListeners = Collections.newSetFromMap(
|
dirsChangeListeners = Collections.newSetFromMap(
|
||||||
new ConcurrentHashMap<DirsChangeListener, Boolean>());
|
new ConcurrentHashMap<DirsChangeListener, Boolean>());
|
||||||
|
@ -471,6 +518,8 @@ public class DirectoryCollection {
|
||||||
diskValidator.checkStatus(testDir);
|
diskValidator.checkStatus(testDir);
|
||||||
float diskUtilizationPercentageCutoff = goodDirs.contains(dir) ?
|
float diskUtilizationPercentageCutoff = goodDirs.contains(dir) ?
|
||||||
diskUtilizationPercentageCutoffHigh : diskUtilizationPercentageCutoffLow;
|
diskUtilizationPercentageCutoffHigh : diskUtilizationPercentageCutoffLow;
|
||||||
|
long diskFreeSpaceCutoff = goodDirs.contains(dir) ?
|
||||||
|
diskFreeSpaceCutoffLow : diskFreeSpaceCutoffHigh;
|
||||||
if (isDiskUsageOverPercentageLimit(testDir,
|
if (isDiskUsageOverPercentageLimit(testDir,
|
||||||
diskUtilizationPercentageCutoff)) {
|
diskUtilizationPercentageCutoff)) {
|
||||||
msg =
|
msg =
|
||||||
|
@ -480,9 +529,9 @@ public class DirectoryCollection {
|
||||||
ret.put(dir,
|
ret.put(dir,
|
||||||
new DiskErrorInformation(DiskErrorCause.DISK_FULL, msg));
|
new DiskErrorInformation(DiskErrorCause.DISK_FULL, msg));
|
||||||
continue;
|
continue;
|
||||||
} else if (isDiskFreeSpaceUnderLimit(testDir)) {
|
} else if (isDiskFreeSpaceUnderLimit(testDir, diskFreeSpaceCutoff)) {
|
||||||
msg =
|
msg =
|
||||||
"free space below limit of " + diskUtilizationSpaceCutoff
|
"free space below limit of " + diskFreeSpaceCutoff
|
||||||
+ "MB";
|
+ "MB";
|
||||||
ret.put(dir,
|
ret.put(dir,
|
||||||
new DiskErrorInformation(DiskErrorCause.DISK_FULL, msg));
|
new DiskErrorInformation(DiskErrorCause.DISK_FULL, msg));
|
||||||
|
@ -505,9 +554,10 @@ public class DirectoryCollection {
|
||||||
|| usedPercentage >= 100.0F);
|
|| usedPercentage >= 100.0F);
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean isDiskFreeSpaceUnderLimit(File dir) {
|
private boolean isDiskFreeSpaceUnderLimit(File dir,
|
||||||
|
long freeSpaceCutoff) {
|
||||||
long freeSpace = dir.getUsableSpace() / (1024 * 1024);
|
long freeSpace = dir.getUsableSpace() / (1024 * 1024);
|
||||||
return freeSpace < this.diskUtilizationSpaceCutoff;
|
return freeSpace < freeSpaceCutoff;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void createDir(FileContext localFs, Path dir, FsPermission perm)
|
private void createDir(FileContext localFs, Path dir, FsPermission perm)
|
||||||
|
@ -550,13 +600,29 @@ public class DirectoryCollection {
|
||||||
}
|
}
|
||||||
|
|
||||||
public long getDiskUtilizationSpaceCutoff() {
|
public long getDiskUtilizationSpaceCutoff() {
|
||||||
return diskUtilizationSpaceCutoff;
|
return getDiskUtilizationSpaceCutoffLow();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDiskUtilizationSpaceCutoff(long diskUtilizationSpaceCutoff) {
|
@VisibleForTesting
|
||||||
diskUtilizationSpaceCutoff =
|
long getDiskUtilizationSpaceCutoffLow() {
|
||||||
diskUtilizationSpaceCutoff < 0 ? 0 : diskUtilizationSpaceCutoff;
|
return diskFreeSpaceCutoffLow;
|
||||||
this.diskUtilizationSpaceCutoff = diskUtilizationSpaceCutoff;
|
}
|
||||||
|
|
||||||
|
@VisibleForTesting
|
||||||
|
long getDiskUtilizationSpaceCutoffHigh() {
|
||||||
|
return diskFreeSpaceCutoffHigh;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDiskUtilizationSpaceCutoff(long freeSpaceCutoff) {
|
||||||
|
setDiskUtilizationSpaceCutoff(freeSpaceCutoff,
|
||||||
|
freeSpaceCutoff);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDiskUtilizationSpaceCutoff(long freeSpaceCutoffLow,
|
||||||
|
long freeSpaceCutoffHigh) {
|
||||||
|
diskFreeSpaceCutoffLow = Math.max(0, freeSpaceCutoffLow);
|
||||||
|
diskFreeSpaceCutoffHigh = Math.max(diskFreeSpaceCutoffLow,
|
||||||
|
Math.max(0, freeSpaceCutoffHigh));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setGoodDirsDiskUtilizationPercentage() {
|
private void setGoodDirsDiskUtilizationPercentage() {
|
||||||
|
|
|
@ -139,23 +139,38 @@ public class LocalDirsHandlerService extends AbstractService {
|
||||||
" is not configured properly.");
|
" is not configured properly.");
|
||||||
lowUsableSpacePercentagePerDisk = highUsableSpacePercentagePerDisk;
|
lowUsableSpacePercentagePerDisk = highUsableSpacePercentagePerDisk;
|
||||||
}
|
}
|
||||||
long minFreeSpacePerDiskMB =
|
long lowMinFreeSpacePerDiskMB =
|
||||||
conf.getLong(YarnConfiguration.NM_MIN_PER_DISK_FREE_SPACE_MB,
|
conf.getLong(YarnConfiguration.NM_MIN_PER_DISK_FREE_SPACE_MB,
|
||||||
YarnConfiguration.DEFAULT_NM_MIN_PER_DISK_FREE_SPACE_MB);
|
YarnConfiguration.DEFAULT_NM_MIN_PER_DISK_FREE_SPACE_MB);
|
||||||
|
long highMinFreeSpacePerDiskMB =
|
||||||
|
conf.getLong(YarnConfiguration.NM_WM_HIGH_PER_DISK_FREE_SPACE_MB,
|
||||||
|
lowMinFreeSpacePerDiskMB);
|
||||||
|
if (highMinFreeSpacePerDiskMB < lowMinFreeSpacePerDiskMB) {
|
||||||
|
LOG.warn("Using " + YarnConfiguration.
|
||||||
|
NM_MIN_PER_DISK_FREE_SPACE_MB + " as " +
|
||||||
|
YarnConfiguration.NM_WM_HIGH_PER_DISK_FREE_SPACE_MB +
|
||||||
|
", because " + YarnConfiguration.
|
||||||
|
NM_WM_HIGH_PER_DISK_FREE_SPACE_MB +
|
||||||
|
" is not configured properly.");
|
||||||
|
highMinFreeSpacePerDiskMB = lowMinFreeSpacePerDiskMB;
|
||||||
|
}
|
||||||
|
|
||||||
localDirs =
|
localDirs =
|
||||||
new DirectoryCollection(
|
new DirectoryCollection(
|
||||||
validatePaths(conf
|
validatePaths(conf
|
||||||
.getTrimmedStrings(YarnConfiguration.NM_LOCAL_DIRS)),
|
.getTrimmedStrings(YarnConfiguration.NM_LOCAL_DIRS)),
|
||||||
highUsableSpacePercentagePerDisk,
|
highUsableSpacePercentagePerDisk,
|
||||||
lowUsableSpacePercentagePerDisk,
|
lowUsableSpacePercentagePerDisk,
|
||||||
minFreeSpacePerDiskMB);
|
lowMinFreeSpacePerDiskMB,
|
||||||
|
highMinFreeSpacePerDiskMB);
|
||||||
logDirs =
|
logDirs =
|
||||||
new DirectoryCollection(
|
new DirectoryCollection(
|
||||||
validatePaths(conf
|
validatePaths(conf
|
||||||
.getTrimmedStrings(YarnConfiguration.NM_LOG_DIRS)),
|
.getTrimmedStrings(YarnConfiguration.NM_LOG_DIRS)),
|
||||||
highUsableSpacePercentagePerDisk,
|
highUsableSpacePercentagePerDisk,
|
||||||
lowUsableSpacePercentagePerDisk,
|
lowUsableSpacePercentagePerDisk,
|
||||||
minFreeSpacePerDiskMB);
|
lowMinFreeSpacePerDiskMB,
|
||||||
|
highMinFreeSpacePerDiskMB);
|
||||||
|
|
||||||
String local = conf.get(YarnConfiguration.NM_LOCAL_DIRS);
|
String local = conf.get(YarnConfiguration.NM_LOCAL_DIRS);
|
||||||
conf.set(NM_GOOD_LOCAL_DIRS,
|
conf.set(NM_GOOD_LOCAL_DIRS,
|
||||||
|
|
|
@ -203,12 +203,30 @@ public class TestDirectoryCollection {
|
||||||
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
||||||
delta);
|
delta);
|
||||||
|
|
||||||
long spaceValue = 57;
|
long lowSpaceValue = 57;
|
||||||
dc.setDiskUtilizationSpaceCutoff(spaceValue);
|
dc.setDiskUtilizationSpaceCutoff(lowSpaceValue);
|
||||||
Assert.assertEquals(spaceValue, dc.getDiskUtilizationSpaceCutoff());
|
Assert.assertEquals(lowSpaceValue, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
spaceValue = -57;
|
Assert.assertEquals(lowSpaceValue, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
dc.setDiskUtilizationSpaceCutoff(spaceValue);
|
long highSpaceValue = 73;
|
||||||
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoff());
|
dc.setDiskUtilizationSpaceCutoff(lowSpaceValue, highSpaceValue);
|
||||||
|
Assert.assertEquals(lowSpaceValue, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(highSpaceValue, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
lowSpaceValue = -57;
|
||||||
|
dc.setDiskUtilizationSpaceCutoff(lowSpaceValue);
|
||||||
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
dc.setDiskUtilizationSpaceCutoff(lowSpaceValue, highSpaceValue);
|
||||||
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(highSpaceValue, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
highSpaceValue = -10;
|
||||||
|
dc.setDiskUtilizationSpaceCutoff(lowSpaceValue, highSpaceValue);
|
||||||
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
lowSpaceValue = 33;
|
||||||
|
dc.setDiskUtilizationSpaceCutoff(lowSpaceValue, highSpaceValue);
|
||||||
|
Assert.assertEquals(lowSpaceValue, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(lowSpaceValue, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@ -273,42 +291,96 @@ public class TestDirectoryCollection {
|
||||||
delta);
|
delta);
|
||||||
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
||||||
delta);
|
delta);
|
||||||
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoff());
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
|
||||||
dc = new DirectoryCollection(dirs, 57.5F);
|
dc = new DirectoryCollection(dirs, 57.5F);
|
||||||
Assert.assertEquals(57.5F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
Assert.assertEquals(57.5F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
||||||
delta);
|
delta);
|
||||||
Assert.assertEquals(57.5F, dc.getDiskUtilizationPercentageCutoffLow(),
|
Assert.assertEquals(57.5F, dc.getDiskUtilizationPercentageCutoffLow(),
|
||||||
delta);
|
delta);
|
||||||
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoff());
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
|
||||||
dc = new DirectoryCollection(dirs, 57);
|
dc = new DirectoryCollection(dirs, 57);
|
||||||
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
||||||
delta);
|
delta);
|
||||||
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
||||||
delta);
|
delta);
|
||||||
Assert.assertEquals(57, dc.getDiskUtilizationSpaceCutoff());
|
Assert.assertEquals(57, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(57, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
|
||||||
|
dc = new DirectoryCollection(dirs, 57, 73);
|
||||||
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
||||||
|
delta);
|
||||||
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
||||||
|
delta);
|
||||||
|
Assert.assertEquals(57, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(73, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
|
||||||
|
dc = new DirectoryCollection(dirs, 57, 33);
|
||||||
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
||||||
|
delta);
|
||||||
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
||||||
|
delta);
|
||||||
|
Assert.assertEquals(57, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(57, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
|
||||||
|
dc = new DirectoryCollection(dirs, 57, -33);
|
||||||
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
||||||
|
delta);
|
||||||
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
||||||
|
delta);
|
||||||
|
Assert.assertEquals(57, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(57, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
|
||||||
|
dc = new DirectoryCollection(dirs, -57, -33);
|
||||||
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
||||||
|
delta);
|
||||||
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
||||||
|
delta);
|
||||||
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
|
||||||
|
dc = new DirectoryCollection(dirs, -57, 33);
|
||||||
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
||||||
|
delta);
|
||||||
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
||||||
|
delta);
|
||||||
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(33, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
|
||||||
dc = new DirectoryCollection(dirs, 57.5F, 50.5F, 67);
|
dc = new DirectoryCollection(dirs, 57.5F, 50.5F, 67);
|
||||||
Assert.assertEquals(57.5F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
Assert.assertEquals(57.5F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
||||||
delta);
|
delta);
|
||||||
Assert.assertEquals(50.5F, dc.getDiskUtilizationPercentageCutoffLow(),
|
Assert.assertEquals(50.5F, dc.getDiskUtilizationPercentageCutoffLow(),
|
||||||
delta);
|
delta);
|
||||||
Assert.assertEquals(67, dc.getDiskUtilizationSpaceCutoff());
|
Assert.assertEquals(67, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(67, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
|
||||||
dc = new DirectoryCollection(dirs, -57.5F, -57.5F, -67);
|
dc = new DirectoryCollection(dirs, -57.5F, -57.5F, -67);
|
||||||
Assert.assertEquals(0.0F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
Assert.assertEquals(0.0F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
||||||
delta);
|
delta);
|
||||||
Assert.assertEquals(0.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
Assert.assertEquals(0.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
||||||
delta);
|
delta);
|
||||||
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoff());
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
|
||||||
dc = new DirectoryCollection(dirs, 157.5F, 157.5F, -67);
|
dc = new DirectoryCollection(dirs, 157.5F, 157.5F, -67);
|
||||||
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
||||||
delta);
|
delta);
|
||||||
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
||||||
delta);
|
delta);
|
||||||
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoff());
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(0, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
|
|
||||||
|
dc = new DirectoryCollection(dirs, 157.5F, 157.5F, 5, 10);
|
||||||
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffHigh(),
|
||||||
|
delta);
|
||||||
|
Assert.assertEquals(100.0F, dc.getDiskUtilizationPercentageCutoffLow(),
|
||||||
|
delta);
|
||||||
|
Assert.assertEquals(5, dc.getDiskUtilizationSpaceCutoffLow());
|
||||||
|
Assert.assertEquals(10, dc.getDiskUtilizationSpaceCutoffHigh());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
Loading…
Reference in New Issue