Azure – SchemaColumnConvertNotSupportedException: column: [Col_Name], physicalType: INT64, logicalType: string
I am trying to read data from parquet file in blob storage in databricks and writing to a delta table. Cluster config = 14.3 LTS (includes Apache Spark 3.5.0, Scala 2.12) 1.df = spark.read.format("parquet").load("/mnt/path") -- Reading successfully 2.df.write.format("delta").mode("overwrite").saveAsTable(path) Here giving…