Skip to content

Commit

Permalink
Add 430 docs
Browse files Browse the repository at this point in the history
  • Loading branch information
martint committed Oct 21, 2023
1 parent bde185e commit 8ec8cb6
Show file tree
Hide file tree
Showing 1,192 changed files with 1,111,169 additions and 2 deletions.
Binary file added 430/_images/functions_color_bar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions 430/_sources/admin.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Administration

```{toctree}
:maxdepth: 1

admin/web-interface
admin/tuning
admin/jmx
admin/properties
admin/spill
admin/resource-groups
admin/session-property-managers
admin/dist-sort
admin/dynamic-filtering
admin/graceful-shutdown
admin/fault-tolerant-execution
```

## Event listeners

```{toctree}
:titlesonly: true

admin/event-listeners-http
admin/event-listeners-mysql
```
15 changes: 15 additions & 0 deletions 430/_sources/admin/dist-sort.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Distributed sort

Distributed sort allows to sort data, which exceeds `query.max-memory-per-node`.
Distributed sort is enabled via the `distributed_sort` session property, or
`distributed-sort` configuration property set in
`etc/config.properties` of the coordinator. Distributed sort is enabled by
default.

When distributed sort is enabled, the sort operator executes in parallel on multiple
nodes in the cluster. Partially sorted data from each Trino worker node is then streamed
to a single worker node for a final merge. This technique allows to utilize memory of multiple
Trino worker nodes for sorting. The primary purpose of distributed sort is to allow for sorting
of data sets which don't normally fit into single node memory. Performance improvement
can be expected, but it won't scale linearly with the number of nodes, since the
data needs to be merged by a single node.
264 changes: 264 additions & 0 deletions 430/_sources/admin/dynamic-filtering.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,264 @@
# Dynamic filtering

Dynamic filtering optimizations significantly improve the performance of queries
with selective joins by avoiding reading of data that would be filtered by join condition.

Consider the following query which captures a common pattern of a fact table `store_sales`
joined with a filtered dimension table `date_dim`:

> SELECT count(\*)
> FROM store_sales
> JOIN date_dim ON store_sales.ss_sold_date_sk = date_dim.d_date_sk
> WHERE d_following_holiday='Y' AND d_year = 2000;

Without dynamic filtering, Trino pushes predicates for the dimension table to the
table scan on `date_dim`, and it scans all the data in the fact table since there
are no filters on `store_sales` in the query. The join operator ends up throwing away
most of the probe-side rows as the join criteria is highly selective.

When dynamic filtering is enabled, Trino collects candidate values for join condition
from the processed dimension table on the right side of join. In the case of broadcast joins,
the runtime predicates generated from this collection are pushed into the local table scan
on the left side of the join running on the same worker.

Additionally, these runtime predicates are communicated to the coordinator over the network
so that dynamic filtering can also be performed on the coordinator during enumeration of
table scan splits.

For example, in the case of the Hive connector, dynamic filters are used
to skip loading of partitions which don't match the join criteria.
This is known as **dynamic partition pruning**.

After completing the collection of dynamic filters, the coordinator also distributes them
to worker nodes over the network for partitioned joins. This allows push down of dynamic
filters from partitioned joins into the table scans on the left side of that join.
Distribution of dynamic filters from the coordinator to workers is enabled by default.
It can be disabled by setting either the `enable-coordinator-dynamic-filters-distribution`
configuration property, or the session property
`enable_coordinator_dynamic_filters_distribution` to `false`.

The results of dynamic filtering optimization can include the following benefits:

- improved overall query performance
- reduced network traffic between Trino and the data source
- reduced load on the remote data source

Dynamic filtering is enabled by default. It can be disabled by setting either the
`enable-dynamic-filtering` configuration property, or the session property
`enable_dynamic_filtering` to `false`.

Support for push down of dynamic filters is specific to each connector,
and the relevant underlying database or storage system. The documentation for
specific connectors with support for dynamic filtering includes further details,
for example the {ref}`Hive connector <hive-dynamic-filtering>`
or the {ref}`Memory connector <memory-dynamic-filtering>`.

## Analysis and confirmation

Dynamic filtering depends on a number of factors:

- Planner support for dynamic filtering for a given join operation in Trino.
Currently inner and right joins with `=`, `<`, `<=`, `>`, `>=` or
`IS NOT DISTINCT FROM` join conditions, and
semi-joins with `IN` conditions are supported.
- Connector support for utilizing dynamic filters pushed into the table scan at runtime.
For example, the Hive connector can push dynamic filters into ORC and Parquet readers
to perform stripe or row-group pruning.
- Connector support for utilizing dynamic filters at the splits enumeration stage.
- Size of right (build) side of the join.

You can take a closer look at the {doc}`EXPLAIN plan </sql/explain>` of the query
to analyze if the planner is adding dynamic filters to a specific query's plan.
For example, the explain plan for the above query can be obtained by running
the following statement:

```
EXPLAIN
SELECT count(*)
FROM store_sales
JOIN date_dim ON store_sales.ss_sold_date_sk = date_dim.d_date_sk
WHERE d_following_holiday='Y' AND d_year = 2000;
```

The explain plan for this query shows `dynamicFilterAssignments` in the
`InnerJoin` node with dynamic filter `df_370` collected from build symbol `d_date_sk`.
You can also see the `dynamicFilter` predicate as part of the Hive `ScanFilterProject`
operator where `df_370` is associated with probe symbol `ss_sold_date_sk`.
This shows you that the planner is successful in pushing dynamic filters
down to the connector in the query plan.

```text
...

Fragment 1 [SOURCE]
Output layout: [count_3]
Output partitioning: SINGLE []
Aggregate(PARTIAL)
│ Layout: [count_3:bigint]
│ count_3 := count(*)
└─ InnerJoin[(""ss_sold_date_sk"" = ""d_date_sk"")][$hashvalue, $hashvalue_4]
│ Layout: []
│ Estimates: {rows: 0 (0B), cpu: 0, memory: 0B, network: 0B}
│ Distribution: REPLICATED
│ dynamicFilterAssignments = {d_date_sk -> #df_370}
├─ ScanFilterProject[table = hive:default:store_sales, grouped = false, filterPredicate = true, dynamicFilters = {""ss_sold_date_sk"" = #df_370}]
│ Layout: [ss_sold_date_sk:bigint, $hashvalue:bigint]
│ Estimates: {rows: 0 (0B), cpu: 0, memory: 0B, network: 0B}/{rows: 0 (0B), cpu: 0, memory: 0B, network: 0B}/{rows: 0 (0B), cpu: 0, memory: 0B, network: 0B}
│ $hashvalue := combine_hash(bigint '0', COALESCE(""$operator$hash_code""(""ss_sold_date_sk""), 0))
│ ss_sold_date_sk := ss_sold_date_sk:bigint:REGULAR
└─ LocalExchange[HASH][$hashvalue_4] (""d_date_sk"")
│ Layout: [d_date_sk:bigint, $hashvalue_4:bigint]
│ Estimates: {rows: 0 (0B), cpu: 0, memory: 0B, network: 0B}
└─ RemoteSource[2]
Layout: [d_date_sk:bigint, $hashvalue_5:bigint]

Fragment 2 [SOURCE]
Output layout: [d_date_sk, $hashvalue_6]
Output partitioning: BROADCAST []
ScanFilterProject[table = hive:default:date_dim, grouped = false, filterPredicate = ((""d_following_holiday"" = CAST('Y' AS char(1))) AND (""d_year"" = 2000))]
Layout: [d_date_sk:bigint, $hashvalue_6:bigint]
Estimates: {rows: 0 (0B), cpu: 0, memory: 0B, network: 0B}/{rows: 0 (0B), cpu: 0, memory: 0B, network: 0B}/{rows: 0 (0B), cpu: 0, memory: 0B, network: 0B}
$hashvalue_6 := combine_hash(bigint '0', COALESCE(""$operator$hash_code""(""d_date_sk""), 0))
d_following_holiday := d_following_holiday:char(1):REGULAR
d_date_sk := d_date_sk:bigint:REGULAR
d_year := d_year:int:REGULAR
```

