2025-04-16 16:55:51 -07:00
|
|
|
### Starter Receipe for Dremio Cloud Instance
|
2024-11-05 22:06:35 +05:30
|
|
|
|
|
|
|
```
|
|
|
|
source:
|
|
|
|
type: dremio
|
|
|
|
config:
|
|
|
|
# Authentication details
|
|
|
|
authentication_method: PAT # Use Personal Access Token for authentication
|
|
|
|
password: <your_api_token> # Replace <your_api_token> with your Dremio Cloud API token
|
|
|
|
is_dremio_cloud: True # Set to True for Dremio Cloud instances
|
|
|
|
dremio_cloud_project_id: <project_id> # Provide the Project ID for Dremio Cloud
|
|
|
|
|
|
|
|
# Enable query lineage tracking
|
2025-04-16 16:55:51 -07:00
|
|
|
include_query_lineage: True
|
2024-11-05 22:06:35 +05:30
|
|
|
|
|
|
|
#Optional
|
|
|
|
source_mappings:
|
2025-04-16 16:55:51 -07:00
|
|
|
- platform: s3
|
|
|
|
source_name: samples
|
|
|
|
|
2024-11-05 22:06:35 +05:30
|
|
|
# Optional
|
|
|
|
schema_pattern:
|
|
|
|
allow:
|
2025-04-16 16:55:51 -07:00
|
|
|
- "<source_name>.<table_name>"
|
2024-11-05 22:06:35 +05:30
|
|
|
|
|
|
|
sink:
|
|
|
|
# Define your sink configuration here
|
|
|
|
|
2025-04-16 16:55:51 -07:00
|
|
|
```
|