temporal
This module provides integration with Temporal.io, a platform for managing very long-running background processes when Drupal’s Queue and Batch APIs are not sufficient.
The fundamental unit in Temporal is an activity. Examples include generating a report from a single entity or indexing an entity. A workflow is a long-running process that tells Temporal which activities to run.
Temporal stores the input and output of activities in a durable event log. Because of this, if a workflow stops for any reason, it can resume exactly where it left off without rerunning completed activities. Failed activities can also be retried automatically as needed. Workflows can be started on demand or scheduled.
Historical note: the 8.x-1.x branch contains a completely different module for tracking changes in fields on nodes and users developed by codexmas with funding from Acquia.