I have a long running dataframe.Collect(ctx) operation and if cancel the context the job continues to run.
Is there some way that I can programatically kill the job? I see that I can get a PlanID from the dataframe, but I don't see a way to do anything with it.
I have a long running
dataframe.Collect(ctx)operation and if cancel the context the job continues to run.Is there some way that I can programatically kill the job? I see that I can get a
PlanIDfrom the dataframe, but I don't see a way to do anything with it.