-
Notifications
You must be signed in to change notification settings - Fork 130
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
Async Programming Model? #270
Comments
Is this related to #60? |
#60 is specifically for the notebook-http personality, where the executed code comes from a notebook configured on the server. This is still a possible extension and not existing functionality. In websocket-http mode, we have websocket connections, but the code is sent by the client. That is not what you asked for above. |
@sherl0cks: #60 is dormant, nobody's working on it. If you've got an idea how to implement what you need, go ahead and create a PR. |
I'm closing this in favor of #60. |
This a question.
tl;dr I'm looking for an asynchronous model for remotely invoking the execution of a cell in a notebook which is deployed via the gateway,
I've run through the docs and examples. For short lived executions (e.g. < 10 seconds), I think the existing http personality works great out of the box. But I'm confused on how I should design for long running tasks e.g. > 10 seconds, where you would not want the client to block for an indefinite period if time. My reading of the websocket personality is that clients submit code to execute in the kernel, rather than invoking the execution of a cell in the notebook, like with the http personality.
The text was updated successfully, but these errors were encountered: