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

org.apache.flink.runtime.concurrent.FutureUtils Maven / Gradle / Ivy

/*
 * 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.flink.runtime.concurrent;

import org.apache.flink.api.common.time.Deadline;
import org.apache.flink.api.common.time.Time;
import org.apache.flink.runtime.util.ExecutorThreadFactory;
import org.apache.flink.util.ExceptionUtils;
import org.apache.flink.util.Preconditions;
import org.apache.flink.util.function.RunnableWithException;
import org.apache.flink.util.function.SupplierWithException;

import akka.dispatch.OnComplete;

import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.concurrent.CancellationException;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionException;
import java.util.concurrent.CompletionStage;
import java.util.concurrent.Executor;
import java.util.concurrent.ForkJoinPool;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.function.BiFunction;
import java.util.function.Predicate;
import java.util.function.Supplier;

import scala.concurrent.Future;
import scala.concurrent.duration.FiniteDuration;

import static org.apache.flink.util.Preconditions.checkNotNull;

/**
 * A collection of utilities that expand the usage of {@link CompletableFuture}.
 */
public class FutureUtils {

	// ------------------------------------------------------------------------
	//  retrying operations
	// ------------------------------------------------------------------------


	/**
	 * Retry the given operation the given number of times in case of a failure.
	 *
	 * @param operation to executed
	 * @param retries if the operation failed
	 * @param executor to use to run the futures
	 * @param  type of the result
	 * @return Future containing either the result of the operation or a {@link RetryException}
	 */
	public static  CompletableFuture retry(
			final Supplier> operation,
			final int retries,
			final Executor executor) {

		final CompletableFuture resultFuture = new CompletableFuture<>();

		retryOperation(resultFuture, operation, retries, executor);

		return resultFuture;
	}

	/**
	 * Helper method which retries the provided operation in case of a failure.
	 *
	 * @param resultFuture to complete
	 * @param operation to retry
	 * @param retries until giving up
	 * @param executor to run the futures
	 * @param  type of the future's result
	 */
	private static  void retryOperation(
			final CompletableFuture resultFuture,
			final Supplier> operation,
			final int retries,
			final Executor executor) {

		if (!resultFuture.isDone()) {
			final CompletableFuture operationFuture = operation.get();

			operationFuture.whenCompleteAsync(
				(t, throwable) -> {
					if (throwable != null) {
						if (throwable instanceof CancellationException) {
							resultFuture.completeExceptionally(new RetryException("Operation future was cancelled.", throwable));
						} else {
							if (retries > 0) {
								retryOperation(
									resultFuture,
									operation,
									retries - 1,
									executor);
							} else {
								resultFuture.completeExceptionally(new RetryException("Could not complete the operation. Number of retries " +
									"has been exhausted.", throwable));
							}
						}
					} else {
						resultFuture.complete(t);
					}
				},
				executor);

			resultFuture.whenComplete(
				(t, throwable) -> operationFuture.cancel(false));
		}
	}

	/**
	 * Retry the given operation with the given delay in between failures.
	 *
	 * @param operation to retry
	 * @param retries number of retries
	 * @param retryDelay delay between retries
	 * @param retryPredicate Predicate to test whether an exception is retryable
	 * @param scheduledExecutor executor to be used for the retry operation
	 * @param  type of the result
	 * @return Future which retries the given operation a given amount of times and delays the retry in case of failures
	 */
	public static  CompletableFuture retryWithDelay(
			final Supplier> operation,
			final int retries,
			final Time retryDelay,
			final Predicate retryPredicate,
			final ScheduledExecutor scheduledExecutor) {

		final CompletableFuture resultFuture = new CompletableFuture<>();

		retryOperationWithDelay(
			resultFuture,
			operation,
			retries,
			retryDelay,
			retryPredicate,
			scheduledExecutor);

		return resultFuture;
	}

