You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/modules/trino/pages/usage-guide/fault-tolerant-execution.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,8 @@ The configuration uses a structured approach where you choose either `query` or
24
24
A `query` retry policy instructs Trino to automatically retry a query in the event of an error occurring on a worker node.
25
25
This policy is recommended when the majority of the Trino cluster's workload consists of many small queries.
26
26
27
-
By default, Trino does not implement fault tolerance for queries whose result set exceeds 32MB in size.
28
-
This limit can be increased by modifying the `exchangeDeduplicationBufferSize` configuration property to be greater than the default value of `32MB`, but this results in higher memory usage on the coordinator.
27
+
By default, Trino does not implement fault tolerance for queries whose result set exceeds 32Mi in size.
28
+
This limit can be increased by modifying the `exchangeDeduplicationBufferSize` configuration property to be greater than the default value of `32Mi`, but this results in higher memory usage on the coordinator.
29
29
30
30
[source,yaml]
31
31
----
@@ -34,7 +34,7 @@ spec:
34
34
faultTolerantExecution:
35
35
query:
36
36
retryAttempts: 3
37
-
exchangeDeduplicationBufferSize: 64MB # Increased from default 32MB
37
+
exchangeDeduplicationBufferSize: 64Mi # Increased from default 32Mi
0 commit comments