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 (apache#5927)

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

Signed-off-by: Duo Zhang <zhangduo@apache.org>
  • Loading branch information
fjvbn2003 authored and vinayakphegde committed May 21, 2024
1 parent b816d7e commit aa0ecd9
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 aa0ecd9

Please sign in to comment.