org.apache.hudi.io.storage.HoodieFileReader 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.storage;
import org.apache.avro.Schema;
import org.apache.avro.generic.IndexedRecord;
import org.apache.hudi.common.bloom.BloomFilter;
import org.apache.hudi.common.util.ClosableIterator;
import org.apache.hudi.common.util.Option;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.List;
import java.util.Set;
public interface HoodieFileReader extends AutoCloseable {
String[] readMinMaxRecordKeys();
BloomFilter readBloomFilter();
Set filterRowKeys(Set candidateRowKeys);
ClosableIterator getRecordIterator(Schema readerSchema) throws IOException;
default ClosableIterator getRecordIterator() throws IOException {
return getRecordIterator(getSchema());
}
default Option getRecordByKey(String key, Schema readerSchema) throws IOException {
throw new UnsupportedOperationException();
}
default Option getRecordByKey(String key) throws IOException {
return getRecordByKey(key, getSchema());
}
default ClosableIterator getRecordsByKeysIterator(List keys, Schema schema) throws IOException {
throw new UnsupportedOperationException();
}
default ClosableIterator getRecordsByKeysIterator(List keys) throws IOException {
return getRecordsByKeysIterator(keys, getSchema());
}
default ClosableIterator getRecordsByKeyPrefixIterator(List keyPrefixes, Schema schema) throws IOException {
throw new UnsupportedEncodingException();
}
default ClosableIterator getRecordsByKeyPrefixIterator(List keyPrefixes) throws IOException {
return getRecordsByKeyPrefixIterator(keyPrefixes, getSchema());
}
Schema getSchema();
void close();
long getTotalRecords();
}