Andrea Campolonghi
08/04/2023, 8:19 PMdf = spark.\
readStream.\
format('parquet').\
schema(schema). \
load("s3a://****/public/sales/")
I tried to use spark.sql.streaming.schemaInference but it does not change the result. Once the stream is started the schema dees not change even if newest parquet file have one extra column. Any suggestion?Dominique Brezinski
08/04/2023, 9:11 PM