org.apache.iceberg.aliyun.oss.OSSFileIO Maven / Gradle / Ivy
Show all versions of iceberg-aliyun Show documentation
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.iceberg.aliyun.oss;
import com.aliyun.oss.OSS;
import java.util.Map;
import java.util.concurrent.atomic.AtomicBoolean;
import org.apache.iceberg.aliyun.AliyunClientFactories;
import org.apache.iceberg.aliyun.AliyunClientFactory;
import org.apache.iceberg.aliyun.AliyunProperties;
import org.apache.iceberg.common.DynConstructors;
import org.apache.iceberg.io.FileIO;
import org.apache.iceberg.io.InputFile;
import org.apache.iceberg.io.OutputFile;
import org.apache.iceberg.metrics.MetricsContext;
import org.apache.iceberg.util.SerializableSupplier;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* FileIO implementation backed by OSS.
*
* Locations used must follow the conventions for OSS URIs (e.g. oss://bucket/path...). URIs with
* scheme https are also treated as oss file paths. Using this FileIO with other schemes with result
* in {@link org.apache.iceberg.exceptions.ValidationException}
*/
public class OSSFileIO implements FileIO {
private static final Logger LOG = LoggerFactory.getLogger(OSSFileIO.class);
private static final String DEFAULT_METRICS_IMPL =
"org.apache.iceberg.hadoop.HadoopMetricsContext";
private SerializableSupplier oss;
private AliyunProperties aliyunProperties;
private transient volatile OSS client;
private MetricsContext metrics = MetricsContext.nullMetrics();
private final AtomicBoolean isResourceClosed = new AtomicBoolean(false);
/**
* No-arg constructor to load the FileIO dynamically.
*
* All fields are initialized by calling {@link OSSFileIO#initialize(Map)} later.
*/
public OSSFileIO() {}
/**
* Constructor with custom oss supplier and default aliyun properties.
*
*
Calling {@link OSSFileIO#initialize(Map)} will overwrite information set in this
* constructor.
*
* @param oss oss supplier
*/
public OSSFileIO(SerializableSupplier oss) {
this.oss = oss;
this.aliyunProperties = new AliyunProperties();
}
@Override
public InputFile newInputFile(String path) {
return new OSSInputFile(client(), new OSSURI(path), aliyunProperties, metrics);
}
@Override
public OutputFile newOutputFile(String path) {
return new OSSOutputFile(client(), new OSSURI(path), aliyunProperties, metrics);
}
@Override
public void deleteFile(String path) {
OSSURI location = new OSSURI(path);
client().deleteObject(location.bucket(), location.key());
}
private OSS client() {
if (client == null) {
synchronized (this) {
if (client == null) {
client = oss.get();
}
}
}
return client;
}
@Override
public void initialize(Map properties) {
AliyunClientFactory factory = AliyunClientFactories.from(properties);
this.aliyunProperties = factory.aliyunProperties();
this.oss = factory::newOSSClient;
// Report Hadoop metrics if Hadoop is available
try {
DynConstructors.Ctor ctor =
DynConstructors.builder(MetricsContext.class)
.hiddenImpl(DEFAULT_METRICS_IMPL, String.class)
.buildChecked();
MetricsContext context = ctor.newInstance("oss");
context.initialize(properties);
this.metrics = context;
} catch (NoClassDefFoundError | NoSuchMethodException | ClassCastException e) {
LOG.warn(
"Unable to load metrics class: '{}', falling back to null metrics",
DEFAULT_METRICS_IMPL,
e);
}
}
@Override
public void close() {
// handles concurrent calls to close()
if (isResourceClosed.compareAndSet(false, true)) {
if (client != null) {
client.shutdown();
}
}
}
}