I am writing a table in Hadoop to Snowflake using the Spark Connector, but my file in Hadoop is in Apache Parquet.
While writing in Snowflake it is writing in csv format, and it applies the default delimiter "," but I need to apply "^" as the delimiter. How can I do that?
df.write.format(SNOWFLAKE_SOURCE_NAME).options(sfOptions).option("dbtable", "t24122018").mode(SaveMode.Overwrite).save