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

org.apache.flink.streaming.runtime.translators.KeyedBroadcastStateTransformationTranslator Maven / Gradle / Ivy

There is a newer version: 1.14.6
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.flink.streaming.runtime.translators;

import org.apache.flink.annotation.Internal;
import org.apache.flink.streaming.api.graph.StreamConfig;
import org.apache.flink.streaming.api.graph.TransformationTranslator;
import org.apache.flink.streaming.api.operators.SimpleOperatorFactory;
import org.apache.flink.streaming.api.operators.co.BatchCoBroadcastWithKeyedOperator;
import org.apache.flink.streaming.api.operators.co.CoBroadcastWithKeyedOperator;
import org.apache.flink.streaming.api.transformations.KeyedBroadcastStateTransformation;

import java.util.Collection;

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

/**
 * A {@link TransformationTranslator} for the {@link KeyedBroadcastStateTransformation}.
 *
 * @param  The type of the elements in the non-broadcasted input of the {@link
 *     KeyedBroadcastStateTransformation}.
 * @param  The type of the elements in the broadcasted input of the {@link
 *     KeyedBroadcastStateTransformation}.
 * @param  The type of the elements that result from the {@link
 *     KeyedBroadcastStateTransformation}.
 */
@Internal
public class KeyedBroadcastStateTransformationTranslator
        extends AbstractTwoInputTransformationTranslator<
                IN1, IN2, OUT, KeyedBroadcastStateTransformation> {

    @Override
    protected Collection translateForBatchInternal(
            final KeyedBroadcastStateTransformation transformation,
            final Context context) {
        checkNotNull(transformation);
        checkNotNull(context);

        BatchCoBroadcastWithKeyedOperator operator =
                new BatchCoBroadcastWithKeyedOperator<>(
                        transformation.getUserFunction(),
                        transformation.getBroadcastStateDescriptors());

        Collection result =
                translateInternal(
                        transformation,
                        transformation.getRegularInput(),
                        transformation.getBroadcastInput(),
                        SimpleOperatorFactory.of(operator),
                        transformation.getStateKeyType(),
                        transformation.getKeySelector(),
                        null /* no key selector on broadcast input */,
                        context);

        BatchExecutionUtils.applyBatchExecutionSettings(
                transformation.getId(),
                context,
                StreamConfig.InputRequirement.SORTED,
                StreamConfig.InputRequirement.PASS_THROUGH);

        return result;
    }

    @Override
    protected Collection translateForStreamingInternal(
            final KeyedBroadcastStateTransformation transformation,
            final Context context) {
        checkNotNull(transformation);
        checkNotNull(context);

        CoBroadcastWithKeyedOperator operator =
                new CoBroadcastWithKeyedOperator<>(
                        transformation.getUserFunction(),
                        transformation.getBroadcastStateDescriptors());

        return translateInternal(
                transformation,
                transformation.getRegularInput(),
                transformation.getBroadcastInput(),
                SimpleOperatorFactory.of(operator),
                transformation.getStateKeyType(),
                transformation.getKeySelector(),
                null /* no key selector on broadcast input */,
                context);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy