欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

org.apache.spark.SparkException: Task not serializable] with root cause

程序员文章站 2022-03-08 15:57:23
...
18/11/08 11:27:26 ERROR [dispatcherServlet]: Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.spark.SparkException: Task not serializable] with root cause

此异常出现的原因是类中存在未序列化的成员变量


解决方法:类实现serializable接口,将类中不需要序列化的成员变量使用transient关键字修饰。

博客地址:http://118.190.152.13/article/8

相关标签: exception