dongjoon-hyun opened a new pull request, #56841: URL: https://github.com/apache/spark/pull/56841
### What changes were proposed in this pull request? This PR annotates two Hive client test suites with `SlowHiveTest`: - `HivePartitionFilteringSuite` - `HiveClientUserNameSuite` Both are parameterized suites that run once per supported Hive metastore version (2.0, 2.1, 2.2, 2.3, 3.0, 3.1, 4.0, 4.1), executed via their nested-suite aggregators (`HivePartitionFilteringSuites` / `HiveClientUserNameSuites`). ### Why are the changes needed? These two suites are the two slowest in the `hive - other tests` job. In a recent run of that job (total 53m17s), they accounted for the top two suite runtimes: | Suite | Time | Tests | |-------|------|-------| | `HivePartitionFilteringSuites` | 182.9s | 360 | | `HiveClientUserNameSuites` | 145.2s | 24 | Tagging them with `@SlowHiveTest` excludes them from the `hive - other tests` job (which sets `EXCLUDED_TAGS=org.apache.spark.tags.SlowHiveTest`) and routes them to the dedicated slow-Hive job, balancing the test job runtimes. This is consistent with how other heavy Hive suites (e.g. `HiveUDFSuite`, `HiveSerDeReadWriteSuite`, `DynamicPartitionPruningHiveScanSuite`) are already tagged. ### Does this PR introduce _any_ user-facing change? No. This is a test-only change. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? Generated-by: Claude Opus 4.8 -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
