Hello, I'm trying to save DataFrame in parquet with SaveMode.Overwrite with no success.
I minimized the code and reproduced the issue with the following two cells:
> case class MyClass(val fld1: Integer, val fld2: Integer)
>
> val lst1 = sc.paralle...