Lazy compilation can fail when switching "routes" quickly
See original GitHub issueBug report
What is the current behavior?
When using the experimental lazy compilation feature (in Storybook), when you change stories quickly (thus triggering many different lazy compilation jobs), sometimes the HMR for the lazy update can fail in various ways, which can lead to react-refresh
errors or simply the whole app having to reload itself.
If the current behavior is a bug, please provide the steps to reproduce.
It is not entirely predictable, and I have not managed to reproduce outside of Storybook (yet), but this is a very very simple Storybook project and I think it is quite obvious the bug is in Webpack, but I am ready to be corrected 😉
https://github.com/tmeasday/storybook-lazy-compilation-webpack – see the instructions from the repo.
The key point in this reproduction is that when a bunch of lazy updates are created on the server, the browser, which is otherwise doing nothing, will sometimes 404 on a hot-update.json
request:
Note we have seen other (less reproducible) issues around HMR and lazy compilation, that you might see if you play with this repository, including:
- Sometimes the storybook fails to load initially with a HMR error. This definitely seems to be a timing issue with when the auto-launched browser loads relative to the initial entries compilation (it happens maybe 10% of the time or less when I simply run
rm -rf node_modules/.cache/ && yarn storybook
and let the browser launch).
- You can also trigger a bug by changing stories in the sidebar directly quickly while lazy compilation is going on (i.e. start SB, open up, change stories as fast as you can (you can use
option-down
andoption-up
to do this). However I cannot make this happen reliably enough to create a reproduction that would be useful. If you’d like to see what I mean I can likely get a screen recording of it happening at least.
What is the expected behavior?
Lazy compilation should be fairly transparent to the consumer, beyond import()
requests taking a little longer than they otherwise might. If updates come over the wire from compilations triggered by other browsers, they should not fail.
Other relevant information: webpack version: 5.70.0 Node.js version: 14.18.1 Operating System: MacOS Additional tools: Storybook 6.5.0-alpha.48
NOTE
The tool we are using here to trigger the bug is the Storybook test runner, which opens the Storybook up in 4 separate, concurrent playwright instances, each of which will trigger a different dynamic (and thus lazy-compiled) import()
statement.
Issue Analytics
- State:
- Created 2 years ago
- Comments:10 (10 by maintainers)
Top GitHub Comments
@vankop I dug into this a bit and I think I have some more context on what is going wrong here, in case it helps. Apologies in advance for my lack of understanding of how HMR stuff works in detail.
So, just to reiterate, what’s happening in the failing repro above is that we are
import()
-ing three files with a very small delay between each import.Actually the issue can happen even when even importing two files with a delay, but it doesn’t happen every time. It’s interesting to see what happen when it does work vs when it does.
When the lazy compilation works, on the terminal (with all logging turned on), I see:
Notice in particular the two messages
.... is now in use and will be compiled.
that come in around the same time. This message is logged right before thelazyCompilationBackend
callscompiler.watching.invalidate()
.The two modules do not actually get “used” at the same time, there is a 2ms gap between them, but for whatever reason the new compilation triggered by the invalidate hasn’t actually started yet.
On the client, on the HMR socket we see a really straightforward set of messages for a single HMR update and it all works fine:
When it doesn’t work, it is because the compilation starts before the second invalidation:
In this case, notice the “Compilation starting…” message is logged before the “…b.js is now in use and will be compiled.” message. Ultimately this leads to the following messages over the websocket:
(Here’s where I get a bit more hazy) – what this means is that there are actually two “changes” in compilation – we go from an initial hash, to a second hash with
a.js
, to a third hash witha.js
andb.js
. However, the HMR mechanism tries to fetch thehot-update.json
based on the initial hash, after the compilation of the third hash, and it no longer exists in the dev server.I am not sure exactly what the root problem is. I suspect that maybe the lazy compilation backend shouldn’t (or shouldn’t be able to) invalidate the compilation while it is compiling. Perhaps somewhere in the pipeline there should be a queue of invalidations that blocks on previous compilations?
Issue was closed because of inactivity.
If you think this is still a valid issue, please file a new issue with additional information.