parallel_execute
Run multiple bash commands simultaneously across a cluster, distributing tasks based on node load to speed up testing, builds, and batch processing.
Instructions
Execute multiple commands in parallel across cluster.
Distributes commands across available nodes for maximum parallelism. Use for:
Running test suites across multiple files
Parallel builds
Batch processing
Load testing
Commands are automatically distributed based on node availability and load.
Parameters:
commands (required): List of bash commands to execute in parallel
Returns list of results, one per command, with execution details.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| commands | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |