You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@spark.apache.org by bonnahu <bo...@gmail.com> on 2014/12/12 02:55:24 UTC

Re: KryoSerializer exception in Spark Streaming JAVA

class MyRegistrator implements KryoRegistrator { 

        public void registerClasses(Kryo kryo) { 
                kryo.register(ImpressionFactsValue.class); 
        } 
  
} 

change this class to public and give a try 



--
View this message in context: http://apache-spark-user-list.1001560.n3.nabble.com/KryoSerializer-exception-in-Spark-Streaming-JAVA-tp15479p20647.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

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


Re: KryoSerializer exception in Spark Streaming JAVA

Posted by Tathagata Das <ta...@gmail.com>.
Also please make sure you are specifying the fully qualified name of
registrator class in the sparkconf configuration correctly.
On Dec 11, 2014 5:57 PM, "bonnahu" <bo...@gmail.com> wrote:

> class MyRegistrator implements KryoRegistrator {
>
>         public void registerClasses(Kryo kryo) {
>                 kryo.register(ImpressionFactsValue.class);
>         }
>
> }
>
> change this class to public and give a try
>
>
>
> --
> View this message in context:
> http://apache-spark-user-list.1001560.n3.nabble.com/KryoSerializer-exception-in-Spark-Streaming-JAVA-tp15479p20647.html
> Sent from the Apache Spark User List mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@spark.apache.org
> For additional commands, e-mail: user-help@spark.apache.org
>
>