1
0

feature(HoodieGlobalBloomIndex): adds a new type of bloom index to allow global record key lookup

This commit is contained in:
jiale.tan
2018-08-13 17:35:21 -07:00
committed by vinoth chandar
parent 7ba842c0fe
commit 98fd97b65f
8 changed files with 531 additions and 81 deletions

View File

@@ -195,7 +195,7 @@ public class HoodieCopyOnWriteTable<T extends HoodieRecordPayload> extends Hoodi
"Error in finding the old file path at commit " + commitTime + " for fileId: " + fileId);
} else {
AvroReadSupport.setAvroReadSchema(getHadoopConf(), upsertHandle.getSchema());
ParquetReader<IndexedRecord> reader = AvroParquetReader.builder(upsertHandle.getOldFilePath())
ParquetReader<IndexedRecord> reader = AvroParquetReader.<IndexedRecord>builder(upsertHandle.getOldFilePath())
.withConf(getHadoopConf()).build();
BoundedInMemoryExecutor<GenericRecord, GenericRecord, Void> wrapper = null;
try {