Hi,
I am trying to run my code from a scala fatjar on azure-databricks, which connects to snowflake for the data.
I usually run my jar on 9.1 LTS.
However when I run on 10.4 LTS the performace was 4x degraded and in the log it says
WARN SnowflakeConnectorUtils$: query pushdown is not supported because you are using Spark 3.2.1 with a connector designed to support Spark 3.1. Either use the version of spark supported by the connector or install a version of the connector that supports your version of spark.
I checked the driver logs and it seems 10.4 LTS has a pre-installed version of snowflake spark connector net.snowflake:spark-snowflake_2.12:2.9.0-spark_3.1 (also mentioned here)
Although I have put the latest snowflake spark connector(net.snowflake:spark-snowflake_2.13:2.10.0-spark_3.2) in my fatjar databricks picks the pre-installed one only.
Anyone has faced this issue ? knows a solution for this.
Thanks