Github user yucai commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22495#discussion_r219731873
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/execution/benchmark/SortBenchmark.scala
 ---
    @@ -28,12 +28,15 @@ import org.apache.spark.util.random.XORShiftRandom
     
     /**
      * Benchmark to measure performance for aggregate primitives.
    - * To run this:
    - *  build/sbt "sql/test-only *benchmark.SortBenchmark"
    - *
    - * Benchmarks in this file are skipped in normal builds.
    + * {{{
    + *   To run this benchmark:
    + *   1. without sbt: bin/spark-submit --class <this class> <spark sql test 
jar>
    + *   2. build/sbt "sql/test:runMain <this class>"
    + *   3. generate result: SPARK_GENERATE_BENCHMARK_FILES=1 build/sbt 
"sql/test:runMain <this class>"
    + *      Results will be written to "benchmarks/<this class>-results.txt".
    + * }}}
      */
    -class SortBenchmark extends BenchmarkWithCodegen {
    +object SortBenchmark extends BenchmarkBase {
    --- End diff --
    
    @dongjoon-hyun `SortBenchmark` does not use any function provided in 
`BenchmarkWithCodegen`, so I remove it.
    Another option is like #22484 did, make `BenchmarkWithCodegen` extend 
`BenchmarkBase`, and then `SortBenchmark` can extend `BenchmarkWithCodegen`.
    Do you prefer the 2nd way?
    
    BTW, congratulations! :)


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to