Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2447 from aiven/harshini-flink-restart-strategy
Browse files Browse the repository at this point in the history
Document default restart strategy for Flink JAR applications
  • Loading branch information
juha-aiven authored Jan 19, 2024
2 parents cf0bb58 + 1104b4b commit 7dc4674
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 1 deletion.
2 changes: 2 additions & 0 deletions _toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -665,6 +665,8 @@ entries:
title: Create a JAR application
- file: docs/products/flink/howto/manage-flink-applications
title: Manage Apache Flink applications
- file: docs/products/flink/howto/restart-strategy-jar-applications
title: Restart Strategy for JAR Applications
- file: docs/products/flink/howto/list-flink-tables
title: Apache Flink tables
entries:
Expand Down
3 changes: 2 additions & 1 deletion docs/products/flink/concepts/custom-jars.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ Custom JARs can be applied in various scenarios, including but not limited to:
Related pages
--------------

* :doc:`How to use custom JARs in Aiven for Apache Flink application </docs/products/flink/howto/create-jar-application>`.
* :doc:`How to use custom JARs in Aiven for Apache Flink application </docs/products/flink/howto/create-jar-application>`.


49 changes: 49 additions & 0 deletions docs/products/flink/howto/restart-strategy-jar-applications.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
Restart strategy in JAR applications
======================================

A restart strategy is a set of rules that Apache Flink® adheres to when dealing with Flink job failures. These strategies enable the automatic restart of a failed Flink job under specific conditions and parameters, which is crucial for high availability and fault tolerance in distributed and scalable systems.


Default restart strategy for JAR applications
-----------------------------------------------

Aiven for Apache Flink® includes a default restart strategy for JAR applications. This strategy uses the **exponential-delay** technique, incrementally increasing the delay time between restarts up to a specified maximum. Once this maximum delay is reached, it remains constant for any subsequent restarts. The default strategy is fully integrated into the Aiven for Apache Flink cluster configuration and automatically applies to all JAR applications.

View the default strategy
````````````````````````````````````````````

You can view the default restart strategy configurations for your Aiven for Apache Flink cluster in the Apache Flink Dashboard. Follow these steps to view the current settings:

1. Access the `Aiven Console <https://console.aiven.io/>`_ and select the Aiven for Apache Flink service.
2. From the **Connection information** section on the overview page, copy the **Service URI** and paste it into your web browser's address bar.
3. When prompted, log in using the **User** and **Password** credentials specified in the **Connection information** section.
4. Once in the **Apache Flink Dashboard**, click the **Job Manager** from the menu.
5. Switch to the **Configuration** tab.
6. Review the configurations and parameters related to the restart strategy.

Disable default restart strategy
------------------------------------
While Aiven for Apache Flink® typically recommends using the default restart strategy for JAR applications, there are circumstances, particularly during testing or debugging, where disabling automatic restarts might be necessary. You cannot disable the default restart strategy in Aiven for Apache Flink® through configuration files. Instead, directly modify the code of your Jar application to achieve this.


.. code-block:: java
StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment();
env.setRestartStrategy(RestartStrategies.noRestart());
This code sets the restart strategy to 'None', preventing any restart attempts in case of failures.

Key considerations when disabling default restarts
``````````````````````````````````````````````````````````

Before choosing to disable the default restart strategy, consider the following:

- **Persistent failures**: Disabling restarts means that if a Flink Job fails, Flink will not attempt to recover it, leading to permanent job failure.
- **Testing and debugging**: Disabling is beneficial when identifying issues in the application code, as it prevents the masking of errors through automatic restarts.
- **External factors**: Jobs can fail due to external factors, such as infrastructure changes or maintenance activities. If you disable restarts, your Flink jobs will become vulnerable to failures.
- **Operational risks**: In production environments, it is generally advisable to use the default restart strategy to ensure high availability and fault tolerance.


Related pages
--------------
* `Restart strategies in Apache Flink® <https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/ops/state/task_failure_recovery/#restart-strategies>`_

0 comments on commit 7dc4674

Please sign in to comment.