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

org.apache.flink.runtime.shuffle.UnknownShuffleDescriptor Maven / Gradle / Ivy

There is a newer version: 1.13.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.runtime.shuffle;

import org.apache.flink.runtime.clusterframework.types.ResourceID;
import org.apache.flink.runtime.io.network.partition.ResultPartitionID;

import java.util.Optional;

/**
 * Unknown {@link ShuffleDescriptor} for which the producer has not been deployed yet.
 *
 

When a partition consumer is being scheduled, it can happen * that the producer of the partition (consumer input channel) has not been scheduled * and its location and other relevant data is yet to be defined. * To proceed with the consumer deployment, currently unknown input channels have to be * marked with placeholders which are this special implementation of {@link ShuffleDescriptor}. */ public final class UnknownShuffleDescriptor implements ShuffleDescriptor { private static final long serialVersionUID = -4001330825983412431L; private final ResultPartitionID resultPartitionID; public UnknownShuffleDescriptor(ResultPartitionID resultPartitionID) { this.resultPartitionID = resultPartitionID; } @Override public ResultPartitionID getResultPartitionID() { return resultPartitionID; } @Override public boolean isUnknown() { return true; } @Override public Optional storesLocalResourcesOn() { return Optional.empty(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy