How to access data from Big Query to dataframe in databricks using credentials in secrets.
df = spark
.read
.format("bigquery")
.option("credentialsFile",credentialfilepath)
.option("parentProject",projectName)
.option("table",table).load()
Used above but since i am passing the account details of GCP from secrets not sure on how to get it done.