Run a single SQL query that joins data from a PostgreSQL database and an S3 data lake without copying any data.
Analyze petabytes of event logs stored in a cloud data warehouse using standard SQL tools your team already knows.
Replace slow data export pipelines by querying production and analytics databases simultaneously in real time.
Build a self-service analytics layer where data analysts query multiple data sources through one standard SQL interface.
Requires Java 25, Docker, and Maven to build from source, running a cluster requires multiple machines or containers.
Trino is a query engine that lets you run SQL queries across large amounts of data stored in many different places at once. Companies typically collect data in data warehouses, cloud storage buckets, relational databases, and other systems. Rather than moving all that data into one place first, Trino can connect to those sources simultaneously and run a single query that pulls results from all of them, returning answers quickly even when the underlying data is enormous. The name comes from its history: the project was originally created at Facebook and later became known as PrestoSQL before the community renamed it Trino. Today it is maintained by an independent open-source community and widely used in data analytics teams at companies that need to query petabytes of data across distributed infrastructure. Trino is written in Java and runs as a cluster of machines working together. One node coordinates the query plan while worker nodes execute pieces of it in parallel. Users connect to the cluster using standard SQL, so anyone who knows how to write a database query can use it. It also ships with a command-line client for running queries interactively. The project supports connections to many data sources through a plugin system. Common sources include data lakes in formats like Delta Lake, traditional relational databases, and object storage services. Each connection type is handled by a connector, and the codebase includes built-in connectors for several popular systems. Building Trino from source requires Java 25 and Docker, and the build is managed through Maven, which is a standard Java build tool. The repository's README is primarily a guide for developers who want to run or modify the engine locally rather than an introduction for end users. End-user documentation lives at a separate site.
← trinodb on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.