	/**
	 * Retry the given operation with the given delay in between failures.
	 *
	 * @param operation to retry
	 * @param retries number of retries
	 * @param retryDelay delay between retries
	 * @param scheduledExecutor executor to be used for the retry operation
	 * @param  type of the result
	 * @return Future which retries the given operation a given amount of times and delays the retry in case of failures
	 */
	public static  CompletableFuture retryWithDelay(
			final Supplier> operation,
			final int retries,
			final Time retryDelay,
			final ScheduledExecutor scheduledExecutor) {
		return retryWithDelay(
			operation,
			retries,
			retryDelay,
			(throwable) -> true,
			scheduledExecutor);
	}

	private static  void retryOperationWithDelay(
			final CompletableFuture resultFuture,
			final Supplier> operation,
			final int retries,
			final Time retryDelay,
			final Predicate retryPredicate,
			final ScheduledExecutor scheduledExecutor) {

		if (!resultFuture.isDone()) {
			final CompletableFuture operationResultFuture = operation.get();

			operationResultFuture.whenComplete(
				(t, throwable) -> {
					if (throwable != null) {
						if (throwable instanceof CancellationException) {
							resultFuture.completeExceptionally(new RetryException("Operation future was cancelled.", throwable));
						} else {
							if (retries > 0 && retryPredicate.test(throwable)) {
								final ScheduledFuture scheduledFuture = scheduledExecutor.schedule(
									() -> retryOperationWithDelay(resultFuture, operation, retries - 1, retryDelay, retryPredicate, scheduledExecutor),
									retryDelay.toMilliseconds(),
									TimeUnit.MILLISECONDS);

								resultFuture.whenComplete(
									(innerT, innerThrowable) -> scheduledFuture.cancel(false));
							} else {
								final String errorMsg = retries == 0 ?
									"Number of retries has been exhausted." :
									"Exception is not retryable.";
								resultFuture.completeExceptionally(new RetryException(
									"Could not complete the operation. " + errorMsg,
									throwable));
							}
						}
					} else {
						resultFuture.complete(t);
					}
				});

			resultFuture.whenComplete(
				(t, throwable) -> operationResultFuture.cancel(false));
		}
	}

	/**
	 * Retry the given operation with the given delay in between successful completions where the
	 * result does not match a given predicate.
	 *
	 * @param operation to retry
	 * @param retryDelay delay between retries
	 * @param deadline A deadline that specifies at what point we should stop retrying
	 * @param acceptancePredicate Predicate to test whether the result is acceptable
	 * @param scheduledExecutor executor to be used for the retry operation
	 * @param  type of the result
	 * @return Future which retries the given operation a given amount of times and delays the retry
	 *   in case the predicate isn't matched
	 */
	public static  CompletableFuture retrySuccesfulWithDelay(
		final Supplier> operation,
		final Time retryDelay,
		final Deadline deadline,
		final Predicate acceptancePredicate,
		final ScheduledExecutor scheduledExecutor) {

		final CompletableFuture resultFuture = new CompletableFuture<>();

		retrySuccessfulOperationWithDelay(
			resultFuture,
			operation,
			retryDelay,
			deadline,
			acceptancePredicate,
			scheduledExecutor);

		return resultFuture;
	}

	private static  void retrySuccessfulOperationWithDelay(
		final CompletableFuture resultFuture,
		final Supplier> operation,
		final Time retryDelay,
		final Deadline deadline,
		final Predicate acceptancePredicate,
		final ScheduledExecutor scheduledExecutor) {

		if (!resultFuture.isDone()) {
			final CompletableFuture operationResultFuture = operation.get();

			operationResultFuture.whenComplete(
				(t, throwable) -> {
					if (throwable != null) {
						if (throwable instanceof CancellationException) {
							resultFuture.completeExceptionally(new RetryException("Operation future was cancelled.", throwable));
						} else {
							resultFuture.completeExceptionally(throwable);
						}
					} else {
						if (acceptancePredicate.test(t)) {
							resultFuture.complete(t);
						} else if (deadline.hasTimeLeft()) {
							final ScheduledFuture scheduledFuture = scheduledExecutor.schedule(
								() -> retrySuccessfulOperationWithDelay(resultFuture, operation, retryDelay, deadline, acceptancePredicate, scheduledExecutor),
								retryDelay.toMilliseconds(),
								TimeUnit.MILLISECONDS);

							resultFuture.whenComplete(
								(innerT, innerThrowable) -> scheduledFuture.cancel(false));
						} else {
							resultFuture.completeExceptionally(
								new RetryException("Could not satisfy the predicate within the allowed time."));
						}
					}
				});

			resultFuture.whenComplete(
				(t, throwable) -> operationResultFuture.cancel(false));
		}
	}

