How to disable scenario start notification
Hi,
I was wondering if there is a way to disable the right-bottom notification that a Scenario or a task has started. I've seen that in Administration I can choose to show that notifications are shown just to the initiator, but what if I want to hide them to everyone?
Thank you!
Answers
-
dima_naboka Dataiker, Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS Core Concepts Posts: 28 Dataiker
Hi,
You can disable notification for 'other users run jobs/scenarios/ML tasks' from user Profile and Settings.
Unfortunately, there is no easy way of changing this setting for a list of users and it needs to be done individually.
-
tim-wright Partner, L2 Designer, Snowflake Advanced, Neuron 2020, Registered, Neuron 2021, Neuron 2022 Posts: 77 Partner
@dima_naboka
I was looking into the dataiku api and was wondering if this could be modified using something like the following.It appears you can alter the general_settings for the user and execute the .save() method. Is there a way you can modify the settings programmatically through the API to accomplish what was being requested by @ASten1
?Or does this essentially let you toggle between the three options available in the ui:
-
dima_naboka Dataiker, Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS Core Concepts Posts: 28 Dataiker
Sorry, I missed the point in my first comment.
@tim-wright
yes, you can disable all notifications through API. Keyword is 'NOBODY'client = dataiku.api_client() general_settings = client.get_general_settings() raw_settings = general_settings.get_raw() raw_settings['notifications']['notifyOnTaskStartAndStop'] = 'NOBODY' general_settings.save()
Keep in mind this will disable scenario as well as job build notifications