0

I'm trying to read from Azure kusto source using below code in Azure synapse notebook.

df = spark.read \
.format("com.microsoft.kusto.spark.synapse.datasource") \
.option("kustoCluster", cluster) \
.option("kustoDatabase", database) \
.option("kustoQuery", query) \
.option("kustoAadManagedIdentityClientId", client_id) \
.option("kustoAadAuthorityID", tenant_id) \
.option("authType", "ManagedIdentity") \
.option("readMode", "ForceDistributedMode") \
.load()

Cluster endpoint is custom one like test.contoso.core.windows.net. The synapse throws hostname not trusted error. It also provides this link to allow host names other than default kusto.windows.net. But I don't find a way in synapse to add this

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.