Chain
A chain is a set of processes with its own properties like scheduling, notifications, dependencies, outputs, etc.
This is an example of a basic chain with one process:
Runnerty has a default unattended point of view for chains and processes managment. This means that unless you specify a modification propetie for a process or chain it will try to run the next process or the chain until the end. More details below in the action on failed chain section here.
Identification
A chain has two identification fields:
id
-> Which identifies the chain. With this identifier Runnerty will provide a global value CHAIN_ID that can be used in the whole chain. To learn more about global values have a look here.
name
-> It is a description of the chain. Runnerty will also provide the global value CHAIN_NAME
Execution (Triggers)
A chain can be fired by using triggers. There is a bunch of different triggers, have a look at them and how to use them here
Custom values
It is possible to define and overwrite global values at chain level, setting a custom_values attribute:
Dependencies
It is possible to define dependencies with other chains or other chains processes. This means than a chain with dependencies will never execute before their dependencies are resolved.
You can define these dependency restrictions through the depends_chains property, like in the sample below:
The chain of the example will not be executed until the chain with id CHAIN_ONE is finished. It is also possible to configure a set of dependencies to one chain's process or more:
Notifications
With the notifications property, Runnerty can be set up to emit notifications during the chain status flow, fired up by the following callbacks:
- on_start
- on_fail
- on_end
- on_retry
- on_queue
In these notifications we could notify anything using notifiers plugins.
The following example shows how to set up notifications for the different states of the chain through Telegram Notifier, publishing messages to a previously defined Telegram's chatroom:
note
Learn more about notifiers and how to configure them here.
Processes
In the processes array property we can defined all the processes that are going to be part of the chain.
Learn more about processes and how to configure them here.
Actions for a chain when a process fails
It is possible to define what action (abort or retry) to perform at the chain level in case a process fails. The number of retries
and delay (retry_delay
) settings will be set at the chain level.
Abort the chain if the process fails (this action ends the chain's flow so no other processes will be executed). It is not necessary to indicate, is the default value:
Also you can skip this option (chain_action_on_fail
) so though any process failed, the chain will continue while the dependencies between processes are met (by using depends_process
propertie).
Also, it is possible to indicate in the process that the execution continues even though an error occurs:
This will cause the process error to be reported but the string continue and end without error. Additionally, it could force the chain to end with an error indicating that the process error is taken into account for the final state of the chain:
Delay property understands the following strings:
x milliseconds
x millisecond
x msecs
x msec
x ms
x seconds
x second
x secs
x sec
x s
x minutes
x minute
x mins
x min
x m
x hours
x hour
x hrs
x hr
x h
x days
x day
x d
x weeks
x week
x wks
x wk
x w
x years
x year
x yrs
x yr
x y
The space after the number is optional so you can also write 1ms
instead of 1 ms
. In addition, it also accepts numbers and strings which only includes numbers and we assume that these are always in milliseconds.
From: [Millisecond module](https://github.com/unshiftio/millisecond)
Iterable chains
An iterale chain is a chain that is going to be executed for each object in the array previously returned by another process.
For example, if we have a process which returns one objects array we can execute an iterable chain for each object in the array.
In the following example we are going to send an email to every user of the USERS table.
First, we have the chain get-users-email.json
with a process which selects all the users's email:
Then, we assign the returned resultset by the MySQL SELECT query as an object array with the PROCESS_EXEC_DATA_OUTPUT value, as part of the property output_iterable. This way we are announcing this process will return an iterable output.
Now we are going to define the iterable chain "send-mail-to-user"
Here we can see some properties that the chain needs to iterate. First of all we have the dependencies on the depends_chains property.
important
An iterable chain must depends on the process from the "parent chain" whom it iterates.
With the iterable property we can choose if we want to iterate over in series or parallel:
With the input property we can assign the properties of each object returned by de mother's process array.
Now, we can use these values anywhere in our iterable chain:
In the example :email
will be replaced with the user's email and :name will be replaced with the user's name.
Default properties for processes
It is possible to define a default value for all the processes in a chain of notifications
,output
and chain_action_on_fail
, depending on the defaults_processes
property of a chain.
For example:
It is also possible to overwrite the default values (defaults_processes
) in each of the processes.
For example, in this case the default value of the on_start
event of notifications
is overwritten in the PROCESS_SAMPLE
process, the rest of the notifications
values will be those defined by default: