Please enable JavaScript.
Coggle requires JavaScript to display documents.
Presto (Data Sources (Connector (A connector adapts Presto to a data…
Presto
Data Sources
-
-
Schema
-
Together, a catalog and schema define a set of tables that can be queried
-
-
Query Execution Model
-
Query
-
When retrieve information about a query in Presto, you receive a snapshot of every component that is involved in producing a result set in response to a statement
-
Stages
When Presto executes a query, it does so by breaking up the execution into a hierarchy of stages
-
-
-
Task
-
-
-
Split
-
Stages at the lowest level of a distributed query plan retrieve data via splits from connectors, and intermediate stages at a higher level of a distributed query plan retrieve data from other stages
Driver
-
Drivers act upon data and combine operators to produce output that is then aggregated by a task and then delivered to another task in another stage
-
-
-
-
-