Shraman Basyal

Results 2 comments of Shraman Basyal

> Thanks @BShraman - will try to repro this locally. Quick question - for `.config("spark.jars","gs://xxxxx/g1/jars/delta-core_2.12-2.0.0.jar")` by any chance have you tested this locally and still get the same error? Per...

@MrPowers Here are my pip list **Spark Configuration :** ##################### import pyspark from delta import * builder = ( pyspark.sql.SparkSession.builder.appName("MyApp") .config('spark.master','local[*]') .config("spark.sql.extensions", "io.delta.sql.DeltaSparkSessionExtension") .config("spark.sql.catalog.spark_catalog","org.apache.spark.sql.delta.catalog.DeltaCatalog") .config("spark.jars","gs://xxxxx/g1/jars/delta-core_2.12-2.0.0.jar") ) spark = configure_spark_with_delta_pip(builder).getOrCreate() ############...