1.3.1 • Published 11 months ago
evidence-connector-aws-athena v1.3.1
Evidence Athena DataSource
Evidence data source to vizualize and explore your AWS Athena data.
How to use
Install this package into your Evidence project
npm i evidence-connector-aws-athenaUpdate your evidence.plugins.yaml
datasources:
# ...
evidence-connector-aws-athena: {}Run your Evidence project, and navigate to the settings page, and add a new athena data source.
or add it manually by creating a new dir with the source name and adding the connection.yaml
name: {name}
type: athena
options:
database: {database}
outputBucket: {outputBucket}
testTableName: {testTableName}Open the schema explorer to see the new tables imported.
For more information see the Evidence.dev datasource docs
Configuration
| Field | Description | Type |
|---|---|---|
| database | AWS glue database to query | string |
| catalog | AWS Athena catalog to use for the query, defaults to AWSDataCatalog | string |
| workgroup | AWS Athena workgroup to use for the query, defaults to primary | string |
| outputBucket | AWS S3 Output bucket name for athena query | string |
| testTableName | Name of a athena table name to do a test query (select first row) to validate the connection | string |