-
Notifications
You must be signed in to change notification settings - Fork 638
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
Inconsistent Results from Asset Indexing (w/ Redis sessions) #3450
Comments
@andris-sevcenko this is definitely still an issue, please reopen. The Screencast of web utility/CLI: https://drive.google.com/file/d/1p-neAYKnaPrS7X6Ugz24k2-Grm3d0Drz/view Related: #2876 |
@timkelty any chance of getting the CP access to the site? [email protected], as usual! |
Thanks @andris-sevcenko For anyone else finding this thread, having a centralized |
You will end up with certain items not indexed, and the message at the end prompting you for missing files that are actually there.
maxConcurrentActions: 3
in the js is the culprit: https://github.com/craftcms/cms/blob/develop/src/web/assets/assetindexes/dist/AssetIndexesUtility.js#L191Because of the way the indexer steps through the
assetindexdata
, it doesn't really jive with any sort of concurrency.This may only be apparent when you are running nginx+php-fpm, as request are handled in a pool, so there is no guarantee of synchronous execution.
A good reason to bump #2980 to the top of the 3.x list if you ask me :)
The text was updated successfully, but these errors were encountered: