Re: Flink Web UI

2024-08-31 Thread Yu Chen
: Kartik Kushwaha 发送时间: 2024年8月31日 2:40 收件人: user@flink.apache.org 主题: Flink Web UI I've noticed that completed job details (single completed job) are being removed from the Flink web UI after a few hours. I haven't configured an archive directory or history server. Could you please explain

Flink Web UI

2024-08-30 Thread Kartik Kushwaha
I've noticed that completed job details (single completed job) are being removed from the Flink web UI after a few hours. I haven't configured an archive directory or history server. Could you please explain how Flink clears these job details and after what timeframe? I couldn't f

Re: Flink Web ui not stable in kubernetes?

2022-03-25 Thread Guillaume Vauvert
Hi, I agree that the changelog description of https://issues.apache.org/jira/browse/FLINK-25732 is talking only about technical root cause, not user consequences. I have added a comment in https://issues.apache.org/jira/browse/FLINK-25732. Have a nice day ! Guillaume On 25/03/2022 10.31, Se

Re: Flink Web ui not stable in kubernetes?

2022-03-25 Thread Sebastian Struss
Hi Guillaume, thank you for this great hint! It indeed fixed the mentioned issue. Just from reading the changelog of 1.14.4 i would not have known that this fix is included, maybe i was searching for the wrong stuff though. Have a great day! Sebastian On Fri, Mar 25, 2022 at 10:51 AM Guillaume V

Re: Flink Web ui not stable in kubernetes?

2022-03-25 Thread Guillaume Vauvert
Hello Sebastian, Multiple versions of Flink 1.14.x are known to have issue with UI/CLI, please switch to Flink 1.14.4. Best regards, Guillaume On 25/03/2022 08.42, Sebastian Struss wrote: Hello all, i've been setting up flink in my kubernetes cluster with 2 job managers and 1 task manager

Flink Web ui not stable in kubernetes?

2022-03-25 Thread Sebastian Struss
Hello all, i've been setting up flink in my kubernetes cluster with 2 job managers and 1 task manager (custom helm chart i wrote, no flink CLI used). I can access the web ui, but often it seems to switch pods which i am connected to and as soon as i am connected to the standby job manager it doesn

Re: How to change the flink web-ui jobServer?

2020-03-15 Thread Yang Wang
(RestOptions.BIND_PORT, "8081-8099"); >>> >>> >>> On Mon, Mar 9, 2020 at 10:47 AM LakeShen >>> wrote: >>> >>>> Hi community, >>>>now I am moving the flink job to k8s,and I plan to use the >>>> ingress

Re: How to change the flink web-ui jobServer?

2020-03-14 Thread tison
RestOptions.BIND_PORT, "8081-8099"); >> >> >> On Mon, Mar 9, 2020 at 10:47 AM LakeShen >> wrote: >> >>> Hi community, >>>now I am moving the flink job to k8s,and I plan to use the >>> ingress to show the flink web ui , t

Re: How to change the flink web-ui jobServer?

2020-03-14 Thread LakeShen
> > > On Mon, Mar 9, 2020 at 10:47 AM LakeShen > wrote: > >> Hi community, >>now I am moving the flink job to k8s,and I plan to use the ingress >> to show the flink web ui , the problem is that fink job server aren't >> correct, so I want to cha

Re: How to change the flink web-ui jobServer?

2020-03-10 Thread Arvid Heise
the flink job to k8s,and I plan to use the ingress > to show the flink web ui , the problem is that fink job server aren't > correct, so I want to change the flink web-ui jobserver ,I don't find the > any method to change it ,are there some method to do that? >

How to change the flink web-ui jobServer?

2020-03-09 Thread LakeShen
Hi community, now I am moving the flink job to k8s,and I plan to use the ingress to show the flink web ui , the problem is that fink job server aren't correct, so I want to change the flink web-ui jobserver ,I don't find the any method to change it ,are there some method

Re: Flink Web UI display nothing in k8s when use ingress

2020-03-03 Thread LakeShen
; Service to expose 8081 port of jobmanager, then we use ingress controller > so that we can see it outside.But the flink web like this : > > [image: image.png] > > The flink web ui images and other info not display , what can I do to > display flink web info ? > Thanks to your replay. >

Flink Web UI display nothing in k8s when use ingress

2020-03-03 Thread LakeShen
: [image: image.png] The flink web ui images and other info not display , what can I do to display flink web info ? Thanks to your replay.

Re: Flink web ui authentication using nginx

2019-09-13 Thread Till Rohrmann
Hi Harshith, I'm not an expert of how to setup nginx with authentication for Flink but I could shed some light on the redirection problem. I assume that Flink's redirection response might not be properly understood by nginx. The good news is that with Flink 1.8, we no longer rely on client side re

Flink web ui authentication using nginx

2019-09-12 Thread Kumar Bolar, Harshith
Hi all, I'm trying to add authentication to the web dashboard using `nginx`. Flink's `rest.port` is set to `8081`, connection to this port is disabled by firewall. I'm using `nginx` to listen to requests on port 8080 and redirect to port 8081 them with username/password authentication (Port 808

Re: Flink Web UI does not show specific exception messages when job submission fails

2018-11-09 Thread Cliff Resnick
+1! On Fri, Nov 9, 2018 at 1:34 PM Gary Yao wrote: > Hi, > > We only propagate the exception message but not the complete stacktrace > [1]. > Can you create a ticket for that? > > Best, > Gary > > [1] > https://github.com/apache/flink/blob/091cff3299aed4bb143619324f6ec8165348d3ae/flink-runtime/s

Re: Flink Web UI does not show specific exception messages when job submission fails

2018-11-09 Thread Gary Yao
Hi, We only propagate the exception message but not the complete stacktrace [1]. Can you create a ticket for that? Best, Gary [1] https://github.com/apache/flink/blob/091cff3299aed4bb143619324f6ec8165348d3ae/flink-runtime/src/main/java/org/apache/flink/runtime/rest/handler/AbstractRestHandler.ja

Flink Web UI does not show specific exception messages when job submission fails

2018-11-06 Thread Luis Gustavo Oliveira Silva
Hello, I was using Flink 1.4.2 and when submiting jobs through the Web UI, I could see exceptions that would help me debug jobs, such as: We're sorry, something went wrong. The server responded with: > > java.util.concurrent.CompletionException: > org.apache.flink.util.FlinkException: Could not

Re: Flink web UI authentication

2018-03-19 Thread Sampath Bhat
-with-nginx-on-ubuntu-14-04 More importantly, how can this "web.access-control-allow-origin" parameter help in authentication? It is used for inter origin resource allocation. So can I use this parameter to specify few hostnames so that only those hostname can access the flink web ui? I don

Re: Flink web UI authentication

2018-03-19 Thread Nico Kruber
d the web UI if you need this. Regards Nico On 13/03/18 11:16, Sampath Bhat wrote: > Hello > > I would like to know if flink supports any user level authentication > like username/password for flink web ui. > > Regards > Sampath S > signature.asc Description: OpenPGP digital signature

Flink web UI authentication

2018-03-13 Thread Sampath Bhat
Hello I would like to know if flink supports any user level authentication like username/password for flink web ui. Regards Sampath S