An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
Hi @Victor Buzy
I checked a similar case internally where the same error (“Session isn’t active”) was seen after moving from Spark 3.4 to 3.5 when using cosmos.olap.
In that case, the issue was related to Java module access changes in Spark 3.5, and it was resolved by adding the below configuration at the notebook level:
%%configure -f
{
"conf": {
"spark.driver.extraJavaOptions": "--add-opens java.base/sun.security.util=ALL-UNNAMED",
"spark.executor.extraJavaOptions": "--add-opens java.base/sun.security.util=ALL-UNNAMED"
}
}
Could you please try this once and see if it makes any difference?
Let me know how it goes after trying this.