danny0405 commented on code in PR #13017:
URL: https://github.com/apache/hudi/pull/13017#discussion_r2011828448
##########
hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/execution/bulkinsert/RDDSimpleBucketBulkInsertPartitioner.java:
##########
@@ -39,11 +41,15 @@
public class RDDSimpleBucketBulkInsertPartitioner<T extends
HoodieRecordPayload> extends RDDBucketIndexPartitioner<T> {
private final boolean isNonBlockingConcurrencyControl;
+ private final NumBucketsFunction numBucketsFunction;
public RDDSimpleBucketBulkInsertPartitioner(HoodieTable table) {
super(table, null, false);
ValidationUtils.checkArgument(table.getIndex() instanceof
HoodieSimpleBucketIndex);
this.isNonBlockingConcurrencyControl =
table.getConfig().isNonBlockingConcurrencyControl();
+ HoodieWriteConfig writeConfig = table.getConfig();
Review Comment:
can be moved to be after line 48.
--
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]