Skip to content

Commit

Permalink
Migrate FTE after exchange compression property deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
findepi committed Mar 4, 2024
1 parent 66da857 commit 2ceb5bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/src/main/sphinx/admin/fault-tolerant-execution.md
Original file line number Diff line number Diff line change
Expand Up @@ -516,8 +516,8 @@ the property may be configured for:
- HDFS
:::

It is recommended to set the `exchange.compression-enabled` property to
`true` in the cluster's `config.properties` file, to reduce the exchange
It is recommended to set the `exchange.compression-codec` property to
`LZ4` in the cluster's `config.properties` file, to reduce the exchange
manager's overall I/O load. It is also recommended to configure a bucket
lifecycle rule to automatically expire abandoned objects in the event of a node
crash.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static Map<String, String> getExtraProperties()
.put("fault-tolerant-execution-task-memory", "1GB")

// enable exchange compression to follow production deployment recommendations
.put("exchange.compression-enabled", "true")
.put("exchange.compression-codec", "LZ4")
.put("max-tasks-waiting-for-execution-per-query", "2")
.put("max-tasks-waiting-for-node-per-stage", "2")
.put("query.schedule-split-batch-size", "2")
Expand Down

0 comments on commit 2ceb5bd

Please sign in to comment.