Temporal.io
Temporal is a distributed, scalable, durable, and highly available orchestration engine used to execute asynchronous long-running business logic in a scalable and resilient way.
Read more at official website.
RoadRunner >= 2.0 includes a plugin to execute Temporal workflows and activities. Make sure to write temporal worker.
Activate plugin via config:
rpc:
listen: tcp://127.0.0.1:6001
server:
command: "php worker.php"
temporal:
address: "127.0.0.1:7233"
activities:
num_workers: 10
logs:
level: debug
channels:
temporal.level: errorExample
Integrated workflow server provides the ability to create very complex, long-running activities.
Read more at official website.
Last updated
Was this helpful?