	/**
	 * Exception with which the returned future is completed if the {@link #retry(Supplier, int, Executor)}
	 * operation fails.
	 */
	public static class RetryException extends Exception {

		private static final long serialVersionUID = 3613470781274141862L;

		public RetryException(String message) {
			super(message);
		}

		public RetryException(String message, Throwable cause) {
			super(message, cause);
		}

		public RetryException(Throwable cause) {
			super(cause);
		}
	}

	/**
	 * Times the given future out after the timeout.
	 *
	 * @param future to time out
	 * @param timeout after which the given future is timed out
	 * @param timeUnit time unit of the timeout
	 * @param  type of the given future
	 * @return The timeout enriched future
	 */
	public static  CompletableFuture orTimeout(CompletableFuture future, long timeout, TimeUnit timeUnit) {
		if (!future.isDone()) {
			final ScheduledFuture timeoutFuture = Delayer.delay(new Timeout(future), timeout, timeUnit);

			future.whenComplete((T value, Throwable throwable) -> {
				if (!timeoutFuture.isDone()) {
					timeoutFuture.cancel(false);
				}
			});
		}

		return future;
	}

	// ------------------------------------------------------------------------
	//  Future actions
	// ------------------------------------------------------------------------

	/**
	 * Run the given action after the completion of the given future. The given future can be
	 * completed normally or exceptionally. In case of an exceptional completion the, the
	 * action's exception will be added to the initial exception.
	 *
	 * @param future to wait for its completion
	 * @param runnable action which is triggered after the future's completion
	 * @return Future which is completed after the action has completed. This future can contain an exception,
	 * if an error occurred in the given future or action.
	 */
	public static CompletableFuture runAfterwards(CompletableFuture future, RunnableWithException runnable) {
		return runAfterwardsAsync(future, runnable, Executors.directExecutor());
	}

	/**
	 * Run the given action after the completion of the given future. The given future can be
	 * completed normally or exceptionally. In case of an exceptional completion the, the
	 * action's exception will be added to the initial exception.
	 *
	 * @param future to wait for its completion
	 * @param runnable action which is triggered after the future's completion
	 * @return Future which is completed after the action has completed. This future can contain an exception,
	 * if an error occurred in the given future or action.
	 */
	public static CompletableFuture runAfterwardsAsync(CompletableFuture future, RunnableWithException runnable) {
		return runAfterwardsAsync(future, runnable, ForkJoinPool.commonPool());
	}

	/**
	 * Run the given action after the completion of the given future. The given future can be
	 * completed normally or exceptionally. In case of an exceptional completion the, the
	 * action's exception will be added to the initial exception.
	 *
	 * @param future to wait for its completion
	 * @param runnable action which is triggered after the future's completion
	 * @param executor to run the given action
	 * @return Future which is completed after the action has completed. This future can contain an exception,
	 * if an error occurred in the given future or action.
	 */
	public static CompletableFuture runAfterwardsAsync(
		CompletableFuture future,
		RunnableWithException runnable,
		Executor executor) {
		final CompletableFuture resultFuture = new CompletableFuture<>();

		future.whenCompleteAsync(
			(Object ignored, Throwable throwable) -> {
				try {
					runnable.run();
				} catch (Throwable e) {
					throwable = ExceptionUtils.firstOrSuppressed(e, throwable);
				}

				if (throwable != null) {
					resultFuture.completeExceptionally(throwable);
				} else {
					resultFuture.complete(null);
				}
			},
			executor);

		return resultFuture;
	}

