Use guzzle async support, and remove batch, for fetching update data

Created on 2 October 2023, 12 months ago
Updated 19 October 2023, 12 months ago

Problem/Motivation

The update module has to individually fetch project XML for each project installed on a site. This can reach 300+ http requests which is a lot.

However, guzzle supports async support and promises, so it might be possible to rewrite this using Fibers and guzzle promises. As long as we don't hit memory issues, we might be able to then skip the batch support and do it directly.

Steps to reproduce

Proposed resolution

There are two components to getting update data for an extension:

1. Fetch the project XML
2. Parse the project XML.

Ideally we'd do something like this:

1. Have the list of projects to fetch update data for.
2. Issue up to x number of async requests for the project xml.
3. As soon as one request comes back, issue another x async http requests, process the html for any that have come back, rinse and repeat until no more requests or XML to process.

Need some sort of absolute cap on outgoing http requests too.

Had a look at doing this 'quickly' but found the http retry logic which makes it a bit more complicated to implement, so just opening the issue for now.

Remaining tasks

User interface changes

API changes

Data model changes

Release notes snippet

πŸ“Œ Task
Status

Active

Version

11.0 πŸ”₯

Component
UpdateΒ  β†’

Last updated 5 days ago

  • Maintained by
  • πŸ‡ΊπŸ‡ΈUnited States @tedbow
  • πŸ‡ΊπŸ‡ΈUnited States @dww
Created by

πŸ‡¬πŸ‡§United Kingdom catch

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @catch
  • πŸ‡ΊπŸ‡ΈUnited States dww

    This is promising! There's so much cruft and complication (and therefore, bugs) in how Update Manager interacts with the batch world. It'd be lovely to be able to ditch all that for something more robust, if possible.

Production build 0.71.5 2024