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

com.facebook.presto.spark.classloader_interface.PrestoSparkShuffleReadDescriptor Maven / Gradle / Ivy

/*
 * Licensed 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 com.facebook.presto.spark.classloader_interface;

import org.apache.spark.Partition;
import org.apache.spark.shuffle.ShuffleHandle;

import java.util.List;

import static com.facebook.presto.spark.launcher.internal.com.google.common.base.Preconditions.checkArgument;
import static java.util.Objects.requireNonNull;

/**
 * {@link PrestoSparkShuffleReadDescriptor} is used as a container to carry over Spark shuffle related meta information
 * (e.g. ShuffleHandle, number of partitions etc.) from Spark related structures (Spark Rdd, Spark Partition etc.)
 * to Presto-Spark land. These meta information are essential to delegate the shuffle operation from JVM to external
 * native execution process.
 */
public class PrestoSparkShuffleReadDescriptor
{
    private final Partition partition;
    private final ShuffleHandle shuffleHandle;
    private final List blockIds;
    private final List partitionIds;
    private final List partitionSizes;
    private final int numPartitions;

    public PrestoSparkShuffleReadDescriptor(
            Partition partition,
            ShuffleHandle shuffleHandle,
            int numPartitions,
            List blockIds,
            List partitionIds,
            List partitionSizes)
    {
        this.partition = requireNonNull(partition, "partition is null");
        this.shuffleHandle = requireNonNull(shuffleHandle, "shuffleHandle is null");
        this.blockIds = requireNonNull(blockIds, "blockIds is null");
        this.partitionIds = requireNonNull(partitionIds, "partitionIds is null");
        this.partitionSizes = requireNonNull(partitionSizes, "partitionSizes is null");
        checkArgument(numPartitions > 0, "numPartitions requires larger than 0");
        this.numPartitions = numPartitions;
    }

    public Partition getPartition()
    {
        return partition;
    }

    public List getBlockIds()
    {
        return blockIds;
    }

    public List getPartitionIds()
    {
        return partitionIds;
    }

    public List getPartitionSizes()
    {
        return partitionSizes;
    }

    public ShuffleHandle getShuffleHandle()
    {
        return shuffleHandle;
    }

    public int getNumPartitions()
    {
        return numPartitions;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy