-
Notifications
You must be signed in to change notification settings - Fork 31
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
Experiment with websocket-star in js-ipfs fallback #63
Comments
Thanks for opening this @lidel. This could work, but only when using |
Yes, this is only for Fallback will used by "civilians" without local daemon We need to be extra careful and mindful about this. |
There's a scenario about this that makes me a bit uncomfortable: if we do make it work well, it will be great for the entry user. Then if we're lucky, maybe he'll want to learn more about IPFS and even install it and run a local daemon. After that, the speed of the fetches will decrease significantly. What I'm saying is that the user will be put off after trying the real IPFS experience OR feel a bit cheated after figuring out how the app is working. We could make it work only the Does this makes sense? |
I understand the concern, but I feel we don't really have much choice here: if initial experience is bad, people won't bother with looking at running daemon or the app for the second time. Note that people who decide to run local daemon will have some sort of "IPFS enthusiasm" motivating them to do so, and will most likely be willing to forgive more that regular web users. Also, if the discovery via local daemon is unacceptably slower then it needs to be addressed upstream (and there is an ongoing/planned work to address dialing/discovery performance in libp2p/go-ipfs) and it is actually better if we notice it during dogfooding. |
The question seems to boil down to:
I think we're haggling over where we put the potential dissapointment. Unacceptably slow is unacceptable. If we stick with option one, we will likely put people off at the first step. If we go with option 2, it should leave us with a share service that is usable, and we have an app that is worth talking about. It would be on us to do a good job of explaining the trade-offs that are being made and why. If we frame it around "we plan to make this service even more decentralised with every new release of js-ipfs" kind of thing, then we can set ourselves up for an exciting announcement for the day when we can remove the ws* discovery services without harming the perfomance. And we can talk about what is the minium viable set up for an IPFS based service today and update that info as new features land. Other things in favour of option 2.
@fsdiogo makes a good point that it's going to be awkward if the app is slower when we use a local IPFS node. I'm starting to think that calling out to a local IPFS node for services like this might be more problematic than valuable. Particulaly while users have to add additional CORS config per site to do so, which is awkward, and arguably sets a bad precedent. Do we really want users to set CORS exeptions for every site they visit? I think we need to be pushing people to IPFS Companion and stop using js-ipfs-http-client directly in web apps. @lidel It'd be rad if we had a way to signal to Companion that a site had ws-* discovery infra in place that it could take advantage of. Difficult right now perhaps, but rad. |
+1 for 2 |
I've played with some failure scenarios and current error handling around js-ipfs fails to start if DNS lookup for ws-star fails: It fails if port is closed/server is down: So my position is that it is not safe to enable it as it is now.
|
The About the Maybe we can use just one (the most reliable?) because the next release of |
FYSA @mkg20001 works on js-libp2p-stardust which aims to replace js-libp2p-websocket-star (see discussion in libp2p/js-libp2p-websocket-star#70) and fix most of the pain points before auto discovery via rendezvous lands. |
PSA: JS IPFS 0.34.2 uses |
js-ipfs v0.32.2 solved issue mentioned in ipfs-shipyard/ipfs-share-files#63 (comment) by switching to `libp2p-websocket-star-multi` (details in ipfs/js-ipfs#1793).
Superseded by #58 (comment) |
This may be a low hanging fruit and a safer way to improve performance than #58 until we get relay autodiscovery enabled in the future.
@
ws-star
ClientREADME at js-libp2p-websocket-star states that:
It is enabled by passing it in js-ipfs config like this:
AFAIK peerpad hosts uses own star server(s) (see below), we probably could do the same and use them in Companion as well (ipfs/ipfs-companion#457).
Bonus: support multiple stars?
libp2p/js-libp2p-websocket-star#61:
@
ws-star
ServerIIUC this is something we get out of the box right now because @victorb mentioned that:
Relevant change libp2p/js-libp2p-websocket-star-rendezvous#27 (comment):
The text was updated successfully, but these errors were encountered: