docs(ingest/athena): update recipe with aws key pair example (#12076)

This commit is contained in:
Mayuri Nehate 2024-12-11 18:21:58 +05:30 committed by GitHub
parent ff7ac48021
commit becf51575e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -181,7 +181,7 @@
"displayName": "Athena",
"description": "Import Schemas, Tables, Views, and lineage to S3 from Athena.",
"docsUrl": "https://datahubproject.io/docs/generated/ingestion/sources/athena/",
"recipe": "source:\n type: athena\n config:\n # Coordinates\n aws_region: my_aws_region\n work_group: primary\n\n # Options\n s3_staging_dir: \"s3://my_staging_athena_results_bucket/results/\""
"recipe": "source:\n type: athena\n config:\n # AWS Keys (Optional - Required only if local aws credentials are not set)\n username: aws_access_key_id\n password: aws_secret_access_key\n # Coordinates\n aws_region: my_aws_region\n work_group: primary\n\n # Options\n s3_staging_dir: \"s3://my_staging_athena_results_bucket/results/\""
},
{
"urn": "urn:li:dataPlatform:clickhouse",

View File

@ -1,6 +1,11 @@
source:
type: athena
config:
# AWS Keys (Optional - Required only if local aws credentials are not set)
username: my_aws_access_key_id
password: my_aws_secret_access_key
# Coordinates
aws_region: my_aws_region
work_group: primary