Pipeline management software for clusters.
Overall
score
67%
Build a computational workflow that processes data records using a temporary database service. The workflow should:
The database service should provide connection information (host and port) to jobs that need to access it. Jobs should be able to start the service, use it during their execution, and have it automatically cleaned up when no longer needed.
@generates
def run_database_workflow(records, job_store_location):
"""
Execute a workflow that processes records using a database service.
Args:
records: List of data records to process
job_store_location: Path for workflow persistence
Returns:
Aggregated results from processing all records
"""
passProvides workflow management and service job capabilities for managing long-running processes like databases.
Install with Tessl CLI
npx tessl i tessl/pypi-toildocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10