-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Making task execution in interactive non-blocking #303
Comments
The problem is that sos-notebook has a single execution thread for cell execution, so the task-execution process has to stop before users can run the next cell. The solution would be moving the burden of checking task status to the controller so that the controller can continue to check the status and update notebook even sos notebook is working on other cells. |
We need to rearrange the task execution logics. Right now,
We need to move the job from workflow executor to controller so that workflow executor can terminate , basically,
|
Right now when we run
without
the cell will block, making the checking of job status not possible. It makes sense to make cells non-blocking if all tasks have been submitted.
The text was updated successfully, but these errors were encountered: