Sample Workflow Queue
The Workflow Queue tab provides a view of processes that have upstream dependencies they are waiting on. All processes in this list require another process to finish successfully, or the blocker manually removed by a user to be released into the Processing Queue. It provides information regarding sources such as their queue id, when the workflow process was created, name of the source, input id, type of operation, wait type and wait details.
Detailed breakdown of each header:
- Queue ID: A globally unique key identifier for the queued item in workflow queue
- Time Created: When the workflow item was queued
- Source ID: ID of source waiting in workflow queue
- Source: Name of source waiting in workflow queue
- Input ID: Input ID waiting on workflow queue item to be released
- Operation Type: Each of the following operation types represent a different stage of the data processing workflow. To see a full list of all available operation types - please execute the following query.
--Query to get all operation type names
select process_name from meta.process_type;
- Wait Type: Each wait type represents the item state in the workflow queue. To see a full list of all available wait types - please execute the following query.
--Query to get all wait type names
SELECT wait_type FROM meta.wait_type;
--Query to get all wait type names & their descriptions
SELECT wait_type, description from meta.wait_type;
- Wait Details: Provides additional information about item state through unique identifier.
Updated