All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.hudi.org.apache.hadoop.hbase.client.DelayingRunner Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta1
Show newest version
/**
 * 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.hadoop.hbase.client;

import org.apache.yetus.audience.InterfaceAudience;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;

import java.util.List;
import java.util.Map;

/**
 * A wrapper for a runnable for a group of actions for a single regionserver.
 * 

* This can be used to build up the actions that should be taken and then *

*

* This class exists to simulate using a ScheduledExecutorService with just a regular * ExecutorService and Runnables. It is used for legacy reasons in the the client; this could * only be removed if we change the expectations in HTable around the pool the client is able to * pass in and even if we deprecate the current APIs would require keeping this class around * for the interim to bridge between the legacy ExecutorServices and the scheduled pool. *

*/ @InterfaceAudience.Private public class DelayingRunner implements Runnable { private static final Logger LOG = LoggerFactory.getLogger(DelayingRunner.class); private final Object sleepLock = new Object(); private boolean triggerWake = false; private long sleepTime; private MultiAction actions = new MultiAction(); private Runnable runnable; public DelayingRunner(long sleepTime, Map.Entry> e) { this.sleepTime = sleepTime; add(e); } public void setRunner(Runnable runner) { this.runnable = runner; } @Override public void run() { if (!sleep()) { LOG.warn( "Interrupted while sleeping for expected sleep time " + sleepTime + " ms"); } //TODO maybe we should consider switching to a listenableFuture for the actual callable and // then handling the results/errors as callbacks. That way we can decrement outstanding tasks // even if we get interrupted here, but for now, we still need to run so we decrement the // outstanding tasks this.runnable.run(); } /** * Sleep for an expected amount of time. *

* This is nearly a copy of what the Sleeper does, but with the ability to know if you * got interrupted while sleeping. *

* * @return true if the sleep completely entirely successfully, * but otherwise false if the sleep was interrupted. */ private boolean sleep() { long now = EnvironmentEdgeManager.currentTime(); long startTime = now; long waitTime = sleepTime; while (waitTime > 0) { long woke = -1; try { synchronized (sleepLock) { if (triggerWake) break; sleepLock.wait(waitTime); } woke = EnvironmentEdgeManager.currentTime(); } catch (InterruptedException iex) { return false; } // Recalculate waitTime. woke = (woke == -1) ? EnvironmentEdgeManager.currentTime() : woke; waitTime = waitTime - (woke - startTime); } return true; } public void add(Map.Entry> e) { actions.add(e.getKey(), e.getValue()); } public MultiAction getActions() { return actions; } public long getSleepTime() { return sleepTime; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy