Simon Frid
02/24/2023, 7:36 AMk8s_job_op
/`execute_k8s_job` for every desired isolated container? Is that a way to create a container per op by default? And is there a convenient way to spin up containers that by default use the same image as the main dagster job?Joe
02/24/2023, 5:36 PMSimon Frid
02/24/2023, 5:47 PM@op
def return_five():
return 5
@op(executor=k8s_executor)
def add_one(arg):
return arg + 1
@job
def do_stuff():
add_one(return_five())
defs = Definitions(
jobs=[do_stuff], executor=multiprocess_executor
)
k8s_executor
, but if there were, then it would essentially, by default be able to inherient the properies of the master processJoe
02/24/2023, 5:52 PM