rmahindra123 commented on code in PR #10674:
URL: https://github.com/apache/hudi/pull/10674#discussion_r1491428474
##########
hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/table/action/compact/TestHoodieCompactor.java:
##########
@@ -195,19 +195,18 @@ public void testWriteStatusContentsAfterCompaction()
throws Exception {
String newCommitTime = "100";
writeClient.startCommitWithTime(newCommitTime);
- List<HoodieRecord> records = dataGen.generateInserts(newCommitTime, 100);
+ List<HoodieRecord> records = dataGen.generateInserts(newCommitTime,
1000);
JavaRDD<HoodieRecord> recordsRDD = jsc.parallelize(records, 1);
writeClient.insert(recordsRDD, newCommitTime).collect();
// Update all the 100 records
Review Comment:
The idea is to ensure that the scan times are in milliseconds as opposed to
microsecs, so increasing the load.
--
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]