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