com.hotels.bdp.circustrain.s3mapreducecpcopier.S3MapReduceCpCopierFactory Maven / Gradle / Ivy
/**
* Copyright (C) 2016-2017 Expedia Inc.
*
* 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.hotels.bdp.circustrain.s3mapreducecpcopier;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Profile;
import org.springframework.core.Ordered;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
import com.codahale.metrics.MetricRegistry;
import com.hotels.bdp.circustrain.api.Modules;
import com.hotels.bdp.circustrain.api.copier.Copier;
import com.hotels.bdp.circustrain.api.copier.CopierFactory;
import com.hotels.bdp.circustrain.aws.S3Schemes;
@Profile({ Modules.REPLICATION })
@Component
@Order(Ordered.LOWEST_PRECEDENCE - 1) // This will give priority to user-defined CopierFactory's
public class S3MapReduceCpCopierFactory implements CopierFactory {
private final Configuration conf;
private final MetricRegistry runningMetricsRegistry;
@Autowired
S3MapReduceCpCopierFactory(@Value("#{sourceHiveConf}") Configuration conf, MetricRegistry runningMetricsRegistry) {
this.conf = conf;
this.runningMetricsRegistry = runningMetricsRegistry;
}
@Override
public boolean supportsSchemes(String sourceScheme, String replicaScheme) {
// Supports copying from hdfs/file to s3.
return !S3Schemes.isS3Scheme(sourceScheme) && S3Schemes.isS3Scheme(replicaScheme);
}
@Override
public Copier newInstance(
String eventId,
Path sourceBaseLocation,
List sourceSubLocations,
Path replicaLocation,
Map copierOptions) {
return new S3MapReduceCpCopier(conf, sourceBaseLocation, sourceSubLocations, replicaLocation, copierOptions,
runningMetricsRegistry);
}
@Override
public Copier newInstance(
String eventId,
Path sourceBaseLocation,
Path replicaLocation,
Map copierOptions) {
return newInstance(eventId, sourceBaseLocation, Collections. emptyList(), replicaLocation, copierOptions);
}
}