[MINOR] Fixing usage of right config value for parallelism to dedup in Bulk Insert (#1905)
This commit is contained in:
committed by
GitHub
parent
433d7d2c98
commit
266bce12b3
@@ -51,7 +51,7 @@ public class BulkInsertHelper<T extends HoodieRecordPayload<T>> {
|
||||
|
||||
if (performDedupe) {
|
||||
dedupedRecords = WriteHelper.combineOnCondition(config.shouldCombineBeforeInsert(), inputRecords,
|
||||
config.getInsertShuffleParallelism(), ((HoodieTable<T>)table));
|
||||
config.getBulkInsertShuffleParallelism(), ((HoodieTable<T>)table));
|
||||
}
|
||||
|
||||
final JavaRDD<HoodieRecord<T>> repartitionedRecords;
|
||||
|
||||
Reference in New Issue
Block a user