subscriberId
and an optional digestKey
that can be added to control the digestion of the events.
Digest Node
After adding a digest node in the workflow editor, each node that will be below the digest node will be only triggered once in the specified digest interval. You can decide to send messages before adding a digest node and they will be triggered in real-time.Digest Nodes
Email
and SMS
) after the digest node and one node (In-App
) before the digest node in the workflow.
For this workflow, if we trigger 10 events within the digest interval, the In-App
step will be executed 10 times, and Email
and SMS
will be executed only 1 time with digested events data.
Digest Configuration
1. Digest Key
If specified, the digest engine will group the events based on thedigestKey
and subscriberId
, otherwise the digest engine will group the events based only on the subscriberId.
The digest key might come useful when you want a particular subscriber to get events grouped on a custom field. For example when an actor likes the user’s post, you might want to digest based on the post_id
key.
Digest Key
2. Time Interval
The time interval determines how long the digest engine will wait before sending the message once created. You can specify the amount and the unit that best suits your needs. Here, in the image below,5
is the interval amount, and mins
is the interval unit. Interval units can be sec(s)
, min(s)
, hour(s)
, or day(s)
.
Time interval
Digest Strategy Types
The strategy which Novu should use to handle the digest step. More details on available strategies below. Novu allows you to define different digest strategies depending on the actual use-case you are trying to achieve. At this point we allow you to select from 2 strategies:- Regular Strategy
- Back-off Strategy
Regular Strategy
In regular strategy, a digest will always be created for the specified window time. Which means that from the first event trigger, if no active digest exists for this subscriber, one will be created and the user will receive the message only when the digest window time is reached.Back-off Strategy
In the back-off strategy, before creating a digest, Novu will check if a message was sent to the user in the back-off period. If a message was sent, a digest will be created. Otherwise, a message will be sent directly to the user and the digest creation will be skipped. Backoff digest has two intervals,digest interval
and backoff interval
. Here, in the image below, the digest interval
is 20 minutes
, and the backoff interval
is 15 minutes
. In the case of a backoff digest, first, it checks if any event is triggered within the past backoff interval, only then a digest is created for the digest interval. If not, the event is considered non-digest and workflow execution continues to the next step.
Back-off Strategy
Scheduled Digest
Minutes: It digests events for every specified minutes. For example, as per the image below, events will be digested for 20 minutes and after 20 minutes, workflow will carry forward to the next step. It will be repeated after every 20 minutes.Scheduled Digest in Minutes
Scheduled Digest in Hours
Scheduled Digest Daily
Scheduled Digest Weekly
Scheduled Digest Monthly
Writing digest templates
In many cases, you will need to access all the digested events payload in order to show the user all or parts of the events included in this digest. For example: “John and 5 others liked your photo.” As part of the digested template, you will have access to a few properties:Property | Description |
---|---|
step.events | An array of all the events aggregated under this digest. This will be the “payload” object passed to each trigger.event sent in the digest period |
step.total_count | The number of total events in this digest |
step.digest | A boolean flag to indicate if we are in a digest mode right now |
Property | Description |
---|---|
step.events | [ { "name" : "Hello" }, { "name": "World" } ] |
step.total_count | 2 |
step.digest | true |
Total events in digest: 2 This is Hello payload event This is World payload event
Note that if only one matching trigger activates a regular digest during its period, that single item will still come through as a digest with
step.total_count
as 1. Event cancellation from Digest
Any event can be cancelled from the Digest via the event cancellation API. For example, if there are 5 events in digest, a user should be able to cancel the 2nd, 3rd, or 4th event before digest time completion. The cancelled event will not be included in the final digest events array.Digest Guides
Add Digest to Email Notifications
Learn how to add digest functionality to email notifications.
Add Digest to In-App Notifications
Learn how to add digest functionality to a In-App feed within React app.
Frequently Asked Questions
All digest times are in UTC time
If scheduled digest is set for 9:00 AM daily then will the digest be sent at 9:00 AM every day without any event triggered?
If scheduled digest is set for 9:00 AM daily then will the digest be sent at 9:00 AM every day without any event triggered?
If scheduled digest is sent for 9:00 daily, then novu will collect all events triggered between 9:00 AM today till 9:00 AM tomorrow and send the digest at 9:00 AM tomorrow. This process is repeated daily. If there is no any event triggered between 9:00 AM today and 9:00 AM tomorrow, then no digest will be sent.
What is the difference between Regular and Schedules Digest set to 1 Hour?
What is the difference between Regular and Schedules Digest set to 1 Hour?
Both digests are same in this case.