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

org.apache.beam.fn.harness.control.FinalizeBundleHandler Maven / Gradle / Ivy

There is a newer version: 2.60.0
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.beam.fn.harness.control;

import static org.apache.beam.vendor.guava.v32_1_2_jre.com.google.common.base.Preconditions.checkState;

import com.google.auto.value.AutoValue;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Comparator;
import java.util.PriorityQueue;
import java.util.concurrent.Callable;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Future;
import org.apache.beam.model.fnexecution.v1.BeamFnApi;
import org.apache.beam.model.fnexecution.v1.BeamFnApi.FinalizeBundleResponse;
import org.apache.beam.sdk.transforms.DoFn.BundleFinalizer;
import org.apache.beam.sdk.values.TimestampedValue;
import org.joda.time.Duration;
import org.joda.time.Instant;

/**
 * A bundle finalization handler that expires entries after a specified amount of time.
 *
 * 

Callers should register new callbacks via {@link #registerCallbacks} and fire existing * callbacks using {@link #finalizeBundle}. * *

See Apache Beam Portability API: How to * Finalize Bundles for further details. */ @SuppressWarnings({ "nullness" // TODO(https://github.com/apache/beam/issues/20497) }) public class FinalizeBundleHandler { /** A {@link BundleFinalizer.Callback} and expiry time pair. */ @AutoValue abstract static class CallbackRegistration { public static CallbackRegistration create( Instant expiryTime, BundleFinalizer.Callback callback) { return new AutoValue_FinalizeBundleHandler_CallbackRegistration(expiryTime, callback); } public abstract Instant getExpiryTime(); public abstract BundleFinalizer.Callback getCallback(); } private final ConcurrentMap> bundleFinalizationCallbacks; private final PriorityQueue> cleanUpQueue; @SuppressWarnings("unused") private final Future cleanUpResult; public FinalizeBundleHandler(ExecutorService executorService) { this.bundleFinalizationCallbacks = new ConcurrentHashMap<>(); this.cleanUpQueue = new PriorityQueue<>(11, Comparator.comparing(TimestampedValue::getTimestamp)); // Wait until we have at least one element. We are notified on each element // being added. // Wait until the current time has past the expiry time for the head of the // queue. // We are notified on each element being added. // Wait until we have at least one element. We are notified on each element // being added. // Wait until the current time has past the expiry time for the head of the // queue. // We are notified on each element being added. cleanUpResult = executorService.submit( (Callable) () -> { while (true) { synchronized (cleanUpQueue) { TimestampedValue expiryTime = cleanUpQueue.peek(); // Wait until we have at least one element. We are notified on each element // being added. while (expiryTime == null) { cleanUpQueue.wait(); expiryTime = cleanUpQueue.peek(); } // Wait until the current time has past the expiry time for the head of the // queue. // We are notified on each element being added. Instant now = Instant.now(); while (expiryTime.getTimestamp().isAfter(now)) { Duration timeDifference = new Duration(now, expiryTime.getTimestamp()); cleanUpQueue.wait(timeDifference.getMillis()); expiryTime = cleanUpQueue.peek(); now = Instant.now(); } bundleFinalizationCallbacks.remove(cleanUpQueue.poll().getValue()); } } }); } public void registerCallbacks(String bundleId, Collection callbacks) { if (callbacks.isEmpty()) { return; } Collection priorCallbacks = bundleFinalizationCallbacks.putIfAbsent(bundleId, callbacks); checkState( priorCallbacks == null, "Expected to not have any past callbacks for bundle %s but found %s.", bundleId, priorCallbacks); long expiryTimeMillis = Long.MIN_VALUE; for (CallbackRegistration callback : callbacks) { expiryTimeMillis = Math.max(expiryTimeMillis, callback.getExpiryTime().getMillis()); } synchronized (cleanUpQueue) { cleanUpQueue.offer(TimestampedValue.of(bundleId, new Instant(expiryTimeMillis))); cleanUpQueue.notify(); } } public BeamFnApi.InstructionResponse.Builder finalizeBundle(BeamFnApi.InstructionRequest request) throws Exception { String bundleId = request.getFinalizeBundle().getInstructionId(); Collection callbacks = bundleFinalizationCallbacks.remove(bundleId); if (callbacks == null) { // We have already processed the callbacks on a prior bundle finalization attempt return BeamFnApi.InstructionResponse.newBuilder() .setFinalizeBundle(FinalizeBundleResponse.getDefaultInstance()); } Collection failures = new ArrayList<>(); for (CallbackRegistration callback : callbacks) { try { callback.getCallback().onBundleSuccess(); } catch (Exception e) { failures.add(e); } } if (!failures.isEmpty()) { Exception e = new Exception( String.format("Failed to handle bundle finalization for bundle %s.", bundleId)); for (Exception failure : failures) { e.addSuppressed(failure); } throw e; } return BeamFnApi.InstructionResponse.newBuilder() .setFinalizeBundle(FinalizeBundleResponse.getDefaultInstance()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy