Said Mancouri
01/20/2023, 5:46 PMdaniel
01/20/2023, 5:48 PMSaid Mancouri
01/20/2023, 5:55 PMdaniel
01/20/2023, 6:00 PMSaid Mancouri
01/20/2023, 6:01 PMdaniel
01/20/2023, 6:08 PMSaid Mancouri
01/20/2023, 6:27 PMdaniel
01/20/2023, 6:31 PMSaid Mancouri
01/20/2023, 6:48 PMdaniel
01/20/2023, 6:54 PMLP
02/16/2023, 6:58 PMk8s_job_op
1. What are those unique benefits of Dagster
we will loose since its just running an arbitrary image, Can you please explain more on this ?
2. How to pass parameter to the k8s_job_op op definition
3. This k8s_job_op
can only be used with K8sRunLauncher not with CeleryK8sRunLauncher?
4. How assets will be written and consumed downstream ?
5. Sharing of config map or environment values from repository image to the k8s_job_op image?
6. Will this graph and job will work ?
@op
def step1():
return True
first_op = k8s_job_op.configured(
{
"image": "busybox",
"command": ["/bin/sh", "-c"],
"args": ["echo HELLO"],
},
name="first_op",
)
@graph
def my_graph():
bool_val = step1()
first_op() how we can pass bool_val to first_op ?
@job
def full_job():
my_graph()
daniel
02/16/2023, 7:09 PMMark Fickett
02/16/2023, 7:10 PMLP
02/16/2023, 7:27 PM