Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion presto-docs/src/main/sphinx/connector/hive.rst
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,13 @@ Enabling S3 Select Pushdown
You can enable S3 Select Pushdown using the ``s3_select_pushdown_enabled``
Hive session property or using the ``hive.s3select-pushdown.enabled``
configuration property. The session property will override the config
property, allowing you enable or disable on a per-query basis.
property, allowing you enable or disable on a per-query basis. Non-filtering
queries (``SELECT * FROM table``) are not pushed down to S3 Select,
as they retrieve the entire object content.

For uncompressed files, S3 Select scans ranges of bytes in parallel.
The scan range requests run across the byte ranges of the internal
Hive splits for the query fragments pushed down to S3 Select.

Understanding and Tuning the Maximum Connections
################################################
Expand Down