org.apache.hudi.io.hadoop.HoodieAvroFileReaderFactory Maven / Gradle / Ivy
/*
* 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.hudi.io.hadoop;
import org.apache.hudi.common.config.HoodieConfig;
import org.apache.hudi.common.util.Option;
import org.apache.hudi.io.storage.HoodieAvroBootstrapFileReader;
import org.apache.hudi.io.storage.HoodieFileReader;
import org.apache.hudi.io.storage.HoodieFileReaderFactory;
import org.apache.hudi.io.storage.HoodieNativeAvroHFileReader;
import org.apache.hudi.storage.HoodieStorage;
import org.apache.hudi.storage.StoragePath;
import org.apache.avro.Schema;
import java.io.IOException;
public class HoodieAvroFileReaderFactory extends HoodieFileReaderFactory {
public HoodieAvroFileReaderFactory(HoodieStorage storage) {
super(storage);
}
@Override
protected HoodieFileReader newParquetFileReader(StoragePath path) {
return new HoodieAvroParquetReader(storage, path);
}
@Override
protected HoodieFileReader newHFileFileReader(HoodieConfig hoodieConfig,
StoragePath path,
Option schemaOption) throws IOException {
if (isUseNativeHFileReaderEnabled(hoodieConfig)) {
return new HoodieNativeAvroHFileReader(storage, path, schemaOption);
}
if (schemaOption.isPresent()) {
return new HoodieHBaseAvroHFileReader(storage.getConf(), path, schemaOption);
}
return new HoodieHBaseAvroHFileReader(storage.getConf(), path);
}
@Override
protected HoodieFileReader newHFileFileReader(HoodieConfig hoodieConfig,
StoragePath path,
HoodieStorage storage,
byte[] content,
Option schemaOption) throws IOException {
if (isUseNativeHFileReaderEnabled(hoodieConfig)) {
return new HoodieNativeAvroHFileReader(this.storage, content, schemaOption);
}
return new HoodieHBaseAvroHFileReader(this.storage.getConf(), path, storage, content, schemaOption);
}
@Override
protected HoodieFileReader newOrcFileReader(StoragePath path) {
return new HoodieAvroOrcReader(storage, path);
}
@Override
public HoodieFileReader newBootstrapFileReader(HoodieFileReader skeletonFileReader, HoodieFileReader dataFileReader, Option partitionFields, Object[] partitionValues) {
return new HoodieAvroBootstrapFileReader(skeletonFileReader, dataFileReader, partitionFields, partitionValues);
}
}