diff --git a/docs/src/main/sphinx/admin/fault-tolerant-execution.rst b/docs/src/main/sphinx/admin/fault-tolerant-execution.rst index 93f517bc53d9..4c229ebd9eb9 100644 --- a/docs/src/main/sphinx/admin/fault-tolerant-execution.rst +++ b/docs/src/main/sphinx/admin/fault-tolerant-execution.rst @@ -179,11 +179,6 @@ queries/tasks are no longer retried in the event of repeated failures: declaring the query as failed. - ``4`` - Only ``QUERY`` - * - ``task-retry-attempts-overall`` - - Maximum number retries across all tasks within a given query - before declaring the query as failed. - - ``null`` (no limit) - - Only ``TASK`` * - ``task-retry-attempts-per-task`` - Maximum number of times Trino may attempt to retry a single task before declaring the query as failed. @@ -252,16 +247,6 @@ properties only apply to a ``TASK`` retry policy. ``fault_tolerant_execution_target_task_split_count`` :ref:`session property `. - ``64`` - * - ``fault-tolerant-execution-min-task-split-count`` - - Minimum number of :ref:`splits ` processed by - a single task. This value is not split weight-adjusted and serves as - protection against situations where catalogs report an incorrect split - weight. - - May be overridden for the current session with the - ``fault_tolerant_execution_min_task_split_count`` - :ref:`session property `. - - ``16`` * - ``fault-tolerant-execution-max-task-split-count`` - Maximum number of :ref:`splits ` processed by a single task. This value is not split weight-adjusted and serves as diff --git a/testing/trino-testing/src/main/java/io/trino/testing/BaseFailureRecoveryTest.java b/testing/trino-testing/src/main/java/io/trino/testing/BaseFailureRecoveryTest.java index d5ea0da45430..16b3abb2b214 100644 --- a/testing/trino-testing/src/main/java/io/trino/testing/BaseFailureRecoveryTest.java +++ b/testing/trino-testing/src/main/java/io/trino/testing/BaseFailureRecoveryTest.java @@ -99,7 +99,6 @@ protected final QueryRunner createQueryRunner() .put("retry-policy", retryPolicy.toString()) .put("retry-initial-delay", "0s") .put("query-retry-attempts", "1") - .put("task-retry-attempts-overall", "1") .put("failure-injection.request-timeout", new Duration(REQUEST_TIMEOUT.toMillis() * 2, MILLISECONDS).toString()) // making http timeouts shorter so tests which simulate communication timeouts finish in reasonable amount of time .put("exchange.http-client.idle-timeout", REQUEST_TIMEOUT.toString())