pengzhiwei2018 commented on a change in pull request #2645:
URL: https://github.com/apache/hudi/pull/2645#discussion_r615508220
##########
File path:
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/io/HoodieAppendHandle.java
##########
@@ -444,7 +448,9 @@ private void writeToBuffer(HoodieRecord<T> record) {
}
Option<IndexedRecord> indexedRecord = getIndexedRecord(record);
if (indexedRecord.isPresent()) {
- recordList.add(indexedRecord.get());
+ if (indexedRecord.get() != IGNORE_RECORD) { // Skip the Ignore Record.
Review comment:
> @pengzhiwei2018 one more question, will we introduce Catalog to manage
table operations in further?
Yes, I agree with introduce Catalog to manage table operations for spark3 in
the further.
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]