During execution of a query with dynamic filters, Trino populates statistics
about dynamic filters in the QueryInfo JSON available through the
{doc}`/admin/web-interface`.
In the `queryStats` section, statistics about dynamic filters collected
by the coordinator can be found in the `dynamicFiltersStats` structure.

```text
"dynamicFiltersStats" : {
"dynamicFilterDomainStats" : [ {
"dynamicFilterId" : "df_370",
"simplifiedDomain" : "[ SortedRangeSet[type=bigint, ranges=3, {[2451546], ..., [2451905]}] ]",
"collectionDuration" : "2.34s"
} ],
"lazyDynamicFilters" : 1,
"replicatedDynamicFilters" : 1,
"totalDynamicFilters" : 1,
"dynamicFiltersCompleted" : 1
}
```

Push down of dynamic filters into a table scan on the worker nodes can be
verified by looking at the operator statistics for that table scan.
`dynamicFilterSplitsProcessed` records the number of splits
processed after a dynamic filter is pushed down to the table scan.

```text
"operatorType" : "ScanFilterAndProjectOperator",
"totalDrivers" : 1,
"addInputCalls" : 762,
"addInputWall" : "0.00ns",
"addInputCpu" : "0.00ns",
"physicalInputDataSize" : "0B",
"physicalInputPositions" : 28800991,
"inputPositions" : 28800991,
"dynamicFilterSplitsProcessed" : 1,
```

Dynamic filters are reported as a part of the
{doc}`EXPLAIN ANALYZE plan </sql/explain-analyze>` in the statistics for
`ScanFilterProject` nodes.

```text
...

└─ InnerJoin[("ss_sold_date_sk" = "d_date_sk")][$hashvalue, $hashvalue_4]
│ Layout: []
│ Estimates: {rows: 11859 (0B), cpu: 8.84M, memory: 3.19kB, network: 3.19kB}
│ CPU: 78.00ms (30.00%), Scheduled: 295.00ms (47.05%), Output: 296 rows (0B)
│ Left (probe) Input avg.: 120527.00 rows, Input std.dev.: 0.00%
│ Right (build) Input avg.: 0.19 rows, Input std.dev.: 208.17%
│ Distribution: REPLICATED
│ dynamicFilterAssignments = {d_date_sk -> #df_370}
├─ ScanFilterProject[table = hive:default:store_sales, grouped = false, filterPredicate = true, dynamicFilters = {"ss_sold_date_sk" = #df_370}]
│ Layout: [ss_sold_date_sk:bigint, $hashvalue:bigint]
│ Estimates: {rows: 120527 (2.03MB), cpu: 1017.64k, memory: 0B, network: 0B}/{rows: 120527 (2.03MB), cpu: 1.99M, memory: 0B, network: 0B}/{rows: 120527 (2.03MB), cpu: 4.02M, memory: 0B, network: 0B}
│ CPU: 49.00ms (18.85%), Scheduled: 123.00ms (19.62%), Output: 120527 rows (2.07MB)
│ Input avg.: 120527.00 rows, Input std.dev.: 0.00%
│ $hashvalue := combine_hash(bigint '0', COALESCE("$operator$hash_code"("ss_sold_date_sk"), 0))
│ ss_sold_date_sk := ss_sold_date_sk:bigint:REGULAR
│ Input: 120527 rows (1.03MB), Filtered: 0.00%
│ Dynamic filters:
│ - df_370, [ SortedRangeSet[type=bigint, ranges=3, {[2451546], ..., [2451905]}] ], collection time=2.34s
|
...
```

