Get Started
Many Parallel Jobs
Enqueue and execute multiple jobs in parallel.
Konduktor lets you submit multiple jobs which are enqueued until capacity is available for the job. This is useful for performing batch jobs, hyperparameter sweeps, or data processing.
Write a single YAML for one job
Consider the following use case where we set which shard of data we want to perform work on via an environment variable. For example, our job might be defined as
We can launch this job and set SHARD_IDX=0
environment variable without attaching to the log or input stream via
To enqueue, multiple shards jobs, we can use a bash
loop.
and to check the status of your jobs, use konduktor status
.