Recursion takes too much memory compared to earlier versions (1.4.6 or earlier)

Created on 7 March 2025, 29 days ago

Problem/Motivation

Received the following errors when executing on Acquia

[07-Mar-2025 08:08:31 Australia/Brisbane] PHP Fatal error:  Aborting! The New Relic imposed maximum PHP function nesting level of '5000' has been reached. This limit is to prevent the PHP execution from catastrophically running out of C-stack frames. If you think this limit is too small, adjust the value of the setting newrelic.special.max_nesting_level in the newrelic.ini file, and restart php. Please file a ticket at https://support.newrelic.com if you need further assistance.  in /mnt/www/html/app/docroot/core/lib/Drupal/Component/DependencyInjection/Container.php on line 343 request_id="v-859eac34-fad7-11ef-ab17-a7262ac72245"

[07-Mar-2025 09:40:47 Australia/Brisbane] PHP Fatal error:  Allowed memory size of 135266304 bytes exhausted (tried to allocate 12288 bytes) in /mnt/www/html/app/docroot/core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php on line 273 request_id="v-6d8c349c-fae4-11ef-a0b9-ef69445b1a82"

Steps to reproduce

Export nide with many dependencies.

Proposed resolution

Possible solutions

  • Offload recursion early
  • set limits in config
  • provide better debugging e.g. list of all node to be exported
πŸ› Bug report
Status

Active

Version

1.4

Component

Code

Created by

πŸ‡¦πŸ‡ΊAustralia VladimirAus Brisbane, Australia

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

Merge Requests

Comments & Activities

  • Issue created by @VladimirAus
  • πŸ‡¦πŸ‡ΊAustralia VladimirAus Brisbane, Australia

    Digging further, the module collects same entity multiple times so looks like it is cyclic until it runs out of memory or times out.

     array:2 [β–Ό
      0 => "taxonomy_term"
      1 => "1336"
    ]
     array:2 [β–Ό
      0 => "taxonomy_term"
      1 => "439"
    ]
     array:2 [β–Ό
      0 => "taxonomy_term"
      1 => "1336"
    ]
     array:2 [β–Ό
      0 => "taxonomy_term"
      1 => "439"
    ]
     array:2 [β–Ό
      0 => "taxonomy_term"
      1 => "1336"
    ]
     array:2 [β–Ό
      0 => "taxonomy_term"
      1 => "439"
    ]
     array:2 [β–Ό
      0 => "taxonomy_term"
      1 => "1336"
    ]
     array:2 [β–Ό
      0 => "taxonomy_term"
      1 => "439"
    ]
    
  • πŸ‡¦πŸ‡ΊAustralia VladimirAus Brisbane, Australia

    After further investigation I found versions 1.4.7+ are unusable for complex websites with a lot of references.

    The issues discovered:

    • Even if taxonomy terms are UNselected in config, the module still exports taxonomies
    • Taxonomies go into infinite loop, because of $this->exporter->doExportToArray($entity->get('parent')->entity) in Drupal\single_content_sync\Plugin\SingleContentSyncBaseFieldsProcessor\TaxonomyTerm::exportBaseValues()
    • Instead of single content it is now exports all the content linked with no mechanism to stop it so it can result in hundreds of nodes instead of one.
  • πŸ‡ΊπŸ‡¦Ukraine nginex

    that's not a critical issue, it's easy to fix, expect a new patch in a few minutes

  • πŸ‡ΊπŸ‡¦Ukraine nginex

    well I don't know what is your exact structure, so it's hard to test it for me as I can't reproduce it. In any case, I provided a MR that might improve the export. Do you export node with a taxonomy reference or you export a taxonomy entity itself? Please provide mode details of your content structure, so I can replicate it at least

  • πŸ‡ΊπŸ‡¦Ukraine nginex
  • πŸ‡¦πŸ‡ΊAustralia VladimirAus Brisbane, Australia

    Nope, getting

    The website encountered an unexpected error. Try again later.
    
    Error: Xdebug has detected a possible infinite loop, and aborted your script with a stack depth of '512' frames in Drupal\Core\TypedData\DataDefinition->getDataType() (line 54 of core/lib/Drupal/Core/TypedData/DataDefinition.php).
    
  • πŸ‡¦πŸ‡ΊAustralia VladimirAus Brisbane, Australia
  • πŸ‡ΊπŸ‡¦Ukraine nginex

    I asked you a few questions and received 0 answers, can you please provide any information about your content structure. If the issue is not reproducible out of the box, this cannot be critical

  • πŸ‡¦πŸ‡ΊAustralia VladimirAus Brisbane, Australia

    Thanks @nginex. Production data is too complex to export.
    Let me setup clear instance and try to replicate it.
    From what I investigated, entities that are referenced in text fields are being exported as well (both taxonomies and nodes).

  • πŸ‡ΊπŸ‡¦Ukraine nginex

    Correct, that feature did not exist in 1.4.6. Probably it makes sense to change the logic of export there. Let me update the patch and try to optimize that moment (instead of exporting full entity I will only export stub version of it)

  • πŸ‡ΊπŸ‡¦Ukraine nginex

    I provided a few new options of exporting for menu links of content and embedded links from formatted text. By default it will be Stub mode instead of Full one. Also it's possible to select None.

    Let me know if new patch works for you. Don't forget to run drush updb.

Production build 0.71.5 2024