/** * Copyright 2015 StreamSets Inc. * * Licensed under the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 com.streamsets.datacollector.runner; import com.codahale.metrics.ExponentiallyDecayingReservoir; import com.google.common.annotations.VisibleForTesting; import com.streamsets.pipeline.api.impl.Utils; import com.streamsets.pipeline.lib.executor.SafeScheduledExecutorService; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.List; import java.util.concurrent.CopyOnWriteArrayList; import java.util.concurrent.RejectedExecutionException; import java.util.concurrent.TimeUnit; public class ResourceControlledScheduledExecutor { private static final long DELAY_MINIMUM = 5000; // ms private static final Logger LOG = LoggerFactory.getLogger(ResourceControlledScheduledExecutor.class); private final SafeScheduledExecutorService scheduledExecutorService; private final List<Runnable> tasks = new CopyOnWriteArrayList<>(); public ResourceControlledScheduledExecutor(final float maxCpuConsumption) { this(maxCpuConsumption, DELAY_MINIMUM); } public ResourceControlledScheduledExecutor(final float maxCpuConsumption, final long minimumDelay) { Utils.checkArgument(maxCpuConsumption > 0, "Max CPU Consumption cannot be less than zero"); scheduledExecutorService = new SafeScheduledExecutorService(2, "ResourceControlledScheduledExecutor"); scheduledExecutorService.scheduleAndForget(new Runnable() { private final ExponentiallyDecayingReservoir decayingReservoir = new ExponentiallyDecayingReservoir(); @Override public void run() { long start = System.currentTimeMillis(); boolean anyThrewError = false; for (Runnable task : tasks) { try { task.run(); } catch (Throwable throwable) { anyThrewError = true; // unfortunately ScheduledExecutorService will eat throwables // and then stop scheduling runnables which threw them LOG.error("Task " + task + " had error: " + throwable, throwable); } } long delay = minimumDelay; if (!tasks.isEmpty()) { decayingReservoir.update(System.currentTimeMillis() - start); delay = calculateDelay(decayingReservoir.getSnapshot().getMedian(), maxCpuConsumption); } if (anyThrewError) { // if a task fails with an exception it may have failed very quickly in which // cause we will spin quite quickly spewing exceptions to the logs. If anything // errors then we should proceed with caution delay = Math.max(delay, TimeUnit.MINUTES.toMillis(1)); } else if (delay < minimumDelay) { delay = minimumDelay; } try { scheduledExecutorService.scheduleAndForget(this, delay, TimeUnit.MILLISECONDS); } catch (RejectedExecutionException e) { if (!scheduledExecutorService.isShutdown()) { throw e; } } } }, 10, TimeUnit.MILLISECONDS); } public void submit(final Runnable runnable) { tasks.add(runnable); } public void shutdown() { scheduledExecutorService.shutdown(); } @VisibleForTesting static long calculateDelay(double average, double maxCpuConsumption) { return ((long)(average / maxCpuConsumption)) - (long)average; } }