How to disable scenario start notification

Options
ASten1
ASten1 Partner, Registered Posts: 19 Partner

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
    dima_naboka Dataiker, Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS Core Concepts Posts: 28 Dataiker
    Options

    Hi,

    You can disable notification for 'other users run jobs/scenarios/ML tasks' from user Profile and Settings.

    Screenshot 2020-10-30 at 18.14.59.png

    Unfortunately, there is no easy way of changing this setting for a list of users and it needs to be done individually.

  • tim-wright
    tim-wright Partner, L2 Designer, Snowflake Advanced, Neuron 2020, Registered, Neuron 2021, Neuron 2022 Posts: 77 Partner
    Options

    @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
    ?

    notifications.PNG

    Or does this essentially let you toggle between the three options available in the ui:

    notifications_ui.PNG

  • dima_naboka
    dima_naboka Dataiker, Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS Core Concepts Posts: 28 Dataiker
    edited July 17
    Options

    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

Setup Info
    Tags
      Help me…