## Dynamic filter collection thresholds

In order for dynamic filtering to work, the smaller dimension table
needs to be chosen as a join’s build side. The cost-based optimizer can automatically
do this using table statistics provided by connectors. Therefore, it is recommended
to keep {doc}`table statistics </optimizer/statistics>` up to date and rely on the
CBO to correctly choose the smaller table on the build side of join.

Collection of values of the join key columns from the build side for
dynamic filtering may incur additional CPU overhead during query execution.
Therefore, to limit the overhead of collecting dynamic filters
to the cases where the join operator is likely to be selective,
Trino defines thresholds on the size of dynamic filters collected from build side tasks.
Collection of dynamic filters for joins with large build sides can be enabled
using the `enable-large-dynamic-filters` configuration property or the
`enable_large_dynamic_filters` session property.

When large dynamic filters are enabled, limits on the size of dynamic filters can
be configured using the configuration properties
`dynamic-filtering.large.max-distinct-values-per-driver`,
`dynamic-filtering.large.max-size-per-driver` ,
`dynamic-filtering.large.range-row-limit-per-driver`,
`dynamic-filtering.large-partitioned.max-distinct-values-per-driver`,
`dynamic-filtering.large-partitioned.max-size-per-driver` and
`dynamic-filtering.large-partitioned.range-row-limit-per-driver`.

Similarly, limits for dynamic filters when `enable-large-dynamic-filters`
is not enabled can be configured using configuration properties like
`dynamic-filtering.small.max-distinct-values-per-driver`,
`dynamic-filtering.small.max-size-per-driver` ,
`dynamic-filtering.small.range-row-limit-per-driver`,
`dynamic-filtering.small-partitioned.max-distinct-values-per-driver`,
`dynamic-filtering.small-partitioned.max-size-per-driver` and
`dynamic-filtering.small-partitioned.range-row-limit-per-driver`.

The `dynamic-filtering.large.*` and `dynamic-filtering.small.*` limits are applied
when dynamic filters are collected before build side is partitioned on join
keys (when broadcast join is chosen or when fault tolerant execution is enabled). The
`dynamic-filtering.large-partitioned.*` and `dynamic-filtering.small-partitioned.*`
limits are applied when dynamic filters are collected after build side is partitioned
on join keys (when partitioned join is chosen and fault tolerant execution is disabled).

The properties based on `max-distinct-values-per-driver` and `max-size-per-driver`
define thresholds for the size up to which dynamic filters are collected in a
distinct values data structure. When the build side exceeds these thresholds,
Trino switches to collecting min and max values per column to reduce overhead.
This min-max filter has much lower granularity than the distinct values filter.
However, it may still be beneficial in filtering some data from the probe side,
especially when a range of values is selected from the build side of the join.
The limits for min-max filters collection are defined by the properties
based on `range-row-limit-per-driver`.

## Dimension tables layout

Dynamic filtering works best for dimension tables where
table keys are correlated with columns.

For example, a date dimension key column should be correlated with a date column,
so the table keys monotonically increase with date values.
An address dimension key can be composed of other columns such as
`COUNTRY-STATE-ZIP-ADDRESS_ID` with an example value of `US-NY-10001-1234`.
This usage allows dynamic filtering to succeed even with a large number
of selected rows from the dimension table.

## Limitations

- Min-max dynamic filter collection is not supported for `DOUBLE`, `REAL` and unorderable data types.
- Dynamic filtering is not supported for `DOUBLE` and `REAL` data types when using `IS NOT DISTINCT FROM` predicate.
- Dynamic filtering is supported when the join key contains a cast from the build key type to the
probe key type. Dynamic filtering is also supported in limited scenarios when there is an implicit
cast from the probe key type to the build key type. For example, dynamic filtering is supported when
the build side key is of `DOUBLE` type and the probe side key is of `REAL` or `INTEGER` type.
Loading

0 comments on commit 8ec8cb6

Please sign in to comment.