Orchestrate
.procfwk

Logo

A cross tenant metadata driven processing framework for Azure Data Factory and Azure Synapse Analytics achieved by coupling orchestration pipelines with a SQL database and a set of Azure Functions.


- Overview
- Contents


View the Project on GitHub mrpaulandrew/procfwk

Email Alerting


« Contents


Email alerting can be delivered within the processing framework and using existing metadata to drive behaviour offering easy control, flexible and granular ways to subscribe to the status of a given worker pipeline outcome.

The following statements have been met in terms of alerting capabilities and design:

Enabling & Disabling Email Alerting

Using email alerting in as part of the processing framework is set by the property UseFrameworkEmailAlerting.

As stated above, the alerting features of the framework are completely optional. You may already have a different way of producing alerts for your pipelines. If so, simply set this property value to ‘0’ and alerting will be disabled for your processing framework.

Adding & Removing Email Recipients

The following helper stored procedure can be used to add and remove email recipients from the metadata database tables.

EXEC [procfwkHelpers].[AddRecipientPipelineAlerts]
	@RecipientName = N'Test User 1',
	@AlertForStatus = 'All';

EXEC [procfwkHelpers].[AddRecipientPipelineAlerts]
	@RecipientName = N'Test User 2',
	@PipelineName = 'Intentional Error',
	@AlertForStatus = 'Failed';

EXEC [procfwkHelpers].[AddRecipientPipelineAlerts]
	@RecipientName = N'Test User 3',
	@PipelineName = 'Wait 1',
	@AlertForStatus = 'Success, Failed, Cancelled';	

Sending Emails

Once the metadata has been returned from the database to the orchestrators infant pipeline emails are sent by the framework using the Send Email Azure Function.

For re-use outside of the processing framework the email sender is also wrapped up as a utilities pipeline that exposes email content as pipeline level parameters.