Skip to content

Trino

Trino Driver

Use the Trino driver when your SQL endpoint is backed by Trino and you want catalog and schema browsing directly inside VS Code.

Default connection fields

FieldDefaultDescription
HostRequiredTrino coordinator or gateway hostname
Port8080Use 8443 or your HTTPS port when required by your deployment
CatalogOptional but recommendedDefault catalog for the session
SchemaOptionalDefault schema inside that catalog
UserOptionalUser name sent to Trino
SSL / HTTPSfalseTurn on for HTTPS endpoints
Verify HTTPS / SSL certificatetrueTurn off only for trusted dev endpoints
TimeoutInherits global defaultPer-connection timeout override in seconds

Trino-specific advanced fields

FieldDescription
HeadersOne key=value pair per line for auth proxies or custom routing headers
Session propertiesOne key=value pair per line for Trino session settings

DBeagle stores Trino headers in VS Code SecretStorage rather than keeping them in plain-text settings.

Common setup patterns

Standard username and password

Enter the host, port, catalog, schema, user, and password in the form and test the connection.

HTTPS endpoint

Turn on Use HTTPS / SSL. Keep certificate verification on unless you are connecting to a known local or development endpoint with a self-signed cert.

Proxy or bearer-token auth

Put proxy headers in the Headers box, for example:

Authorization=Bearer <token>
X-Trino-User=analytics

Session tuning

Put Trino session properties in the Session properties box:

query_max_execution_time=10m
exchange_compression=true

How Trino appears in DBeagle

Trino maps directly to DBeagle’s shared metadata model:

  • catalog
  • schema
  • table or view
  • column

That makes Trino one of the cleanest browsing experiences in the Connections tree.

Trino connection form