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

com.facebook.presto.spark.execution.shuffle.PrestoSparkLocalShuffleInfoTranslator Maven / Gradle / Ivy

There is a newer version: 0.289
Show newest version
/*
 * 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.execution.shuffle;

import com.facebook.airlift.json.JsonCodec;
import com.facebook.presto.Session;
import com.facebook.presto.spark.classloader_interface.PrestoSparkShuffleReadDescriptor;
import com.facebook.presto.spark.classloader_interface.PrestoSparkShuffleWriteDescriptor;
import com.google.inject.Inject;

import java.io.IOException;
import java.io.UncheckedIOException;
import java.nio.file.Files;

import static java.util.Objects.requireNonNull;

public class PrestoSparkLocalShuffleInfoTranslator
        implements PrestoSparkShuffleInfoTranslator
{
    private final String localShuffleRootPath;
    private final JsonCodec readInfoJsonCodec;
    private final JsonCodec writeInfoJsonCodec;

    @Inject
    public PrestoSparkLocalShuffleInfoTranslator(
            JsonCodec readInfoJsonCodec,
            JsonCodec writeInfoJsonCodec)
    {
        try {
            this.localShuffleRootPath = Files.createTempDirectory("local_shuffle").toAbsolutePath().toString();
        }
        catch (IOException e) {
            throw new UncheckedIOException("Error creating temporary directory 'local_shuffle'.", e);
        }
        this.readInfoJsonCodec = requireNonNull(readInfoJsonCodec, "readInfoJsonCodec is null");
        this.writeInfoJsonCodec = requireNonNull(writeInfoJsonCodec, "writeInfoJsonCodec is null");
    }

    @Override
    public PrestoSparkLocalShuffleWriteInfo createShuffleWriteInfo(Session session, PrestoSparkShuffleWriteDescriptor writeDescriptor)
    {
        return new PrestoSparkLocalShuffleWriteInfo(writeDescriptor.getNumPartitions(), session.getQueryId().getId(), writeDescriptor.getShuffleHandle().shuffleId(), localShuffleRootPath);
    }

    @Override
    public PrestoSparkLocalShuffleReadInfo createShuffleReadInfo(Session session, PrestoSparkShuffleReadDescriptor readDescriptor)
    {
        return new PrestoSparkLocalShuffleReadInfo(
                session.getQueryId().getId(),
                readDescriptor.getPartitionIds(),
                localShuffleRootPath);
    }

    @Override
    public String createSerializedWriteInfo(PrestoSparkShuffleWriteInfo writeInfo)
    {
        return writeInfoJsonCodec.toJson((PrestoSparkLocalShuffleWriteInfo) writeInfo);
    }

    @Override
    public String createSerializedReadInfo(PrestoSparkShuffleReadInfo readInfo)
    {
        return readInfoJsonCodec.toJson((PrestoSparkLocalShuffleReadInfo) readInfo);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy