You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Reynold Xin (JIRA)" <ji...@apache.org> on 2016/11/18 02:45:58 UTC

[jira] [Resolved] (SPARK-18462) SparkListenerDriverAccumUpdates event does not deserialize properly in history server

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

Reynold Xin resolved SPARK-18462.
---------------------------------
       Resolution: Fixed
    Fix Version/s: 2.1.0
                   2.0.3

> SparkListenerDriverAccumUpdates event does not deserialize properly in history server
> -------------------------------------------------------------------------------------
>
>                 Key: SPARK-18462
>                 URL: https://issues.apache.org/jira/browse/SPARK-18462
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 2.0.0
>            Reporter: Josh Rosen
>            Assignee: Josh Rosen
>             Fix For: 2.0.3, 2.1.0
>
>
> The following test fails with a ClassCastException due to oddities in how Jackson object mapping works, breaking the SQL tab in the history server:
> {code}
> +++ b/sql/core/src/test/scala/org/apache/spark/sql/execution/ui/SQLListenerSuite.scala
> @@ -19,6 +19,7 @@ package org.apache.spark.sql.execution.ui
>  import java.util.Properties
> +import org.json4s.jackson.JsonMethods._
>  import org.mockito.Mockito.mock
>  import org.apache.spark._
> @@ -35,7 +36,7 @@ import org.apache.spark.sql.execution.{LeafExecNode, QueryExecution, SparkPlanIn
>  import org.apache.spark.sql.execution.metric.{SQLMetric, SQLMetrics}
>  import org.apache.spark.sql.test.SharedSQLContext
>  import org.apache.spark.ui.SparkUI
> -import org.apache.spark.util.{AccumulatorMetadata, LongAccumulator}
> +import org.apache.spark.util.{AccumulatorMetadata, JsonProtocol, LongAccumulator}
>  class SQLListenerSuite extends SparkFunSuite with SharedSQLContext {
> @@ -416,6 +417,20 @@ class SQLListenerSuite extends SparkFunSuite with SharedSQLContext {
>      assert(driverUpdates(physicalPlan.longMetric("dummy").id) == expectedAccumValue)
>    }
> +  test("roundtripping SparkListenerDriverAccumUpdates through JsonProtocol") {
> +    val event = SparkListenerDriverAccumUpdates(1L, Seq((2L, 3L)))
> +    val actualJsonString = compact(render(JsonProtocol.sparkEventToJson(event)))
> +    val newEvent = JsonProtocol.sparkEventFromJson(parse(actualJsonString))
> +    newEvent match {
> +      case SparkListenerDriverAccumUpdates(executionId, accums) =>
> +        assert(executionId == 1L)
> +        accums.foreach { case (a, b) =>
> +          assert(a == 2L)
> +          assert(b == 3L)
> +        }
> +    }
> +  }
> +
> {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