	/**
	 * Run the given asynchronous action after the completion of the given future. The given future can be
	 * completed normally or exceptionally. In case of an exceptional completion, the
	 * asynchronous action's exception will be added to the initial exception.
	 *
	 * @param future to wait for its completion
	 * @param composedAction asynchronous action which is triggered after the future's completion
	 * @return Future which is completed after the asynchronous action has completed. This future can contain
	 * an exception if an error occurred in the given future or asynchronous action.
	 */
	public static CompletableFuture composeAfterwards(
			CompletableFuture future,
			Supplier> composedAction) {
		final CompletableFuture resultFuture = new CompletableFuture<>();

		future.whenComplete(
			(Object outerIgnored, Throwable outerThrowable) -> {
				final CompletableFuture composedActionFuture = composedAction.get();

				composedActionFuture.whenComplete(
					(Object innerIgnored, Throwable innerThrowable) -> {
						if (innerThrowable != null) {
							resultFuture.completeExceptionally(ExceptionUtils.firstOrSuppressed(innerThrowable, outerThrowable));
						} else if (outerThrowable != null) {
							resultFuture.completeExceptionally(outerThrowable);
						} else {
							resultFuture.complete(null);
						}
					});
			});

		return resultFuture;
	}

	// ------------------------------------------------------------------------
	//  composing futures
	// ------------------------------------------------------------------------

