Github user dongjoon-hyun commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22605#discussion_r222883369
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/execution/benchmark/BloomFilterBenchmark.scala
 ---
    @@ -0,0 +1,87 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *    http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.spark.sql.execution.benchmark
    +
    +import scala.util.Random
    +
    +import org.apache.spark.benchmark.Benchmark
    +
    +/**
    + * Benchmark to measure read performance with Bloom filters.
    + *
    + * Currently, only ORC supports bloom filters, we will add Parquet BM as 
soon as it becomes
    + * available.
    + *
    + * 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/BloomFilterBenchmark-results.txt".
    + * }}}
    + */
    +object BloomFilterBenchmark extends SqlBasedBenchmark {
    +  import spark.implicits._
    +
    +  private val scaleFactor = 100
    +  private val N = scaleFactor * 1000 * 1000
    +  private val df = spark.range(N).map(_ => Random.nextInt)
    +
    +  private def writeBenchmark(): Unit = {
    +    withTempPath { dir =>
    +      val path = dir.getCanonicalPath
    +
    +      runBenchmark(s"ORC Write") {
    +        val benchmark = new Benchmark(s"Write ${scaleFactor}M rows", N, 
output = output)
    +        benchmark.addCase("Without bloom filter") { _ =>
    +          df.write.mode("overwrite").orc(path + "/withoutBF")
    +        }
    +        benchmark.addCase("With bloom filter") { _ =>
    +          df.write.mode("overwrite")
    +            .option("orc.bloom.filter.columns", "value").orc(path + 
"/withBF")
    +        }
    +        benchmark.run()
    +      }
    +    }
    +  }
    +
    +  private def readBenchmark(): Unit = {
    +    withTempPath { dir =>
    +      val path = dir.getCanonicalPath
    +
    +      df.write.orc(path + "/withoutBF")
    +      df.write.option("orc.bloom.filter.columns", "value").orc(path + 
"/withBF")
    --- End diff --
    
    Sorry, but Apache ORC is an independent Apache project which has its own 
website and documents. We should respect that. If we introduce new ORC 
configuration one by one in Apache Spark website, it will eventually duplicate 
Apache ORC document in Apache Spark document.
    
    We had better guide ORC fans to Apache ORC website. If something is missing 
there, they can file an ORC JIRA, not SPARK JIRA.



---

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

Reply via email to