dabruehl

Results 11 comments of dabruehl

Hi @edgararuiz I got same issue on Databricks 14.3 LTS. I do not understand your provided solution? Why should I use `databricks_connect`, if I am already on the cluster and...

@nightscape I understand, that it is annoying to fix the changing API compatibility. Nowdays, many Spark usage is done over the Databricks platform. However, if the Spark-Excel data source V2...

@nightscape Let's try. Could you point me to the fix you did for last time braking V2 on Databricks?

@nightscape THX for pointing in the right direction. I have following Issue https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/td-p/137578 In the meantime I forked this project, changed only the `override def shortName(): String = "excelv2"`, created...

I did not have time to check, therefore I close for the moment. Thx

I run into same issue today with Databricks CLI v0.248.0. Is there any fix or workaround for this? I know there is a way with `--configure-cluster`. However, this prompts instead...

@andrewnester any update on this issue or workarounds?

@andrewnester thx for your input. cluster ID does not work. It needs to be the cluster name in lower case (because of the search) `databricks auth login --host [email protected] --configure-cluster

I see the same issue. ``` df = ( spark.read.format("excel") .option("inferSchema", "True") .option("header", "True") .option("dataAddress", "'data'!A2") .load("test.xlsx") ) df.show() ``` V2 implementation throws an error: [[EXCEL_DATA_SOURCE_NOT_ENABLED](https://learn.microsoft.com/azure/databricks/error-messages/error-classes#excel_data_source_not_enabled)] Excel data source is...