Skip to content

Commit

Permalink
HBASE-28599 RowTooBigException is thrown when duplicate increment RPC…
Browse files Browse the repository at this point in the history
… call is attempted (#5927)

The root cause is analyzed by Robin Infant A(robiee17)

Signed-off-by: Duo Zhang <zhangduo@apache.org>
(cherry picked from commit dba7dcc)
  • Loading branch information
fjvbn2003 authored and Apache9 committed May 20, 2024
1 parent 7f899f5 commit b1755b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4036,7 +4036,7 @@ private static Get toGet(final Mutation mutation) throws IOException {
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));
}
Expand Down

0 comments on commit b1755b5

Please sign in to comment.