Install
Run the following command to install the connector from the root of your project:How to configure sources
The sources files must be inside thequeries/ folder.
To know how the source hierarchy works, please, visit How to configure
sources.
Configuration
To configure the connection with your Trino database follow these steps:1
Create the source `.yaml` file within the `queries` folder if you haven't already
/queries/source.yml2
Add the following code for your Trino connection
3
Replace the details section with your info and save
4
Done, now you can test your connection
Attributes
- Server → The unique identifier for your Trino account. This is a full url. Example:
http://localhost:8080 - Username → The Trino username
- Password → (Optional) The user’s password
- Catalog → (Optional) The catalog
- Schema → (Optional) The db schema
Test connection
To test the connection you can:- Create a query
.sqlin thequeriesdirectory that points to a table of your new connection in theFROMclause. See the section SQL Syntax Basics to learn more. - Use the command line to run
latitude run query_file_namewherequery_file_nameis the name of your.sqlfile. This will display the results in your terminal. See the section Running queries to learn more about how to query your data.