-
- Downloads
[SPARK-9543][SQL] Add randomized testing for UnsafeKVExternalSorter.
The detailed approach is documented in UnsafeKVExternalSorterSuite.testKVSorter(), working as follows: 1. Create input by generating data randomly based on the given key/value schema (which is also randomly drawn from a list of candidate types) 2. Run UnsafeKVExternalSorter on the generated data 3. Collect the output from the sorter, and make sure the keys are sorted in ascending order 4. Sort the input by both key and value, and sort the sorter output also by both key and value. Compare the sorted input and sorted output together to make sure all the key/values match. 5. Check memory allocation to make sure there is no memory leak. There is also a spill flag. When set to true, the sorter will spill probabilistically roughly every 100 records. Author: Reynold Xin <rxin@databricks.com> Closes #7873 from rxin/kvsorter-randomized-test and squashes the following commits: a08c251 [Reynold Xin] Resource cleanup. 0488b5c [Reynold Xin] [SPARK-9543][SQL] Add randomized testing for UnsafeKVExternalSorter.
Showing
- sql/catalyst/src/test/scala/org/apache/spark/sql/RandomDataGenerator.scala 6 additions, 0 deletions...test/scala/org/apache/spark/sql/RandomDataGenerator.scala
- sql/core/src/test/scala/org/apache/spark/sql/execution/UnsafeFixedWidthAggregationMapSuite.scala 10 additions, 8 deletions...k/sql/execution/UnsafeFixedWidthAggregationMapSuite.scala
- sql/core/src/test/scala/org/apache/spark/sql/execution/UnsafeKVExternalSorterSuite.scala 109 additions, 113 deletions...che/spark/sql/execution/UnsafeKVExternalSorterSuite.scala
- unsafe/src/test/java/org/apache/spark/unsafe/types/CalendarIntervalSuite.java 1 addition, 1 deletion.../org/apache/spark/unsafe/types/CalendarIntervalSuite.java
Please register or sign in to comment