This is an automated email from the ASF dual-hosted git repository. tangyun pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push: new 187e5727689 [FLINK-30392][web] Replace default thread dump depth to 50 187e5727689 is described below commit 187e572768932b121b5f5e785727f0c48ca98aff Author: Yu Chen <yuchen.e...@gmail.com> AuthorDate: Tue Dec 13 14:06:34 2022 +0800 [FLINK-30392][web] Replace default thread dump depth to 50 This closes #21498. --- docs/layouts/shortcodes/generated/cluster_configuration.html | 2 +- docs/layouts/shortcodes/generated/expert_cluster_section.html | 2 +- .../src/main/java/org/apache/flink/configuration/ClusterOptions.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/layouts/shortcodes/generated/cluster_configuration.html b/docs/layouts/shortcodes/generated/cluster_configuration.html index 67490bfc4ef..8639eb3bf8c 100644 --- a/docs/layouts/shortcodes/generated/cluster_configuration.html +++ b/docs/layouts/shortcodes/generated/cluster_configuration.html @@ -70,7 +70,7 @@ </tr> <tr> <td><h5>cluster.thread-dump.stacktrace-max-depth</h5></td> - <td style="word-wrap: break-word;">8</td> + <td style="word-wrap: break-word;">50</td> <td>Integer</td> <td>The maximum stacktrace depth of TaskManager and JobManager's thread dump web-frontend displayed.</td> </tr> diff --git a/docs/layouts/shortcodes/generated/expert_cluster_section.html b/docs/layouts/shortcodes/generated/expert_cluster_section.html index 0f6830f3000..63df9172b07 100644 --- a/docs/layouts/shortcodes/generated/expert_cluster_section.html +++ b/docs/layouts/shortcodes/generated/expert_cluster_section.html @@ -22,7 +22,7 @@ </tr> <tr> <td><h5>cluster.thread-dump.stacktrace-max-depth</h5></td> - <td style="word-wrap: break-word;">8</td> + <td style="word-wrap: break-word;">50</td> <td>Integer</td> <td>The maximum stacktrace depth of TaskManager and JobManager's thread dump web-frontend displayed.</td> </tr> diff --git a/flink-core/src/main/java/org/apache/flink/configuration/ClusterOptions.java b/flink-core/src/main/java/org/apache/flink/configuration/ClusterOptions.java index 0cca5113250..2785f598dbb 100644 --- a/flink-core/src/main/java/org/apache/flink/configuration/ClusterOptions.java +++ b/flink-core/src/main/java/org/apache/flink/configuration/ClusterOptions.java @@ -132,7 +132,7 @@ public class ClusterOptions { public static final ConfigOption<Integer> THREAD_DUMP_STACKTRACE_MAX_DEPTH = key("cluster.thread-dump.stacktrace-max-depth") .intType() - .defaultValue(8) + .defaultValue(50) .withDescription( "The maximum stacktrace depth of TaskManager and JobManager's thread dump web-frontend displayed.");