Improving ScheduledComponent to avoid bursts after long waits
This commit is contained in:
parent
6b5fff40cb
commit
9cea1598d6
|
@ -28,14 +28,18 @@ import org.jboss.logging.Logger;
|
|||
/** This is for components with a scheduled at a fixed rate. */
|
||||
public abstract class ActiveMQScheduledComponent implements ActiveMQComponent, Runnable {
|
||||
|
||||
|
||||
private static final Logger logger = Logger.getLogger(ActiveMQScheduledComponent.class);
|
||||
private final ScheduledExecutorService scheduledExecutorService;
|
||||
private long period;
|
||||
private long millisecondsPeriod;
|
||||
private TimeUnit timeUnit;
|
||||
private final Executor executor;
|
||||
private ScheduledFuture future;
|
||||
private final boolean onDemand;
|
||||
|
||||
long lastTime = 0;
|
||||
|
||||
private final AtomicInteger delayed = new AtomicInteger(0);
|
||||
|
||||
public ActiveMQScheduledComponent(ScheduledExecutorService scheduledExecutorService,
|
||||
|
@ -58,6 +62,8 @@ public abstract class ActiveMQScheduledComponent implements ActiveMQComponent, R
|
|||
if (future != null) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.millisecondsPeriod = timeUnit.convert(period, TimeUnit.MILLISECONDS);
|
||||
if (onDemand) {
|
||||
return;
|
||||
}
|
||||
|
@ -113,11 +119,6 @@ public abstract class ActiveMQScheduledComponent implements ActiveMQComponent, R
|
|||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run() {
|
||||
delayed.decrementAndGet();
|
||||
}
|
||||
|
||||
@Override
|
||||
public synchronized boolean isStarted() {
|
||||
return future != null;
|
||||
|
@ -132,10 +133,30 @@ public abstract class ActiveMQScheduledComponent implements ActiveMQComponent, R
|
|||
}
|
||||
}
|
||||
|
||||
final Runnable runForExecutor = new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
if (onDemand && delayed.get() > 0) {
|
||||
delayed.decrementAndGet();
|
||||
}
|
||||
|
||||
if (!onDemand && lastTime > 0) {
|
||||
if (System.currentTimeMillis() - lastTime < millisecondsPeriod) {
|
||||
logger.trace("Execution ignored due to too many simultaneous executions, probably a previous delayed execution");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
lastTime = System.currentTimeMillis();
|
||||
|
||||
ActiveMQScheduledComponent.this.run();
|
||||
}
|
||||
};
|
||||
|
||||
final Runnable runForScheduler = new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
executor.execute(ActiveMQScheduledComponent.this);
|
||||
executor.execute(runForExecutor);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -0,0 +1,80 @@
|
|||
/**
|
||||
* Licensed to 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 org.apache.activemq.artemis.utils;
|
||||
|
||||
import java.util.concurrent.ExecutorService;
|
||||
import java.util.concurrent.Executors;
|
||||
import java.util.concurrent.ScheduledExecutorService;
|
||||
import java.util.concurrent.ScheduledThreadPoolExecutor;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
import org.apache.activemq.artemis.core.server.ActiveMQScheduledComponent;
|
||||
import org.junit.After;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
|
||||
public class ActiveMQScheduledComponentTest {
|
||||
|
||||
@Rule
|
||||
public ThreadLeakCheckRule rule = new ThreadLeakCheckRule();
|
||||
|
||||
ScheduledExecutorService scheduledExecutorService;
|
||||
ExecutorService executorService;
|
||||
@Before
|
||||
public void before() {
|
||||
scheduledExecutorService = new ScheduledThreadPoolExecutor(5);
|
||||
executorService = Executors.newSingleThreadExecutor();
|
||||
}
|
||||
|
||||
@After
|
||||
public void after() {
|
||||
executorService.shutdown();
|
||||
scheduledExecutorService.shutdown();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testAccumulation() throws Exception {
|
||||
final AtomicInteger count = new AtomicInteger(0);
|
||||
|
||||
|
||||
final ActiveMQScheduledComponent local = new ActiveMQScheduledComponent(scheduledExecutorService, executorService, 100, TimeUnit.MILLISECONDS, false) {
|
||||
public void run() {
|
||||
if (count.get() == 0) {
|
||||
try {
|
||||
Thread.sleep(800);
|
||||
}
|
||||
catch (Exception e) {
|
||||
}
|
||||
}
|
||||
count.incrementAndGet();
|
||||
}
|
||||
};
|
||||
|
||||
local.start();
|
||||
|
||||
Thread.sleep(1000);
|
||||
|
||||
local.stop();
|
||||
|
||||
Assert.assertTrue("just because one took a lot of time, it doesn't mean we can accumulate many, we got " + count + " executions", count.get() < 5);
|
||||
}
|
||||
|
||||
}
|
|
@ -38,7 +38,6 @@ public class JDBCJournalSync extends ActiveMQScheduledComponent {
|
|||
|
||||
@Override
|
||||
public void run() {
|
||||
super.run();
|
||||
if (journal.isStarted()) {
|
||||
journal.sync();
|
||||
}
|
||||
|
|
|
@ -78,7 +78,6 @@ final class PageSyncTimer extends ActiveMQScheduledComponent {
|
|||
|
||||
@Override
|
||||
public void run() {
|
||||
super.run();
|
||||
tick();
|
||||
}
|
||||
|
||||
|
|
|
@ -74,7 +74,6 @@ public class FileStoreMonitor extends ActiveMQScheduledComponent {
|
|||
|
||||
@Override
|
||||
public void run() {
|
||||
super.run();
|
||||
tick();
|
||||
}
|
||||
|
||||
|
|
|
@ -44,7 +44,6 @@ public class ReloadManagerImpl extends ActiveMQScheduledComponent implements Rel
|
|||
|
||||
@Override
|
||||
public void run() {
|
||||
super.run();
|
||||
tick();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue