Uh oh!
There was an error while loading. Please reload this page.
HBASE-26017 fix pe tool totalRows exceed maximum of int - #3423
HBASE-26017 fix pe tool totalRows exceed maximum of int#3423dingwei-2017 wants to merge 4 commits into
Conversation
Apache-HBase
commented
Jun 24, 2021
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Jun 24, 2021
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Jun 24, 2021
🎊 +1 overall
This message was automatically generated. |
dingwei-2017
commented
Jun 25, 2021
@busbey |
Apache9
commented
Jun 28, 2021
‘larger than’ -> 'greater than' And mind explain a bit on how do you test whether totalRows exceeds maximum of int? Thanks. |
dingwei-2017
commented
Jun 30, 2021
@Apache9 sure. when i run the following command: the terminal shows the following message: This is because opts.totalRows exceeds the max value of Int. rowsPerGB is 1024 * 1024 by default, when opts.size is larger than 2048, opts.size * rowPerGB is larger than 2147483648. the code is in calculateRowsAndSize api. |
Apache9
commented
Jul 2, 2021
Please add some comments in the code? Thanks. |
Apache-HBase
commented
Jul 6, 2021
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Jul 6, 2021
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Jul 6, 2021
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Jul 6, 2021
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Jul 6, 2021
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Jul 6, 2021
🎊 +1 overall
This message was automatically generated. |
bsglz
commented
Jul 7, 2021
Please fix the checkstyle issue, and there are some duplicated code, can we extract them into a method? Thanks. |
Apache-HBase
commented
Jan 27, 2022
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Jan 27, 2022
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Jan 27, 2022
🎊 +1 overall
This message was automatically generated. |
fix pe tool totalRows exceed maximum of int.
when totalRows exceed maximum of int, we throws RunTimeException. already create https://issues.apache.org/jira/browse/HBASE-26017