I have a spark dataframe that I want to save as parquet then load it using the parquet-avro library.
There is a timestamp column in my dataframe that is converted to a INT96 timestamp column in parquet. However parquet-avro does not support INT96 format and throws.
Is there a way to avoid it ? Is it possible to change the format used by Spark when writing timestamps to parquet in something supported by avro ?
I currently use
date_frame.write.parquet("path")