Glossary#

The glossary contains a list of key Trino terms and definitions.

Catalog

Catalogs define and name a configuration for connecting to a data source, allowing users to query the connected data. Each catalog’s configuration specifies a connector to define which data source the catalog connects to. For more information about catalogs, see Catalog.

Certificate

A public key certificate issued by a CA, sometimes abbreviated as cert, that verifies the ownership of a server’s private keys. Certificate format is specified in the X.509 standard.

Certificate Authority (CA)

A trusted organization that signs and issues certificates. Its signatures can be used to verify the validity of certificates.

Cluster

A Trino cluster provides the resources to run queries against numerous data sources. Clusters define the number of nodes, the configuration for the JVM runtime, configured data sources, and others aspects. For more information, see Cluster.

Connector

Translates data from a data source into Trino schemas, tables, columns, rows, and data types. A connector is specific to a data source, and is used in catalog configurations to define what data source the catalog connects to. A connector is one of many types of plugins

Container

A lightweight virtual package of software that contains libraries, binaries, code, configuration files, and other dependencies needed to deploy an application. A running container does not include an operating system, instead using the operating system of the host machine. To learn more, read read about containers in the Kubernetes documentation.

Data source

A system from which data is retrieved - for example, PostgreSQL or Iceberg on S3 data. In Trino, users query data sources with catalogs that connect to each source. See Data sources for more information.

Data virtualization

Data virtualization is a method of abstracting an interaction with multiple heterogeneous data sources, without needing to know the distributed nature of the data, its format, or any other technical details involved in presenting the data.

gzip

gzip is a compression format and software that compresses and decompresses files. This format is used several ways in Trino, including deployment and compressing files in object storage. The most common extension for gzip-compressed files is .gz.

HDFS

Hadoop Distributed Filesystem (HDFS) is a scalable open source filesystem that was one of the earliest distributed big data systems created to store large amounts of data for the Hadoop ecosystem.

Java KeyStore (JKS)

The system of public key cryptography supported as one part of the Java security APIs. The legacy JKS system recognizes keys and certificates stored in keystore files, typically with the .jks extension, and by default relies on a system-level list of CAs in truststore files installed as part of the current Java installation.

Key

A cryptographic key specified as a pair of public and private strings generally used in the context of TLS to secure public network traffic.

Load Balancer (LB)

Software or a hardware device that sits on a network edge and accepts network connections on behalf of servers behind that wall, distributing traffic across network and server infrastructure to balance the load on networked services.

Object storage

Object storage is a file storage mechanism. Examples of compatible object stores include the following:

Open-source

Typically refers to open-source software. which is software that has the source code made available for others to see, use, and contribute to. Allowed usage varies depending on the license that the software is licensed under. Trino is licensed under the Apache license, and is therefore maintained by a community of contributors from all across the globe.

PEM file format

A format for storing and sending cryptographic keys and certificates. PEM format can contain both a key and its certificate, plus the chain of certificates from authorities back to the root CA, or back to a CA vendor’s intermediate CA.

PKCS #12

A binary archive used to store keys and certificates or certificate chains that validate a key. PKCS #12 files have .p12 or .pfx extensions. This format is a less popular alternative to PEM.

Plugin

A bundle of code implementing the Trino Service Provider Interface (SPI) that is used to add new connectors, data types, Functions and operators, access control implementations, and other features of Trino.

Presto and PrestoSQL

The old name for Trino. To learn more about the name change to Trino, read the history.

Query federation

A type of data virtualization that provides a common access point and data model across two or more heterogeneous data sources. A popular data model used by many query federation engines is translating different data sources to SQL tables.

Secure Sockets Layer (SSL)

Now superseded by TLS, but still recognized as the term for what TLS does.

Structured Query Language (SQL)

The standard language used with relational databases. For more information, see SQL.

Tarball

A common abbreviation for TAR file, which is a common software distribution mechanism. This file format is a collection of multiple files distributed as a single file, commonly compressed using gzip compression.

Transport Layer Security (TLS)

TLS is a security protocol designed to provide secure communications over a network. It is the successor to SSL, and used in many applications like HTTPS, email, and Trino. These security topics use the term TLS to refer to both TLS and SSL.