jerqi commented on code in PR #254:
URL: https://github.com/apache/incubator-uniffle/pull/254#discussion_r995302963


##########
integration-test/spark3/src/test/java/org/apache/uniffle/test/GetShuffleReportForMultiPartTest.java:
##########
@@ -145,12 +145,12 @@ public void resultCompareTest() throws Exception {
   Map runTest(SparkSession spark, String fileName) throws Exception {
     Thread.sleep(4000);
     Map<Integer, String> map = Maps.newHashMap();
-    Dataset<Row> df2 = spark.range(0, 1000, 1, 10)
+    Dataset<Row> df2 = spark.range(0, 10000, 1, 10)
         .select(functions.when(functions.col("id").$less(250), 249)
             .otherwise(functions.col("id")).as("key2"), 
functions.col("id").as("value2"));
-    Dataset<Row> df1 = spark.range(0, 1000, 1, 10)
+    Dataset<Row> df1 = spark.range(0, 10000, 1, 10)
         .select(functions.when(functions.col("id").$less(250), 249)
-            .when(functions.col("id").$greater(750), 1000)
+            .when(functions.col("id").$greater(750), 10000)

Review Comment:
   If we use lz4 as default compress codec, it seems that we don't need modify 
this.



-- 
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]

Reply via email to