|
| 1 | +; Supported format: https://docs.python.org/3/library/configparser.html#supported-ini-file-structure |
| 2 | + |
| 3 | +; This is the only file required to deploy a Data Job. |
| 4 | +; Read more to understand what each option means: |
| 5 | + |
| 6 | +; Information about the owner of the Data Job |
| 7 | +[owner] |
| 8 | + |
| 9 | +; Team is a way to group Data Jobs that belonged to the same team. |
| 10 | +team = taurus |
| 11 | + |
| 12 | +; Configuration related to running data jobs |
| 13 | +[job] |
| 14 | +; For format see https://en.wikipedia.org/wiki/Cron |
| 15 | +; The cron expression is evaluated in UTC time. |
| 16 | +; If it is time for a new job run and the previous job run hasn’t finished yet, |
| 17 | +; the cron job waits until the previous execution has finished. |
| 18 | +schedule_cron = */2 * * * * |
| 19 | + |
| 20 | +; Who will be contacted and on what occasion |
| 21 | +[contacts] |
| 22 | + |
| 23 | +; Specifies the time interval (in minutes) that a job execution is allowed to be delayed |
| 24 | +; from its scheduled time before a notification email is sent. The default is 240. |
| 25 | +; notification_delay_period_minutes=240 |
| 26 | + |
| 27 | +; Specifies whether to enable or disable the email notifications for each data job run attempt. |
| 28 | +; The default value is true. |
| 29 | +; enable_attempt_notifications=true |
| 30 | + |
| 31 | +; Specifies whether to enable or disable email notifications per data job execution and execution delays. |
| 32 | +; The default value is true. |
| 33 | +;enable_execution_notifications=true |
| 34 | + |
| 35 | +; The [contacts] properties below use semicolon-separated list of email addresses that will be notified with email message on a given condition. |
| 36 | +; You can also provide email address linked to your Slack account in order to receive Slack messages. |
| 37 | +; To generate Slack linked email address follow the steps here: |
| 38 | +; https://get.slack.help/hc/en-us/articles/206819278-Send-emails-to-Slack#connect-the-email-app-to-your-workspace |
| 39 | + |
| 40 | +; Semicolon-separated list of email addresses to be notified on job execution failure caused by user code or user configuration why. |
| 41 | +; For example: if the job contains an SQL script with syntax error. |
| 42 | +; notified_on_job_failure_user_error=example@vmware.com |
| 43 | +notified_on_job_failure_user_error= |
| 44 | + |
| 45 | +; Semicolon-separated list of email addresses to be notified on job execution failure caused by a platform why. |
| 46 | +; notified_on_job_failure_platform_error=example@example.com; example2@example.com |
| 47 | +notified_on_job_failure_platform_error= |
| 48 | + |
| 49 | +; Semicolon-separated list of email addresses to be notified on job execution success. |
| 50 | +notified_on_job_success= |
| 51 | + |
| 52 | +; Semicolon-separated list of email addresses to be notified of job deployment outcome. |
| 53 | +; Notice that if this file is malformed (file structure is not as per https://docs.python.org/3/library/configparser.html#supported-ini-file-structure), |
| 54 | +; then an email notification will NOT be sent to the recipients specified here. |
| 55 | +notified_on_job_deploy= |
| 56 | + |
| 57 | +[vdk] |
| 58 | +; Key value pairs of any configuration options that can be passed to vdk. |
| 59 | +; For possible options in your vdk installation execute command vdk config-help |
| 60 | +db_default_type=SQLITE |
| 61 | +ingest_method_default=SQLITE |
| 62 | +ingest_payload_preprocess_sequence=vdk-gdp-execution-id |
| 63 | +; The name of the micro-dimension that is added to each payload sent for ingestion. |
| 64 | +;gdp_execution_id_micro_dimension_name=vdk_gdp_execution_id |
0 commit comments