Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.nativeprocess;
import com.facebook.airlift.http.client.HttpClient;
import com.facebook.airlift.json.JsonCodec;
import com.facebook.presto.Session;
import com.facebook.presto.client.ServerInfo;
import com.facebook.presto.spark.execution.property.WorkerProperty;
import com.facebook.presto.spark.execution.task.ForNativeExecutionTask;
import com.facebook.presto.spi.PrestoException;
import com.facebook.presto.sql.analyzer.FeaturesConfig;
import com.google.inject.Inject;
import io.airlift.units.Duration;
import java.io.IOException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
import static com.facebook.presto.spi.StandardErrorCode.NATIVE_EXECUTION_PROCESS_LAUNCH_ERROR;
import static java.lang.String.format;
import static java.util.Objects.requireNonNull;
public class DetachedNativeExecutionProcessFactory
extends NativeExecutionProcessFactory
{
private final HttpClient httpClient;
private final ExecutorService coreExecutor;
private final ScheduledExecutorService errorRetryScheduledExecutor;
private final JsonCodec serverInfoCodec;
private final WorkerProperty, ?, ?, ?> workerProperty;
@Inject
public DetachedNativeExecutionProcessFactory(
@ForNativeExecutionTask HttpClient httpClient,
ExecutorService coreExecutor,
ScheduledExecutorService errorRetryScheduledExecutor,
JsonCodec serverInfoCodec,
WorkerProperty, ?, ?, ?> workerProperty,
FeaturesConfig featuresConfig)
{
super(httpClient, coreExecutor, errorRetryScheduledExecutor, serverInfoCodec, workerProperty, featuresConfig);
this.httpClient = requireNonNull(httpClient, "httpClient is null");
this.coreExecutor = requireNonNull(coreExecutor, "ecoreExecutor is null");
this.errorRetryScheduledExecutor = requireNonNull(errorRetryScheduledExecutor, "errorRetryScheduledExecutor is null");
this.serverInfoCodec = requireNonNull(serverInfoCodec, "serverInfoCodec is null");
this.workerProperty = requireNonNull(workerProperty, "workerProperty is null");
}
@Override
public NativeExecutionProcess getNativeExecutionProcess(Session session)
{
return createNativeExecutionProcess(session, new Duration(2, TimeUnit.MINUTES));
}
@Override
public NativeExecutionProcess createNativeExecutionProcess(Session session, Duration maxErrorDuration)
{
try {
return new DetachedNativeExecutionProcess(
getExecutablePath(),
getProgramArguments(),
session,
httpClient,
coreExecutor,
errorRetryScheduledExecutor,
serverInfoCodec,
maxErrorDuration,
workerProperty);
}
catch (IOException e) {
throw new PrestoException(NATIVE_EXECUTION_PROCESS_LAUNCH_ERROR, format("Cannot start native process: %s", e.getMessage()), e);
}
}
}