the-other-tim-brown commented on code in PR #10806:
URL: https://github.com/apache/hudi/pull/10806#discussion_r1581446532
##########
hudi-utilities/src/test/java/org/apache/hudi/utilities/testutils/UtilitiesTestBase.java:
##########
@@ -266,6 +268,17 @@ public void teardown() throws Exception {
TestDataSource.resetDataGen();
}
+ private static Map<String, String> sparkConf() {
+ Map<String, String> conf = new HashMap<>();
+ conf.put("spark.default.parallelism", "2");
+ conf.put("spark.sql.shuffle.partitions", "2");
+ conf.put("spark.executor.memory", "1G");
+ conf.put("spark.driver.memory", "1G");
+ conf.put("spark.hadoop.mapred.output.compress", "true");
+ conf.put("spark.ui.enable", "false");
Review Comment:
Yes, I can try this along with some other test performance improvements
--
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]