We are using open source apache spark cluster in our project. Need some help on following ones.
- How to enable login credentials for spark web ui login?
- How to disable “kill button” option from spark webui?.
Can someone help me solutions to question 1 or 2 or both?.
Thanks in advance.
spark.ui.filterssetting to refer to the filter class that implements the authentication method you want to deploy. Spark does not provide any built-in authentication filters.You can see a filter example here.
spark.acls.enable,spark.ui.view.aclsandspark.ui.view.acls.groups. You can read more about it here.