	/**
	 * Creates a future that is complete once multiple other futures completed.
	 * The future fails (completes exceptionally) once one of the futures in the
	 * conjunction fails. Upon successful completion, the future returns the
	 * collection of the futures' results.
	 *
	 * 

The ConjunctFuture gives access to how many Futures in the conjunction have already * completed successfully, via {@link ConjunctFuture#getNumFuturesCompleted()}. * * @param futures The futures that make up the conjunction. No null entries are allowed. * @return The ConjunctFuture that completes once all given futures are complete (or one fails). */ public static ConjunctFuture> combineAll(Collection> futures) { checkNotNull(futures, "futures"); return new ResultConjunctFuture<>(futures); } /** * Creates a future that is complete once all of the given futures have completed. * The future fails (completes exceptionally) once one of the given futures * fails. * *

The ConjunctFuture gives access to how many Futures have already * completed successfully, via {@link ConjunctFuture#getNumFuturesCompleted()}. * * @param futures The futures to wait on. No null entries are allowed. * @return The WaitingFuture that completes once all given futures are complete (or one fails). */ public static ConjunctFuture waitForAll(Collection> futures) { checkNotNull(futures, "futures"); return new WaitingConjunctFuture(futures); } /** * A future that is complete once multiple other futures completed. The futures are not * necessarily of the same type. The ConjunctFuture fails (completes exceptionally) once * one of the Futures in the conjunction fails. * *

The advantage of using the ConjunctFuture over chaining all the futures (such as via * {@link CompletableFuture#thenCombine(CompletionStage, BiFunction)} )}) is that ConjunctFuture * also tracks how many of the Futures are already complete. */ public abstract static class ConjunctFuture extends CompletableFuture { /** * Gets the total number of Futures in the conjunction. * @return The total number of Futures in the conjunction. */ public abstract int getNumFuturesTotal(); /** * Gets the number of Futures in the conjunction that are already complete. * @return The number of Futures in the conjunction that are already complete */ public abstract int getNumFuturesCompleted(); /** * Gets the individual futures which make up the {@link ConjunctFuture}. * * @return Collection of futures which make up the {@link ConjunctFuture} */ protected abstract Collection> getConjunctFutures(); @Override public boolean cancel(boolean mayInterruptIfRunning) { for (CompletableFuture completableFuture : getConjunctFutures()) { completableFuture.cancel(mayInterruptIfRunning); } return super.cancel(mayInterruptIfRunning); } } /** * The implementation of the {@link ConjunctFuture} which returns its Futures' result as a collection. */ private static class ResultConjunctFuture extends ConjunctFuture> { private final Collection> resultFutures; /** The total number of futures in the conjunction. */ private final int numTotal; /** The next free index in the results arrays. */ private final AtomicInteger nextIndex = new AtomicInteger(0); /** The number of futures in the conjunction that are already complete. */ private final AtomicInteger numCompleted = new AtomicInteger(0); /** The set of collected results so far. */ private volatile T[] results; /** The function that is attached to all futures in the conjunction. Once a future * is complete, this function tracks the completion or fails the conjunct. */ private void handleCompletedFuture(T value, Throwable throwable) { if (throwable != null) { completeExceptionally(throwable); } else { int index = nextIndex.getAndIncrement(); results[index] = value; if (numCompleted.incrementAndGet() == numTotal) { complete(Arrays.asList(results)); } } } @SuppressWarnings("unchecked") ResultConjunctFuture(Collection> resultFutures) { this.resultFutures = checkNotNull(resultFutures); this.numTotal = resultFutures.size(); results = (T[]) new Object[numTotal]; if (resultFutures.isEmpty()) { complete(Collections.emptyList()); } else { for (CompletableFuture future : resultFutures) { future.whenComplete(this::handleCompletedFuture); } } } @Override public int getNumFuturesTotal() { return numTotal; } @Override public int getNumFuturesCompleted() { return numCompleted.get(); } @Override protected Collection> getConjunctFutures() { return resultFutures; } } /** * Implementation of the {@link ConjunctFuture} interface which waits only for the completion * of its futures and does not return their values. */ private static final class WaitingConjunctFuture extends ConjunctFuture { private final Collection> futures; /** Number of completed futures. */ private final AtomicInteger numCompleted = new AtomicInteger(0); /** Total number of futures to wait on. */ private final int numTotal; /** Method which increments the atomic completion counter and completes or fails the WaitingFutureImpl. */ private void handleCompletedFuture(Object ignored, Throwable throwable) { if (throwable == null) { if (numTotal == numCompleted.incrementAndGet()) { complete(null); } } else { completeExceptionally(throwable); } } private WaitingConjunctFuture(Collection> futures) { this.futures = checkNotNull(futures); this.numTotal = futures.size(); if (futures.isEmpty()) { complete(null); } else { for (java.util.concurrent.CompletableFuture future : futures) { future.whenComplete(this::handleCompletedFuture); } } } @Override public int getNumFuturesTotal() { return numTotal; } @Override public int getNumFuturesCompleted() { return numCompleted.get(); } @Override protected Collection> getConjunctFutures() { return futures; } } /** * Creates a {@link ConjunctFuture} which is only completed after all given futures have completed. * Unlike {@link FutureUtils#waitForAll(Collection)}, the resulting future won't be completed directly * if one of the given futures is completed exceptionally. Instead, all occurring exception will be * collected and combined to a single exception. If at least on exception occurs, then the resulting * future will be completed exceptionally. * * @param futuresToComplete futures to complete * @return Future which is completed after all given futures have been completed. */ public static ConjunctFuture completeAll(Collection> futuresToComplete) { return new CompletionConjunctFuture(futuresToComplete); } /** * {@link ConjunctFuture} implementation which is completed after all the given futures have been * completed. Exceptional completions of the input futures will be recorded but it won't trigger the * early completion of this future. */ private static final class CompletionConjunctFuture extends ConjunctFuture { private final Object lock = new Object(); private final int numFuturesTotal; private final Collection> futuresToComplete; private int futuresCompleted; private Throwable globalThrowable; private CompletionConjunctFuture(Collection> futuresToComplete) { this.futuresToComplete = checkNotNull(futuresToComplete); numFuturesTotal = futuresToComplete.size(); futuresCompleted = 0; globalThrowable = null; if (futuresToComplete.isEmpty()) { complete(null); } else { for (CompletableFuture completableFuture : futuresToComplete) { completableFuture.whenComplete(this::completeFuture); } } } private void completeFuture(Object ignored, Throwable throwable) { synchronized (lock) { futuresCompleted++; if (throwable != null) { globalThrowable = ExceptionUtils.firstOrSuppressed(throwable, globalThrowable); } if (futuresCompleted == numFuturesTotal) { if (globalThrowable != null) { completeExceptionally(globalThrowable); } else { complete(null); } } } } @Override public int getNumFuturesTotal() { return numFuturesTotal; } @Override public int getNumFuturesCompleted() { synchronized (lock) { return futuresCompleted; } } @Override protected Collection> getConjunctFutures() { return futuresToComplete; } } // ------------------------------------------------------------------------ // Helper methods // ------------------------------------------------------------------------ /** * Returns an exceptionally completed {@link CompletableFuture}. * * @param cause to complete the future with * @param type of the future * @return An exceptionally completed CompletableFuture */ public static CompletableFuture completedExceptionally(Throwable cause) { CompletableFuture result = new CompletableFuture<>(); result.completeExceptionally(cause); return result; } /** * Returns a future which is completed with the result of the {@link SupplierWithException}. * * @param supplier to provide the future's value * @param executor to execute the supplier * @param type of the result * @return Future which is completed with the value of the supplier */ public static CompletableFuture supplyAsync(SupplierWithException supplier, Executor executor) { return CompletableFuture.supplyAsync( () -> { try { return supplier.get(); } catch (Throwable e) { throw new CompletionException(e); } }, executor); } /** * Converts Flink time into a {@link FiniteDuration}. * * @param time to convert into a FiniteDuration * @return FiniteDuration with the length of the given time */ public static FiniteDuration toFiniteDuration(Time time) { return new FiniteDuration(time.toMilliseconds(), TimeUnit.MILLISECONDS); } /** * Converts {@link FiniteDuration} into Flink time. * * @param finiteDuration to convert into Flink time * @return Flink time with the length of the given finite duration */ public static Time toTime(FiniteDuration finiteDuration) { return Time.milliseconds(finiteDuration.toMillis()); } // ------------------------------------------------------------------------ // Converting futures // ------------------------------------------------------------------------ /** * Converts a Scala {@link Future} to a {@link CompletableFuture}. * * @param scalaFuture to convert to a Java 8 CompletableFuture * @param type of the future value * @return Java 8 CompletableFuture */ public static CompletableFuture toJava(Future scalaFuture) { final CompletableFuture result = new CompletableFuture<>(); scalaFuture.onComplete(new OnComplete() { @Override public void onComplete(Throwable failure, T success) { if (failure != null) { result.completeExceptionally(failure); } else { result.complete(success); } } }, Executors.directExecutionContext()); return result; } /** * Runnable to complete the given future with a {@link TimeoutException}. */ private static final class Timeout implements Runnable { private final CompletableFuture future; private Timeout(CompletableFuture future) { this.future = Preconditions.checkNotNull(future); } @Override public void run() { future.completeExceptionally(new TimeoutException()); } } /** * Delay scheduler used to timeout futures. * *

This class creates a singleton scheduler used to run the provided actions. */ private static final class Delayer { static final ScheduledThreadPoolExecutor delayer = new ScheduledThreadPoolExecutor( 1, new ExecutorThreadFactory("FlinkCompletableFutureDelayScheduler")); /** * Delay the given action by the given delay. * * @param runnable to execute after the given delay * @param delay after which to execute the runnable * @param timeUnit time unit of the delay * @return Future of the scheduled action */ private static ScheduledFuture delay(Runnable runnable, long delay, TimeUnit timeUnit) { Preconditions.checkNotNull(runnable); Preconditions.checkNotNull(timeUnit); return delayer.schedule(runnable, delay, timeUnit); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy