batch_operation
Execute multiple operations concurrently with configurable concurrency, timeout, and error handling. Ideal for batch-processing tasks efficiently while managing errors and caching results.
Instructions
Process multiple operations with configurable concurrency and error handling
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cache_ttl_seconds | No | TTL for cached results | |
concurrency | No | Maximum number of concurrent operations | |
continue_on_error | No | Continue processing even if some operations fail | |
operations | Yes | Array of operations to process | |
timeout_ms | No | Timeout per operation in milliseconds | |
use_cache | No | Cache successful results |