io.mantisrx.runtime.loader.cgroups.CpuAcctsSubsystemProcess Maven / Gradle / Ivy
/*
* Copyright 2024 Netflix, Inc.
*
* 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 io.mantisrx.runtime.loader.cgroups;
import io.mantisrx.runtime.loader.config.Usage;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import lombok.AccessLevel;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
/**
* Uses cpuacct.stat file for setting various metrics.
* Code uses ideas from the mesos implementation here .
*/
@Slf4j
@RequiredArgsConstructor(access = AccessLevel.PACKAGE)
class CpuAcctsSubsystemProcess implements SubsystemProcess {
private final Cgroup cgroup;
@Override
public void getUsage(Usage.UsageBuilder resourceUsageBuilder) throws IOException {
if (cgroup.isV1()) {
handleV1(resourceUsageBuilder);
} else {
handleV2(resourceUsageBuilder);
}
}
private void handleV1(Usage.UsageBuilder resourceUsageBuilder) throws IOException {
final Map stat = cgroup.getStats("cpuacct", "cpuacct.stat");
Optional user = Optional.ofNullable(stat.get("user"));
Optional system = Optional.ofNullable(stat.get("system"));
if (user.isPresent() && system.isPresent()) {
// the user usage and the system usage is measured in jiffies.
// Hence, the division by 100.0.
resourceUsageBuilder.cpusUserTimeSecs(user.get() / (100.0));
resourceUsageBuilder.cpusSystemTimeSecs(system.get() / (100.0));
} else {
log.warn("Expected metrics not found; Found stats={}", stat);
}
Long quota = cgroup.getMetric("cpuacct", "cpu.cfs_quota_us");
Long period = cgroup.getMetric("cpuacct", "cpu.cfs_period_us");
double quotaCount = 0;
if (quota > -1 && period > 0) {
quotaCount = Math.ceil((float) quota / (float) period);
}
if (quotaCount > 0.) {
resourceUsageBuilder.cpusLimit(quotaCount);
} else {
log.warn("quota={} & period={} are not configured correctly", quota, period);
}
}
private void handleV2(Usage.UsageBuilder resourceUsageBuilder) throws IOException {
Map cpuStats = cgroup.getStats("", "cpu.stat");
resourceUsageBuilder
.cpusUserTimeSecs(cpuStats.getOrDefault("user_usec", 0L) / 1000_000.0)
.cpusSystemTimeSecs(cpuStats.getOrDefault("system_usec", 0L) / 1000_000.0);
List metrics = cgroup.getMetrics("", "cpu.max");
if (metrics.size() != 2) {
log.warn("cpu.max metrics={} are not configured correctly", metrics);
} else {
Long quota = metrics.get(0);
Long period = metrics.get(1);
resourceUsageBuilder.cpusLimit(quota / (float) period);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy