Batch start workflows

We need to kick off a lot of workflows (~1000) concurrently. Is there a batch start workflow API for temporal?

We don’t have direct support for batch jobs yet. In the meantime, you can have a parent workflow that starts a thousand children and waits for their completion. If you need much more than 1000 children you can create a tree of workflows. A single parent starting 1k children each starting 1k children gives 1m workflows.

got it, thanks!