-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
500 errors in CosmicDS #4
Comments
I haven't reproduced the 500 error but I can cause something to go wrong:
I eventually get:
... which obviously isn't what's supposed to be happening. Will investigate. |
OK, this error is due to the cosmicds monkey-patch removed in cosmicds/cosmicds@9545c1c . The message of the commit that added it, cosmicds/cosmicds@d826882, mentions that it's for the Voila baseurl, so if the monkeypatch was active when the code was being run in a plain notebook, that would potentially cause problems. But it would cause what I saw before, not the 500 errors reported above. @nmearl Would this monkeypatch still be necessary when running pywwt KDR in Voila? We should find a way to fix the pywwt implementation to work correctly in as many circumstances as possible. @patudom @Carifio24 I'll play around some more but it would definitely be helpful to get a reproduction script. |
@pkgw So I can sometimes generate a 500 error as follows:
Occasionally the window doesn't appear, with the body of the iframe being just the text In the terminal, I get:
This only happens occasionally. I'll update if I can come up with a better way to reproduce this. |
Thanks, that's helpful. Due to the way the KDR architecture works, it could definitely make sense that a kernel restart needs to be involved to trigger the issue. |
OK, cool, I can reproduce. Do you also get log messages like:
when the problem occurs? |
I do get that message, but at least for me, it pops up together with the 302 -> 404 error. |
For the 302/404 error: after checking out the pre- |
OK, I think I understand what's going on here. Basically, in this setup, when the Voila app is present and the WWT app has been loaded at all, and you restart the kernel, the browser needs to re-fetch the WWT app, and the request goes in before the new kernel has been set up to handle KDR requests. I think that this is due to rules about reparenting iframes. Hypotheses:
So I think that right now, if one makes sure to always clear the output(s) before restarting the kernel, things should work consistently. But, this is all stemming from the fact that the Python kernel is trying to provide the research app through the KDR. If the pywwt server extension is installed, the research app can be made available directly, without requiring any use of the KDR. Then things should Just Work™ much more reliably. The problem right now is that pywwt-in-the-kernel doesn't (and can't) know whether pywwt-in-the-server is available ... but I think I can figure out a way to allow it to detect that. Or I can at least give you an API to manually activate that mode. |
OK, I think WorldWideTelescope/pywwt#331 should give you a way to address this. Once it's released, if you create all of your |
@Carifio24 @nmearl If one of you gets the chance to test this out with the branched version of pywwt, that would make me more confident that it's a sufficient solution. But based on my testing I think it's OK so I'm happy to go ahead and merge and release to make the new API easily accessible. edit: Also it would be nice to devise and merge a fix to remove the requirement for the Voila monkeypatch before I release the next version. |
@pkgw Revisiting this issue on a fresh JupyterHub install reveals that, with using Any insight into why that second This is with using the latest master of PyWWT (aea3f41) and the latest release of Voila. |
Weird! But also not too surprising, since the handling of the baseurl seems like something that is always going to be very finicky. I'll look into it. |
Hmmm. Well, I don't think that pywwt is doing anything wrong here. The code to set up the URL handling is very straightforward and pretty much verbatim out of the Jupyter docs. In an environment like BinderHub we get correct behavior with regards to the So I think there must be an issue in JupyterHub, or maybe somehow the interaction of JupyterHub and Voila, that leads to this problem? Maybe the way that the "hub" functionality works, the user's Jupyter Server should think that it has a Anyway, lacking a JupyterHub install (and not coming up with anything that looks relevant on Google), I can't make much progress on this. @Carifio24 are you able to run JupyterHub and potentially dig into this? |
Yeah, I'd recommend trying to research whether the |
@pkgw So using the latest Voila, the issue has changed. Currently, it's now impossible to use Voila with PyWWT in any context, and I'm quite stumped. As an MVP:
Any ideas would be very helpful. |
@nmearl I should be able to look into this in the next few days. I'll let you know what I find. |
By "the latest voila", do you mean its Git main branch? The 0.4.0aX alpha releases on GitHub? Version 0.3.6 on PyPI? What's the latest version that did work (at least better than the most recent issues)? |
By "latest", I mean 0.3.6 on pypi. The most recent working versions that we actually tested were forked versions of Voila 0.3.1.dev and PyWWT 0.12.0. |
OK, there is going to be some Stuff to work through here. For full WWT functionality in the Voila standalone app we'd need it to support Jupyter Server extensions, which it just doesn't right now. This is issue voila-dashboards/voila#955, with a precursor in issue voila-dashboards/voila#495 — it's been discussed for more than three years at this point. As noted in the current Voila issue, there have been no less than four pull requests aiming to implement this, none yet merged. The most recent is voila-dashboards/voila#592, but the latest activity in any of these was more than a year ago. Presuming that the situation regarding Jupyter Server extensions isn't going to magically change in the near future, it looks like we have to make it so that the WWT widget can work as a pure, old-school nbextension, without relying on any of the server extension functionality. This should be OK so long as any data to be rendered in WWT don't rely on the kernel data relay functionality, which basically means no loading FITS files from pywwt. For the CosmicDS use case I think that won't be a problem. On the other hand, if we have the development bandwidth to contribute the "ExtensionApp" support to Voila, it seems like that would make a lot of people happy and fix a longstanding limitation. |
For reference, Voila isn't even supporting "classic" notebook server extensions, let alone modern Jupyter Server extensions. It currently only supports pure-static "frontend" nbextensions that provide some extra files to the server and have some JS invoked on page load. I think that pywwt can still work within those constraints, but this framework is waaay behind the way that the rest of the Jupyter ecosystem is doing things. |
Reported by @Carifio24 and @patudom.
"primarily when running our app in a Jupyter notebook (as opposed to voila). [W]e get a 500 error, and the window doesn't pop up."
The text was updated successfully, but these errors were encountered: