@Brammer88 have you tried using PowerBI? Do you think it can help with your use case?
I am attaching the link which has the steps to connect with PowerBI: https://docs.databricks.com/en/partners/bi/power-bi.html#connect-power-bi-to-databricks
Hi @thiagoawstest
Step 1: Create Secret ScopeYou can create a secret scope using the Databricks REST API as shown below:
python
import requests
import json
# Define the endpoint and headers
url = "https://<databricks-instance>/api/2.0/secrets/scope...
@AchintyaSingh
Databricks does not support clusters with multiple drivers to run new jobs in parallel. Each Databricks cluster has a single driver node, allowing only one job at a time.Workarounds for Achieving Parallel Job Execution:
1. Multiple Cl...