nsivabalan edited a comment on issue #3418: URL: https://github.com/apache/hudi/issues/3418#issuecomment-894476089
Hudi has bulk_insert to assist in doing a bulk load of data into hudi ( "hoodie.datasource.write.operation" = "bulk_insert"). And bulk_insert has [row writer path](https://hudi.apache.org/docs/configurations/#enable_row_writer_opt_key) which is more performant as well. ("hoodie.datasource.write.row.writer.enable" = "true") You can define diff [sort modes](https://hudi.apache.org/docs/configurations#withbulkinsertsortmodemode--bulkinsertsortmodeglobal_sort) during bulk_insert. NONE, GLOBAL_SORT, (default) PARTITION_SORT Sorting is based on {partitionpath + record key} ("hoodie.bulkinsert.sort.mode") Let me know how it goes. Once you are done w/ bulk load (bulk_insert), you can start using upserts for other incremental ingests. -- 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]
