Memory error after install

Created on 5 February 2025, about 2 months ago

Problem/Motivation

After simply installing this module and then going to /admin/config/development/content, I get
a white screen with the following error:

Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 75855312 bytes) in /app/web/core/lib/Drupal/Core/Render/Renderer.php on line 504

I am on Drupal 10.4.0. My site does have over 60k entities. The install process took over 45 minutes to do the initial snapshot. No matter what I do, I cannot access the configuration admin at the above URL. It also seems to hang on the command line if I try to export nodes that have entity references, even for content types that don't have very many nodes. I have a content type that has only about 10 nodes, but has several entity references to other content types, taxonomies, and Media entities. Does this module just not work on sites with a lot of database entries? This seems like the perfect module for my needs, but I just can't get it to work.

🐛 Bug report
Status

Active

Version

4.0

Component

Code

Created by

🇺🇸United States socalerich

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

Comments & Activities

  • Issue created by @socalerich
  • 🇮🇳India vinayakmk47

    Hi @erichhaemmerle I installed the same module in drupal10.4.1 and it is working fine for me i am able to open the page by following path /admin/config/development/content and also able to open config page, but getting one error, Error message
    The content directory type 'sync' does not exist. but no blank page or website encounter error

  • 🇧🇪Belgium ericvl

    @erichhaemmerle I think that the problem is that you inslude all your files too in the export phase. Therefor the export file is getting too big for the max memory that is set in your php setting.
    A solution could be to only export your entities and copy your files with a classic ftp program.
    Therefor if you use the user interface, you could change the file src/Form/ContentExportForm.php around line 100 and change;
    $serializer_context['include_files'] = 'folder'; to
    $serializer_context['include_files'] = 'none';
    This way, your exported file will be much smaller and you will provable have enough memory to get no errors.

    If uou use drush then use the command to only export the entities.

    Before you import the exported file on the other side, first copy all your files from the original site to the target site and then import the file. Otherwise, the files will not be found on the target site.
    Good luck,
    Eric

  • It seems that the issue is related to memory exhaustion, likely due to the large number of entities and entity references being processed during export. If files are also being included in the export, the overall size may be exceeding the PHP memory limit. for now potential solution is to change to $serializer_context['include_files'] = 'none';
    Also try increasing the PHP memory limit memory_limit = 2048M and checking for recursive entity loading might also help.

Production build 0.71.5 2024