batch_operation
Process multiple operations concurrently with configurable concurrency, timeout, and error handling. Continue on failure or stop as needed, and optionally cache successful results.
Instructions
Process multiple operations with configurable concurrency and error handling
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| operations | Yes | Array of operations to process | |
| concurrency | No | Maximum number of concurrent operations | |
| timeout_ms | No | Timeout per operation in milliseconds | |
| continue_on_error | No | Continue processing even if some operations fail | |
| use_cache | No | Cache successful results | |
| cache_ttl_seconds | No | TTL for cached results |