This is an automated email from the ASF dual-hosted git repository.

yihua pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new 2cb32708fb2 [MINOR] Fix hbase index config improper use (#9582)
2cb32708fb2 is described below

commit 2cb32708fb20100f28d45e753516c3e7243569ca
Author: flashJd <[email protected]>
AuthorDate: Fri Sep 15 06:21:52 2023 +0800

    [MINOR] Fix hbase index config improper use (#9582)
---
 .../main/java/org/apache/hudi/index/hbase/SparkHoodieHBaseIndex.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/index/hbase/SparkHoodieHBaseIndex.java
 
b/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/index/hbase/SparkHoodieHBaseIndex.java
index d706070e4c8..039501fbf67 100644
--- 
a/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/index/hbase/SparkHoodieHBaseIndex.java
+++ 
b/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/index/hbase/SparkHoodieHBaseIndex.java
@@ -137,7 +137,7 @@ public class SparkHoodieHBaseIndex extends 
HoodieIndex<Object, Object> {
   }
 
   private void init(HoodieWriteConfig config) {
-    this.multiPutBatchSize = config.getHbaseIndexGetBatchSize();
+    this.multiPutBatchSize = config.getHbaseIndexPutBatchSize();
     this.maxQpsPerRegionServer = config.getHbaseIndexMaxQPSPerRegionServer();
     this.putBatchSizeCalculator = new HBasePutBatchSizeCalculator();
     this.hBaseIndexQPSResourceAllocator = 
createQPSResourceAllocator(this.config);

Reply via email to