Performance degradation due to excessive accumulation of invoke_paths in Tome static export (tome_static_cron).

Created on 22 February 2025, about 1 month ago

Problem/Motivation

I'm using tome_static_cron on a site with ~60,000 paths. When I process the scheduled queue items, I see the performance issues. The exporting is slowing down after ~1 hour significantly.

The Tome Static Cron export process has a bottleneck due to excessive accumulation of invoke_paths in the key_value table. When processing scheduled paths, the `requestPath` method not only exports the required path but also discovers additional asset files (e.g., CSS, JS) and continuously adds them to the invoke_paths list. Over time, this list grows too large, leading to performance degradation when we merge new invoke_paths with the existing ones and set it back into the key_value table(option name= tome_static_cron.invoke_paths).

The code related to the described problem is placed in the ./tome_static/modules/tome_static_cron/src/Plugin/QueueWorker/TomeStaticQueueWorker.php file.

This query shows that invoke_paths become excessively large and take more than a second to process for each execution:

SELECT * FROM key_value WHERE name = 'tome_static_cron.invoke_paths';

The scheduling code in `tome/modules/tome_static/modules/tome_static_cron/tome_static_cron.module` indicates that `process_invoke_paths` is the final step of the export process. This suggests that the bottleneck lies in the handling of invoke_paths, and a solution is needed to prevent continuous accumulation and inefficient processing.

I think that this solution is a kind of workaround to the existing way of storing and processing the queue items.

Probably, the better solution could be to store `invoke_paths` in a separate database table and avoid exporting the same assets multiple times.
But this solution will require more changes and I would want to delegate it to the module maintainers or someone who has time.

Steps to reproduce

- Enable Tome static export with scheduled path processing.
- Run an export process that includes dynamically discovered assets.
- Observe the increasing size of tome_static_cron.invoke_paths in the key_value table.
- Note the degradation in performance as the query time increases.

Proposed resolution

Modify the TomeStaticQueueWorker to process invoke_paths more efficiently:

  • Introduce a mechanism to periodically process invoke_paths instead of accumulating them indefinitely.
  • Implement a limit or expiration strategy for stored invoke_paths.
  • Optimize the query handling in process_invoke_paths to improve performance.
  • Ensure that assets are processed but do not unnecessarily accumulate in the key-value store.

Remaining tasks

  • Test performance improvements with the patch applied.
  • Verify that all required assets are still exported correctly.

User interface changes

No changes are expected.

API changes

No changes are expected.

Data model changes

Potentially adjusting how invoke_paths are stored and processed in the key_value table.

📌 Task
Status

Active

Version

1.0

Component

Tome Static

Created by

🇩🇪Germany kufliievskyi Germany, Bayern

Live updates comments and jobs are added and updated live.
  • Performance

    It affects performance. It is often combined with the Needs profiling tag.

Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024