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

[jira] [Resolved] (SPARK-7436) Cannot implement nor use custom StandaloneRecoveryModeFactory implementations

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

Josh Rosen resolved SPARK-7436.
-------------------------------
       Resolution: Fixed
    Fix Version/s: 1.4.0
                   1.3.2

Issue resolved by pull request 5975
[https://github.com/apache/spark/pull/5975]

> Cannot implement nor use custom StandaloneRecoveryModeFactory implementations
> -----------------------------------------------------------------------------
>
>                 Key: SPARK-7436
>                 URL: https://issues.apache.org/jira/browse/SPARK-7436
>             Project: Spark
>          Issue Type: Bug
>          Components: Deploy
>    Affects Versions: 1.3.1
>            Reporter: Jacek Lewandowski
>             Fix For: 1.3.2, 1.4.0
>
>
> At least, this code fragment is buggy ({{Master.scala}}):
> {code}
>       case "CUSTOM" =>
>         val clazz = Class.forName(conf.get("spark.deploy.recoveryMode.factory"))
>         val factory = clazz.getConstructor(conf.getClass, Serialization.getClass)
>           .newInstance(conf, SerializationExtension(context.system))
>           .asInstanceOf[StandaloneRecoveryModeFactory]
>         (factory.createPersistenceEngine(), factory.createLeaderElectionAgent(this))
> {code}
> Because here: {{val factory = clazz.getConstructor(conf.getClass, Serialization.getClass)}} it tries to find the constructor which accepts {{org.apache.spark.SparkConf}} and class of companion object of {{akka.serialization.Serialization}} and then it tries to instantiate {{newInstance(conf, SerializationExtension(context.system))}} with instance of {{SparkConf}} and instance of {{Serialization}} class - not the companion objects. 



--
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