com.facebook.presto.verifier.prestoaction.JdbcPrestoActionFactory 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.verifier.prestoaction;
import com.facebook.presto.verifier.framework.QueryConfiguration;
import com.facebook.presto.verifier.framework.VerificationContext;
import com.facebook.presto.verifier.framework.VerifierConfig;
import com.facebook.presto.verifier.retry.RetryConfig;
import io.airlift.units.Duration;
import static java.util.Objects.requireNonNull;
public class JdbcPrestoActionFactory
implements PrestoActionFactory
{
private final SqlExceptionClassifier exceptionClassifier;
private final PrestoActionConfig prestoActionConfig;
private final RetryConfig networkRetryConfig;
private final RetryConfig prestoRetryConfig;
private final Duration metadataTimeout;
private final Duration checksumTimeout;
private final VerifierConfig verifierConfig;
private final JdbcUrlSelector jdbcUrlSelector;
public JdbcPrestoActionFactory(
SqlExceptionClassifier exceptionClassifier,
PrestoActionConfig prestoActionConfig,
RetryConfig networkRetryConfig,
RetryConfig prestoRetryConfig,
Duration metadataTimeout,
Duration checksumTimeout,
VerifierConfig verifierConfig)
{
this.exceptionClassifier = requireNonNull(exceptionClassifier, "exceptionClassifier is null");
this.prestoActionConfig = requireNonNull(prestoActionConfig, "prestoClusterConfig is null");
this.networkRetryConfig = requireNonNull(networkRetryConfig, "networkRetryConfig is null");
this.prestoRetryConfig = requireNonNull(prestoRetryConfig, "prestoRetryConfig is null");
this.metadataTimeout = requireNonNull(metadataTimeout, "metadataTimeout is null");
this.checksumTimeout = requireNonNull(checksumTimeout, "checksumTimeout is null");
this.verifierConfig = requireNonNull(verifierConfig, "verifierConfig is null");
this.jdbcUrlSelector = new JdbcUrlSelector(prestoActionConfig.getJdbcUrls());
}
@Override
public JdbcPrestoAction create(QueryConfiguration queryConfiguration, VerificationContext verificationContext)
{
return new JdbcPrestoAction(
exceptionClassifier,
queryConfiguration,
verificationContext,
jdbcUrlSelector,
prestoActionConfig,
metadataTimeout,
checksumTimeout,
networkRetryConfig,
prestoRetryConfig,
verifierConfig);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy