org.gradle.launcher.daemon.server.health.LowMemoryDaemonExpirationStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.launcher.daemon.server.health;
import com.google.common.base.Preconditions;
import org.gradle.api.logging.Logger;
import org.gradle.api.logging.Logging;
import org.gradle.internal.util.NumberUtil;
import org.gradle.launcher.daemon.server.expiry.DaemonExpirationResult;
import org.gradle.launcher.daemon.server.expiry.DaemonExpirationStrategy;
import org.gradle.process.internal.health.memory.OsMemoryStatus;
import org.gradle.process.internal.health.memory.OsMemoryStatusListener;
import java.util.concurrent.locks.ReentrantLock;
import static org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus.GRACEFUL_EXPIRE;
/**
* An expiry strategy which only triggers when system memory falls below a threshold.
*/
public class LowMemoryDaemonExpirationStrategy implements DaemonExpirationStrategy, OsMemoryStatusListener {
private ReentrantLock lock = new ReentrantLock();
private OsMemoryStatus memoryStatus;
private final double minFreeMemoryPercentage;
private long memoryThresholdInBytes;
private static final Logger LOG = Logging.getLogger(LowMemoryDaemonExpirationStrategy.class);
public static final String EXPIRATION_REASON = "to reclaim system memory";
// Reasonable default threshold bounds: between 384M and 1G
public static final long MIN_THRESHOLD_BYTES = 384 * 1024 * 1024;
public static final long MAX_THRESHOLD_BYTES = 1024 * 1024 * 1024;
public LowMemoryDaemonExpirationStrategy(double minFreeMemoryPercentage) {
Preconditions.checkArgument(minFreeMemoryPercentage >= 0, "Free memory percentage must be >= 0");
Preconditions.checkArgument(minFreeMemoryPercentage <= 1, "Free memory percentage must be <= 1");
this.minFreeMemoryPercentage = minFreeMemoryPercentage;
}
private long normalizeThreshold(final long thresholdIn, final long minValue, final long maxValue) {
return Math.min(maxValue, Math.max(minValue, thresholdIn));
}
public DaemonExpirationResult checkExpiration() {
lock.lock();
try {
if (memoryStatus != null) {
long freeMem = memoryStatus.getFreePhysicalMemory();
if (freeMem < memoryThresholdInBytes) {
LOG.info("after free system memory (" + NumberUtil.formatBytes(freeMem) + ") fell below threshold of " + NumberUtil.formatBytes(memoryThresholdInBytes));
return new DaemonExpirationResult(GRACEFUL_EXPIRE, EXPIRATION_REASON);
}
}
} finally {
lock.unlock();
}
return DaemonExpirationResult.NOT_TRIGGERED;
}
@Override
public void onOsMemoryStatus(OsMemoryStatus newStatus) {
lock.lock();
try {
LOG.debug("Received memory status update: " + newStatus.toString());
this.memoryStatus = newStatus;
this.memoryThresholdInBytes = normalizeThreshold((long) (memoryStatus.getTotalPhysicalMemory() * minFreeMemoryPercentage), MIN_THRESHOLD_BYTES, MAX_THRESHOLD_BYTES);
} finally {
lock.unlock();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy