Normally, DevLake would execute pipelines on a local machine (we call it local mode), it is sufficient most of the time. However, when you have too many pipelines that need to be executed in parallel, it can be problematic, as the horsepower and throughput of a single machine is limited.
temporal mode was added to support distributed pipeline execution, you can fire up arbitrary workers on multiple machines to carry out those pipelines in parallel to overcome the limitations of a single machine.
But, be careful, many API services like JIRA/GITHUB have a request rate limit mechanism. Collecting data in parallel against the same API service with the same identity would most likely hit such limit.
TEMPORAL_URLpipeline to the temporal server, and one of the Workers pick it up and execute itIMPORTANT: This feature is in early stage of development. Please use with caution
docker-compose -f docker-compose-temporal.yml up -d