From issues-return-149090-archive-asf-public=cust-asf.ponee.io@flink.apache.org Tue Jan 23 15:29:15 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id 32FA0180621 for ; Tue, 23 Jan 2018 15:29:15 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 22CEE160C39; Tue, 23 Jan 2018 14:29:15 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 69C35160C17 for ; Tue, 23 Jan 2018 15:29:14 +0100 (CET) Received: (qmail 89228 invoked by uid 500); 23 Jan 2018 14:29:13 -0000 Mailing-List: contact issues-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list issues@flink.apache.org Received: (qmail 89213 invoked by uid 99); 23 Jan 2018 14:29:13 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Jan 2018 14:29:13 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 78D12E5CE1; Tue, 23 Jan 2018 14:29:13 +0000 (UTC) From: tillrohrmann To: issues@flink.apache.org Reply-To: issues@flink.apache.org Message-ID: Subject: [GitHub] flink pull request #5341: [FLINK-8495] [flip6] Enable main cluster component... Content-Type: text/plain Date: Tue, 23 Jan 2018 14:29:13 +0000 (UTC) GitHub user tillrohrmann opened a pull request: https://github.com/apache/flink/pull/5341 [FLINK-8495] [flip6] Enable main cluster component's log and stdout file retrieval ## What is the purpose of the change This commit enables the log and stdout file retrieval of the cluster's main component via the web ui. This happens via the StaticFileServerHandler which serves the log and stdout file. ## Verifying this change - Tested manually ## Does this pull request potentially affect one of the following parts: - Dependencies (does it add or upgrade a dependency): (no) - The public API, i.e., is any changed class annotated with `@Public(Evolving)`: (no) - The serializers: (no) - The runtime per-record code paths (performance sensitive): (no) - Anything that affects deployment or recovery: JobManager (and its components), Checkpointing, Yarn/Mesos, ZooKeeper: (no) - The S3 file system connector: (no) ## Documentation - Does this pull request introduce a new feature? (no) - If yes, how is the feature documented? (not applicable) You can merge this pull request into a Git repository by running: $ git pull https://github.com/tillrohrmann/flink enableWebLogRetrieval Alternatively you can review and apply these changes as the patch at: https://github.com/apache/flink/pull/5341.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #5341 ---- commit a2672b713917f7ea09242684c0106aaf407cf867 Author: Till Rohrmann Date: 2018-01-23T14:17:16Z [FLINK-8495] [flip6] Enable main cluster component's log and stdout file retrieval This commit enables the log and stdout file retrieval of the cluster's main component via the web ui. This happens via the StaticFileServerHandler which serves the log and stdout file. ---- ---