You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
current abstract class SparkParityBase has a variable val spark = SparkEnv.spark
Even user override it in child class, it will still create a spark session.
change it to def spark = SparkEnv.spark will allow user to actually override it
The text was updated successfully, but these errors were encountered:
current abstract class SparkParityBase has a variable
val spark = SparkEnv.spark
Even user override it in child class, it will still create a spark session.
change it to
def spark = SparkEnv.spark
will allow user to actually override itThe text was updated successfully, but these errors were encountered: