haridsv commented on PR #7274: URL: https://github.com/apache/hbase/pull/7274#issuecomment-3253866049
@NihalJain Could you please review? **Here are the stats before the cerry-pick:** Test run output ``` $ time mvn -pl hbase-shell -Pjacoco verify -PrunAllTests ... [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.apache.hadoop.hbase.client.TestTableShell [INFO] Running org.apache.hadoop.hbase.client.TestQuotasShell [INFO] Running org.apache.hadoop.hbase.client.TestRSGroupShell [INFO] Running org.apache.hadoop.hbase.client.TestAdminShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 29.952 s - in org.apache.hadoop.hbase.client.TestRSGroupShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 38.398 s - in org.apache.hadoop.hbase.client.TestTableShell [INFO] Running org.apache.hadoop.hbase.client.TestShellNoCluster [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.412 s - in org.apache.hadoop.hbase.client.TestShellNoCluster [INFO] Running org.apache.hadoop.hbase.client.TestReplicationShell [INFO] Running org.apache.hadoop.hbase.client.TestChangeSftShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 15.647 s - in org.apache.hadoop.hbase.client.TestChangeSftShell [INFO] Running org.apache.hadoop.hbase.client.TestShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 48.49 s - in org.apache.hadoop.hbase.client.TestShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 155.552 s - in org.apache.hadoop.hbase.client.TestAdminShell [INFO] Running org.apache.hadoop.hbase.client.TestAdminShell2 [INFO] Running org.apache.hadoop.hbase.client.TestListTablesShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 14.88 s - in org.apache.hadoop.hbase.client.TestListTablesShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 187.421 s - in org.apache.hadoop.hbase.client.TestReplicationShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 158.604 s - in org.apache.hadoop.hbase.client.TestAdminShell2 [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 357.209 s - in org.apache.hadoop.hbase.client.TestQuotasShell [INFO] [INFO] Results: [INFO] [INFO] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0 ... real 6m55.766s user 15m55.155s sys 5m7.509s ``` Assertion counts (total 1663): ``` $ grep -E '\d+ tests, \d+ assertions' ~/src/apache/hbase/hbase-shell/target/surefire-reports/*-output.txt /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestAdminShell-output.txt:87 tests, 224 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestAdminShell2-output.txt:36 tests, 70 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestChangeSftShell-output.txt:2 tests, 2 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestListTablesShell-output.txt:2 tests, 2 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestQuotasShell-output.txt:16 tests, 62 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestReplicationShell-output.txt:32 tests, 330 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestRSGroupShell-output.txt:6 tests, 44 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestShell-output.txt:415 tests, 669 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestTableShell-output.txt:86 tests, 260 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications ``` Loaded tests (total 21): ``` $ sed -En -e "s/.*loading test file '(.*)'\./\1/p" ~/src/apache/hbase/hbase-shell/target/surefire-reports/*-output.txt admin_test.rb admin2_test.rb sftchange_shell_test.rb list_tables_test.rb quotas_test.rb replication_admin_test.rb rsgroup_shell_test.rb balancer_utils_test.rb hbase_test.rb security_admin_test.rb taskmonitor_test.rb visibility_labels_admin_test.rb commands_test.rb converter_test.rb formatter_test.rb list_locks_test.rb list_procedures_test.rb noninteractive_test.rb sftchange_shell_test.rb shell_test.rb table_test.rb ``` **Here are the stats after the cerry-pick:** ``` $ time mvn -pl hbase-shell -Pjacoco verify -PrunAllTests ... [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.apache.hadoop.hbase.client.TestTableShell [INFO] Running org.apache.hadoop.hbase.client.TestQuotasShell [INFO] Running org.apache.hadoop.hbase.client.TestAdminShell [INFO] Running org.apache.hadoop.hbase.client.TestRSGroupShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 84.66 s - in org.apache.hadoop.hbase.client.TestRSGroupShell [INFO] Running org.apache.hadoop.hbase.client.TestShellNoCluster [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 91.6 s - in org.apache.hadoop.hbase.client.TestTableShell [INFO] Running org.apache.hadoop.hbase.client.TestReplicationShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 22.315 s - in org.apache.hadoop.hbase.client.TestShellNoCluster [INFO] Running org.apache.hadoop.hbase.client.TestShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 217.139 s - in org.apache.hadoop.hbase.client.TestAdminShell [INFO] Running org.apache.hadoop.hbase.client.TestListTablesShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 42.776 s - in org.apache.hadoop.hbase.client.TestListTablesShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 224.557 s - in org.apache.hadoop.hbase.client.TestReplicationShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 228.493 s - in org.apache.hadoop.hbase.client.TestShell [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 397.424 s - in org.apache.hadoop.hbase.client.TestQuotasShell [INFO] [INFO] Results: [INFO] [INFO] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0 ... real 6m54.746s user 16m39.878s sys 5m5.749s ``` Assertion counts (total: 1711) ``` $ grep -E '\d+ tests, \d+ assertions' ~/src/apache/hbase/hbase-shell/target/surefire-reports/*-output.txt /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestAdminShell-output.txt:87 tests, 224 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestListTablesShell-output.txt:2 tests, 2 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestQuotasShell-output.txt:16 tests, 62 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestReplicationShell-output.txt:32 tests, 330 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestRSGroupShell-output.txt:6 tests, 44 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestShell-output.txt:451 tests, 739 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestShellNoCluster-output.txt:8 tests, 50 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications /Users/hdara/src/apache/hbase/hbase-shell/target/surefire-reports/org.apache.hadoop.hbase.client.TestTableShell-output.txt:86 tests, 260 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications ``` Loaded tests (total: 23): ``` $ sed -En -e "s/.*loading test file '(.*)'\./\1/p" ~/src/apache/hbase/hbase-shell/target/surefire-reports/*-output.txt admin_test.rb list_tables_test.rb quotas_test.rb replication_admin_test.rb rsgroup_shell_test.rb admin2_test_cluster.rb balancer_utils_test_cluster.rb hbase_test_cluster.rb security_admin_test_cluster.rb taskmonitor_test_cluster.rb visibility_labels_admin_test_cluster.rb commands_test_cluster.rb converter_test_cluster.rb formatter_test_cluster.rb general_test_cluster.rb list_locks_test_cluster.rb list_procedures_test_cluster.rb noninteractive_test_cluster.rb sftchange_test_cluster.rb connection_test_no_cluster.rb list_regions_test_no_cluster.rb quotas_test_no_cluster.rb table_test.rb ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
