if (!System.getProperty("os.name").startsWith("Linux")) {
return;
}
JobConf conf = new JobConf();
LinuxMemoryCalculatorPlugin plugin = new LinuxMemoryCalculatorPlugin();
conf.setLong("totalVmemOnTT", plugin.getVirtualMemorySize());
conf.setLong("totalPmemOnTT", plugin.getPhysicalMemorySize());
conf.setLong("reservedVmemOnTT", 1 * 1024 * 1024 * 1024L);
conf.setLong("reservedPmemOnTT", 512 * 1024 * 1024L);
conf.setLong(
TaskTracker.MAPRED_TASKTRACKER_VMEM_RESERVED_PROPERTY,
1 * 1024 * 1024 * 1024L);