- 6445 Views
- 3 replies
- 0 kudos
Hi, I have datbricks on AWS, I created some secrets in AWS Secrets Manger, I would need to create the scopes based on AWS secrets manager.When I use Azure's Key Vault, when creating the scope, it uses the option -scope-backend-type AZURE_KEYVAULT, bu...
- 6445 Views
- 3 replies
- 0 kudos
Latest Reply
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...
2 More Replies
- 1580 Views
- 1 replies
- 0 kudos
Hi There,I have a table of 160 GB with partition applied on country and yearmonth columns, I maintain a previous history of 6 years and replace the partitions (latest 2 months) to add the new data.I use overwrite mode to replace the effected partitio...
- 1580 Views
- 1 replies
- 0 kudos
Latest Reply
Renu_
Valued Contributor II
Hi @SusmithaBadam, based on your use case, partitioned tables are performing better because they work kind of like labeled folders. When you group by, it can quickly go to the exact folder instead of scanning everything, so it’s much faster.Liquid cl...