nsivabalan commented on a change in pull request #3762:
URL: https://github.com/apache/hudi/pull/3762#discussion_r733042237
##########
File path:
hudi-common/src/main/java/org/apache/hudi/common/table/log/block/HoodieDataBlock.java
##########
@@ -111,6 +111,17 @@ public static HoodieLogBlock getBlock(HoodieLogBlockType
logDataBlockFormat, Lis
return records;
}
+ /**
+ * Batch get of keys of interest. Implementation can choose to either do
full scan and return matched entries or
+ * do a seek based parsing and return matched entries.
+ * @param keys keys of interest.
+ * @return List of IndexedRecords for the keys of interest.
+ * @throws IOException
+ */
+ public List<IndexedRecord> getRecords(List<String> keys) throws IOException {
+ throw new UnsupportedOperationException("On demand batch get based on keys
not supported");
Review comment:
couldn't understand your comment. can you please clarify
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]