Query about flink job manager dashboard

2022-11-23 Thread naga sudhakar
> Hi Team, > Greetings!!! > I am a software developer using apache flink and deploying flink jobs > using the same. I have two queries about flink job manager dashboard. Can > you please help with below? > > 1) is it possible to add login mechanism for the flink job manager dash > board and have a

Query about flink job manager dashboard

2022-11-23 Thread naga sudhakar
> > Hi Team, > Greetings!!! > I am a software developer using apache flink and deploying flink jobs > using the same. I have two queries about flink job manager dashboard. Can > you please help with below? > > 1) is it possible to add login mechanism for the flink job manager dash > board and have

Re: Query about flink job manager dashboard

2022-11-24 Thread Martijn Visser
Hi, 1) No, that's currently not possible. 2) You could consider disabling to disallow uploading new JARs and/or cancelling jobs from the UI. See https://nightlies.apache.org/flink/flink-docs-master/docs/deployment/config/#advanced-options-for-flink-web-ui Best regards, Martijn On Thu, Nov 24, 2

Re: Query about flink job manager dashboard

2022-11-24 Thread naga sudhakar
Thank you for your response. On Thu, 24 Nov, 2022, 2:07 PM Martijn Visser, wrote: > Hi, > > 1) No, that's currently not possible. > 2) You could consider disabling to disallow uploading new JARs and/or > cancelling jobs from the UI. See > https://nightlies.apache.org/flink/flink-docs-master/docs

Re: Query about flink job manager dashboard

2022-11-28 Thread naga sudhakar
Hi, We are able to disable this cancela nd upload otpion in ui. But this is having issues with endpoints for below. Get call for /jars to list all uploaded jars and post call /jars/{jarid}/run are giving 404 after disabling the two flags. Is the process of uploading jars and running a jar with spec

Re: Query about flink job manager dashboard

2022-11-29 Thread naga sudhakar
After disabling the cancel, submit flags facing issues with below api calls. 1) /jars giving 404 2) /jars/upload 3) /jars/{jarid}/run Is there any config changes needed to have these apis work? On Mon, 28 Nov, 2022, 7:00 PM naga sudhakar, wrote: > Hi, > We are able to disable this cancela nd

Re: Query about flink job manager dashboard

2022-11-30 Thread Chesnay Schepler
There's no way to disable the jar submission in the UI but have it still work via the REST API. On 30/11/2022 06:16, naga sudhakar wrote: After disabling the cancel, submit flags facing issues with below api calls. 1) /jars giving 404 2) /jars/upload 3) /jars/{jarid}/run Is there any config

Re: Query about flink job manager dashboard

2022-11-30 Thread Berkay Polat via user
Hi Chesnay, I have a similar question on this topic. Is there an option to disable the frontend altogether but still use REST APIs? Thanks On Wed, Nov 30, 2022 at 1:37 AM Chesnay Schepler wrote: > There's no way to disable the jar submission in the UI but have it still > work via the REST API.

Re: Query about flink job manager dashboard

2022-11-30 Thread Chesnay Schepler
There's no way to /disable/ the UI. (But you could cut out the javascript stuff from the flink-dist jar) I'm curious why you'd want that though; since it works against the REST API it provides a strict subset of the REST API functionality. On 30/11/2022 16:25, Berkay Polat wrote: Hi Chesnay,

Re: Query about flink job manager dashboard

2022-12-04 Thread naga sudhakar
Any suggestions for these apis to work after applying these configuration? Basically I suspect webupload directory cobfif is not taken also when these were set to false. web.submit.enable: Enables uploading and starting jobs through the Flink UI (true by default). Please note that even when this i

Re: Query about flink job manager dashboard

2022-12-08 Thread naga sudhakar
Is it possible to disable to dashboard port running, but still api running on different port? Let us know if we can configure this? On Mon, 5 Dec, 2022, 6:08 AM naga sudhakar, wrote: > Any suggestions for these apis to work after applying these configuration? > Basically I suspect webupload dire