Gabriella Lotz has uploaded this change for review. ( http://gerrit.cloudera.org:8080/23609
Change subject: [java] Split TestKuduClient into smaller modules to avoid TSAN timeouts ...................................................................... [java] Split TestKuduClient into smaller modules to avoid TSAN timeouts The monolithic TestKuduClient class (~2600 lines with 45 tests) was causing regular timeouts on TSAN builds. This commit splits it into 6 focused test modules that can run independently, significantly reducing timeout risk on slow builds. Test modules: - TestKuduClientBasic (6 tests): Basic table operations, timestamps, and soft delete functionality - TestKuduClientDataTypes (8 tests): Data type tests including strings, VARCHAR, binary, timestamps, dates, and decimals - TestKuduClientScanner (7 tests): Scanner lifecycle, expiration, keep-alive, limits, predicates, and non-covered ranges - TestKuduClientAdvanced (4 tests): Auto-incrementing columns, array types, and custom hash schemas per range partition - TestKuduClientConcurrency (10 tests): Concurrent operations, read-your-writes consistency, concurrent flush, and session lifecycle - TestKuduClientSecurity (10 tests): Authentication, certificates, location assignment, and cluster ID The original TestKuduClient is now a JUnit @Suite that runs all six test modules, maintaining backward compatibility with existing test infrastructure. Change-Id: I3fcedb050ce4deea1c317b3cf3687502cbe81ce7 --- M java/kudu-client/src/test/java/org/apache/kudu/client/TestKuduClient.java A java/kudu-client/src/test/java/org/apache/kudu/client/TestKuduClientAdvanced.java A java/kudu-client/src/test/java/org/apache/kudu/client/TestKuduClientBasic.java A java/kudu-client/src/test/java/org/apache/kudu/client/TestKuduClientConcurrency.java A java/kudu-client/src/test/java/org/apache/kudu/client/TestKuduClientDataTypes.java A java/kudu-client/src/test/java/org/apache/kudu/client/TestKuduClientScanner.java A java/kudu-client/src/test/java/org/apache/kudu/client/TestKuduClientSecurity.java 7 files changed, 2,445 insertions(+), 2,143 deletions(-) git pull ssh://gerrit.cloudera.org:29418/kudu refs/changes/09/23609/1 -- To view, visit http://gerrit.cloudera.org:8080/23609 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-Project: kudu Gerrit-Branch: master Gerrit-MessageType: newchange Gerrit-Change-Id: I3fcedb050ce4deea1c317b3cf3687502cbe81ce7 Gerrit-Change-Number: 23609 Gerrit-PatchSet: 1 Gerrit-Owner: Gabriella Lotz <[email protected]>
