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

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


The following commit(s) were added to refs/heads/master by this push:
     new dba7dccb65d HBASE-28599 RowTooBigException is thrown when duplicate 
increment RPC call is attempted (#5927)
dba7dccb65d is described below

commit dba7dccb65dfaf5bd88400f12107f28b79aea4a2
Author: Youngju KIM <[email protected]>
AuthorDate: Mon May 20 10:16:55 2024 +0900

    HBASE-28599 RowTooBigException is thrown when duplicate increment RPC call 
is attempted (#5927)
    
    The root cause is analyzed by Robin Infant A(robiee17)
    
    Signed-off-by: Duo Zhang <[email protected]>
---
 .../src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
index c55090d3a75..fdc50bc6947 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
@@ -4036,7 +4036,7 @@ public class HRegion implements HeapSize, 
PropagatingConfigurationObserver, Regi
       assert mutation instanceof Increment || mutation instanceof Append;
       Get get = new Get(mutation.getRow());
       CellScanner cellScanner = mutation.cellScanner();
-      while (!cellScanner.advance()) {
+      while (cellScanner.advance()) {
         Cell cell = cellScanner.current();
         get.addColumn(CellUtil.cloneFamily(cell), 
CellUtil.cloneQualifier(cell));
       }

Reply via email to