Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SODA-1877] update connect-trino #954

Merged
merged 3 commits into from
Feb 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions soda/connect-trino.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ data_source my_datasource_name:
| type | required | Identify the type of data source for Soda. |
| host | required | Provide a host identifier. |
| port | optional | Provide a port identifier. |
| username | required | Consider using system variables to retrieve this value securely using, for example, `${TRINO_USER}`. |
| password | required | Consider using system variables to retrieve this value securely using, for example, `${TRINO_PASSWORD}`. |
| auth_type| optional | `BasicAuthentication` in combination of user + password or `JWTAuthentication` in combination with username and `access_token`. Default: `BasicAuthentication`. |
| access_token | optional | Map to the JWT access token. Only applicable if auth_type = `JWTAuthentication`. |
| username | required | Optional if auth_type = `JWTAuthentication`. Consider using system variables to retrieve this value securely using, for example, `${TRINO_USER}`. |
| password | optional | Consider using system variables to retrieve this value securely using, for example, `${TRINO_PASSWORD}`. Only applicable for default auth_type. |
| catalog | required | Provide an identifier for the catalog which contains schemas and which references a data source using a connector. See <a href="https://trino.io/docs/current/overview/concepts.html#catalog" target="_blank">Catalog</a> in the Trino documentation. |
| schema | required | Provide an identifier for the schema in which your dataset exists. |
| source | optional | |
Expand Down