Performance Degraded after update to twig 3.14.2

Created on 12 November 2024, 5 months ago

Problem/Motivation

This is probably a twig issue and not Drupal, however, there appears to be a significant page load performance issues (especially on admin entity create/edit forms such as node forms) introduced after upgrading from twig/twig 3.14.0 to 3.14.2. This is more noticeable on hosting platforms such as Acquia.

Steps to reproduce

  • Upgrade to twig to 3.14.2
  • Open a node create or edit form
  • or reload an existing page

4.2.

Proposed resolution

Remaining tasks

User interface changes

Introduced terminology

API changes

Data model changes

Release notes snippet

๐Ÿ› Bug report
Status

Active

Version

10.3 โœจ

Component

render system

Created by

๐Ÿ‡บ๐Ÿ‡ธUnited States themodularlab

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

Merge Requests

Comments & Activities

  • Issue created by @themodularlab
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States gravelpot

    @themodularlab, could you elaborate on "This is more noticeable on hosting platforms such as Acquia?"

    We are hosted on Pantheon, and right now our limited testing doesn't show any noticeable difference on loading the node edit form on the same site running Twig 3.14.0 and 3.14.2.

    Can you describe the testing you've done to indicate that it is _more_ noticeable on Acquia, to see if we can replicate on Pantheon?
    Is there something specific you suspect about Acquia's architecture versus other platforms where you haven't seen this performance hit?

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States themodularlab

    @gravelpot

    We haven't done any official performance testing but rather this is something observed by myself and my clients. Prior to updating to 3.14.2, page load times were pretty normal. After 3.14.2, our page load for a node edit form can be well over 30 seconds. We are building a new site so there is very little content at this point. As a test, I downgraded back to 3.14.0 and page load times returned to normal.

    There may be some server settings in place on our Acquia env that could be partially contributing to this but also the performance and page load times return to normal when downgrading back to 3.14.0.

    Based on this part of the 3.14.2 patch, it looks like they're recursing through everything even before trying to render it?

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States themodularlab
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States themodularlab
  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand ericgsmith

    I have not noticed the degradation other than locally. When xdebug is enabled it's unusable in places, pages like the permission page fail to load (timeout). On environments without xdebug I didn't notice a difference but have not profiled or measured it.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States gravelpot

    @themodularlab

    I guess what I was really getting at was this -- since you said that it seems "more noticeable" on Acquia, that implied to me that there were other hosting environments where it seemed less noticeable to you. Is that actually the case?

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States themodularlab

    @gravelpot,

    I have only personally observed on a local env and via Acquia. I have seen others reporting similar issues but unsure of what hosting they are using.

  • Indeed the next step is to profile โ†’ to find the exact cause.

  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia larowlan ๐Ÿ‡ฆ๐Ÿ‡บ๐Ÿ.au GMT+10

    So the difference for twig between these versions is it now loops over any array and checks if any objects inside it are safe to convert to string

    But in Drupal we don't do any object specific 'is safe to convert to string' checks because our sandbox policy permits anything that has a __toString method

    We can't override the method in the sandbox extension because it's final, so I think we need to propose a PR to symfony for an escape hatch

  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand ericgsmith

    I checked the logs locally - loading the permissions page on a project with several contribute modules and 8 roles (and with env var XDBEUG_MODE: off) does show a big difference in response time.

    First run on twig 3.14.0

    After a drush cr:

    "duration":4.943, "cpu_user":42.08,"cpu_system":5.26,"cpu_total":47.34,"memory_peak":135180288

    Subsequent load with a warmed cache:

    "duration":1.550,"cpu_user":86.44,"cpu_system":5.81,"cpu_total":92.25,"memory_peak":107917312

    After updating to twig 3.14.2

    After a drush cr:

    "duration":14.603,"cpu_user":83.95,"cpu_system":1.78,"cpu_total":85.73,"memory_peak":135180288

    Subsequent load with a warmed cache:

    "duration":11.857,"cpu_user":97.83,"cpu_system":1.18,"cpu_total":99.01,"memory_peak":107917312

  • ๐Ÿ‡จ๐Ÿ‡ฆCanada Charlie ChX Negyesi ๐ŸCanada

    We can't override the method in the sandbox extension because it's final,

    Y'all seriously need to consider adding the composer patches plugin and start patching out the final brainrot from upstream.

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom catch

    10 second+ response times up from 1+ second is critical. Do we know if there's already an upstream issue to track this?

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom longwave UK

    I don't see anything at https://github.com/twigphp/Twig/issues, we would probably need to create sample code that demonstrates the issue.

  • ๐Ÿ‡ฉ๐Ÿ‡ชGermany mkalkbrenner ๐Ÿ‡ฉ๐Ÿ‡ช

    We have some big and complex entity forms in our backend systems. Since the lastest security updates, the loading time of a very important form increased from 1.5 seconds to more than 50 seconds. Way more than factor 10.
    Running composer require twig/twig:"3.14.0 as 3.14.2" reduced the loading time 1.5 seconds again!

  • ๐Ÿ‡ช๐Ÿ‡ธSpain fjgarlin

    From https://github.com/twigphp/Twig/compare/v3.14.0..v3.14.2

    I guess the method ensureToStringAllowedForArray might be the culprit (it's a loop and it's recursive) as some Drupal objects are definitely quite big. They tried to fix infinite recursion in 3.14.2, but the fact that objects are traversed might cause the performance issue.

  • Merge request !10177Possible fix โ†’ (Closed) created by larowlan
  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia larowlan ๐Ÿ‡ฆ๐Ÿ‡บ๐Ÿ.au GMT+10

    I've opened an MR that shows a possible approach. When we're using our default sandbox policy, we don't need to check to string on any objects, they're all allowed, so can sidestep it altogether.

    Haven't tested this and haven't linted either, but see if it helps

  • Pipeline finished with Failed
    5 months ago
    Total: 162s
    #337923
  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia larowlan ๐Ÿ‡ฆ๐Ÿ‡บ๐Ÿ.au GMT+10

    Code in the MR is working, site looks as normal and \Twig\Extension\SandboxExtension::ensureToStringAllowed is no longer running. Couple of random fails that I've rerun

  • Pipeline finished with Success
    5 months ago
    Total: 1077s
    #337943
  • Pipeline finished with Failed
    5 months ago
    Total: 823s
    #337958
  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand ericgsmith

    ๐Ÿ™Œ ๐Ÿ™Œ ๐Ÿ™Œ

    Quick test with same project I mentioned in #12 - using twig 3.14.2 and the patch from MR10177 at commit 67bbb312 which applied cleanly to 10.3.6

    After drush cr

    "duration":4.683,"cpu_user":47.20,"cpu_system":5.98,"cpu_total":53.18,"memory_peak":137277440

    (original 3.14.0 duration was 4.943 so back to normal)

    Subsequent load with a warmed cache:

    "duration":1.559,"cpu_user":86.62,"cpu_system":7.70,"cpu_total":94.32,"memory_peak":107917312

    (original 3.14.0 duration was 1.550 so back to normal)

    Only did the comparison a couple of times with slight variance in times but certainly appears to resolve the performance issue with no noticeable side effects.

    Have not done a thorough code review but good to me - thanks Lee!

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States themodularlab

    Applying the patch from MR10177 on 10.3.8 is also showing improvements for me. I have only tested locally but will be pushing to a dev environment soon so I can report back later. But so far so good!

  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia mstrelan

    I suspect the fails in the pipeline are random fails, but I'm not seeing the button to retry.

  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia larowlan ๐Ÿ‡ฆ๐Ÿ‡บ๐Ÿ.au GMT+10

    Rerunning the fails, the last build was green, so confident they're random

  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia larowlan ๐Ÿ‡ฆ๐Ÿ‡บ๐Ÿ.au GMT+10

    MR is green

  • ๐Ÿ‡ซ๐Ÿ‡ฎFinland tuutti

    We've seen a degraded performance (~20%) on our testing environment since Twig 3.14.2 update.

    I applied this patch and the performance graphs went back to similar levels as before.

    Without patch:

    /node/{node}/edit took 2.04sec on average, template.render took 482-720ms
    /admin/people/permissions took 9.1sec on average, template.render took 8190-8280ms

    โ†’

    With patch:

    /node/{node}/edit took 982ms on average, template.render took 121-330ms
    /admin/people/permissions took 2.42sec on average, template.render took 1402-1503ms

    โ†’

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom catch

    This looks very nifty. I left one small comment on the MR.

  • ๐Ÿ‡ซ๐Ÿ‡ทFrance andypost
  • ๐Ÿ‡ฉ๐Ÿ‡ชGermany chr.fritsch ๐Ÿ‡ฉ๐Ÿ‡ช๐Ÿ‡ช๐Ÿ‡บ๐ŸŒ
  • ๐Ÿ‡ฉ๐Ÿ‡ชGermany chr.fritsch ๐Ÿ‡ฉ๐Ÿ‡ช๐Ÿ‡ช๐Ÿ‡บ๐ŸŒ
  • First commit to issue fork.
  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom alexpott ๐Ÿ‡ช๐Ÿ‡บ๐ŸŒ

    I've addressed the review feedback and created the follow-up ๐Ÿ“Œ Simplify RemoveCheckToStringNodeVisitor when Twig 4.0 is released Active

  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia sagarmohite0031

    Hello,
    Tested and verified with drupal 11.
    MR applied successfully its working as expected.
    Check attachments

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States rhovland Oregon

    Can confirm this fixes the issue in Drupal 10.3.9. While I wasn't seeing any performance impacts in most areas of my site the permissions page was completely broken and hit the server timeout whenever I tried to load it. Applying this MR as a patch restores the performance.

  • ๐Ÿ‡ณ๐Ÿ‡ฑNetherlands timohuisman Leiden, Netherlands

    This patch contains a snapshot of MR10177 so it can be safely used with composer-patches.

  • ๐Ÿ‡ณ๐Ÿ‡ฑNetherlands spokje

    - Code changes makes sense (and are quite ingenious IMHO)
    - Seems to work according to the "profiling" comments in here.

    Would love to RTBC, the only thing keeping me from doing so is the last commit, which introduced the setting twig_sandbox_allowed_methods to overrule the predefined list of allowed methods.

    I think if we introduce a new setting, a commented example should be in web/sites/default/default.settings.php with some comments about what it does.

    Then again: n=1, your mileage/opinion may vary, yada yada

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom longwave UK

    @spokje this was already a "hidden" setting, just it's used in two places instead of one now. I think documenting it could be done in a followup.

  • ๐Ÿ‡ณ๐Ÿ‡ฑNetherlands spokje

    Thanks @longwave, pulling the trigger

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom rossb89 Bristol

    Just another update in regards to performance here (without patch!)

    Testing out the 10.3.9 update which includes the 3.14.2 update locally on ddev with a m4 mac mini, loading up the permissions page on a project with a relatively large amount of contrib modules + permissions took about 6 seconds.

    The site is hosted on Pantheon and on pantheon, a dev environment before the update was applied was also taking about 6 seconds to load the permissions page.

    On a multidev environment with the 10.3.9 update including the twig update, the permissions page now takes 30+ seconds to load.

    This wasn't immediately obvious that there was an actual performance issue here (locally) as ddev &/ m4 chip was masking it... but it's very much an issue with the site hosted in Pantheon :)

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium herved

    Tested this on our project at /admin/people/permissions, using network tab:

    twig v3.14.0:
    - after cr: 3.29s
    - next load: 2.58s
    twig v3.15.0:
    - after cr: 8.39s
    - next load: 7.60s
    twig v3.15.0 + patch from https://www.drupal.org/i/3487031:
    - after cr: 3.27s
    - next load: 2.79s
    

    In practice, I did not notice any performance degradation at first. Probably because the form has to be very complex, and the browser itself (UI performance) has to keep up anyway for example for this permission page. But there seems to be quite an impact indeed on a pure PHP performance. This may also behave worse on different environments as others stated.

    I also ran the same tests with xhprof and the results are telling, it goes from 3s to 46s to load the page, with a very high wall time on Twig\Extension\SandboxExtension::ensureToStringAllowed.
    So +1, looks like it fixes it, thank you!

    • catch โ†’ committed a362bbcd on 10.3.x
      Issue #3487031 by larowlan, alexpott, themodularlab, ericgsmith,...
    • catch โ†’ committed d41a8d6d on 10.4.x
      Issue #3487031 by larowlan, alexpott, themodularlab, ericgsmith,...
    • catch โ†’ committed 451b804d on 10.5.x
      Issue #3487031 by larowlan, alexpott, themodularlab, ericgsmith,...
    • catch โ†’ committed 52a4b2c7 on 11.0.x
      Issue #3487031 by larowlan, alexpott, themodularlab, ericgsmith,...
    • catch โ†’ committed f5b5322a on 11.1.x
      Issue #3487031 by larowlan, alexpott, themodularlab, ericgsmith,...
    • catch โ†’ committed 457b1dfb on 11.x
      Issue #3487031 by larowlan, alexpott, themodularlab, ericgsmith,...
  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom catch

    Looks good. Committed/pushed to 11.x and cherry-picked back through to 10.3.x, thanks!

  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia _pratik_ Banglore

    The commit in #42 would work for 10.2.10 also ?

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom longwave UK

    Please try the attached patch if you have upgraded Twig in 3.14.2 and are seeing the performance regression.

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom longwave UK

    We have released Drupal 11.0.9, 10.3.10 and 10.2.12 today which includes this fix, and therefore avoids having to make the choice between staying on an insecure version of Twig or suffering from performance issues.

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom steven jones

    @longwave at al thanks very much! We appreciate the effort to do an extra release so we can have our sites both secure and speedy.

  • ๐Ÿ‡ช๐Ÿ‡ธSpain roger.bertran Barcelona

    We are using the Drupal 10.3.10 and the performance issues are still happening, we are also using Entity browser and after adding 4 or 5 paragraphs it freezes and makes impossible to work.

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom alexpott ๐Ÿ‡ช๐Ÿ‡บ๐ŸŒ

    @roger.bertran have you confirmed that downgrading twig to 3.14.0 makes the performance issue go away? Have you confirmed that your issue is caused by this?

  • ๐Ÿ‡ช๐Ÿ‡ธSpain roger.bertran Barcelona

    @alexpott after downgrading to twig 3.14.0 the performance issue remains. We've seen that the performance starts to decrease when we work with the entity browser or autocomplete widgets, if we don't interact with these widgets we have no trouble.

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom alexpott ๐Ÿ‡ช๐Ÿ‡บ๐ŸŒ

    @roger.bertran then your issue is unrelated to this specific issue. You need to open a new issue with steps to reproduce and ideally some profiling of your codebase so you can determine where the performance problem is coming from.

  • ๐Ÿ‡ช๐Ÿ‡ธSpain roger.bertran Barcelona

    @alexpott ok, my bad, thanks for your support!

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024