You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Apache Spark (JIRA)" <ji...@apache.org> on 2016/08/05 01:17:20 UTC

[jira] [Assigned] (SPARK-16907) Parquet table reading performance regression when vectorized record reader is not used

     [ https://issues.apache.org/jira/browse/SPARK-16907?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Apache Spark reassigned SPARK-16907:
------------------------------------

    Assignee: Apache Spark

> Parquet table reading performance regression when vectorized record reader is not used
> --------------------------------------------------------------------------------------
>
>                 Key: SPARK-16907
>                 URL: https://issues.apache.org/jira/browse/SPARK-16907
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>            Reporter: Sean Zhong
>            Assignee: Apache Spark
>
> For this parquet reading benchmark, Spark 2.0 is 20%-30% slower than Spark 1.6.
> {code}
> // Test Env: Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz, Intel SSD SC2KW24
> // Generates parquet table with nested columns
> spark.range(100000000).select(struct($"id").as("nc")).write.parquet("/tmp/data4")
> def time[R](block: => R): Long = {
>     val t0 = System.nanoTime()
>     val result = block    // call-by-name
>     val t1 = System.nanoTime()
>     println("Elapsed time: " + (t1 - t0)/1000000 + "ms")
>     (t1 - t0)/1000000
> }
> val x = ((0 until 20).toList.map(x => time(spark.read.parquet("/tmp/data4").filter($"nc.id" < 100).collect()))).sum/20
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org