Github user xubo245 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2260#discussion_r185686357
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/CarbonSession.scala ---
@@ -177,7 +177,7 @@ class CarbonSession(@transient val sc: SparkContext,
}
}
- private var carbonStore: SparkCarbonStore = _
+ @transient private var carbonStore: SparkCarbonStore = _
--- End diff --
Can you try to add "extends Serializable" for SparkCarbonStore or parent
class instead of "using transient"?
---