Memory leak during long running processes

Created on 29 January 2025, 2 months ago

Problem/Motivation

On a long-running process, such as one that load/saves thousands of entities, DriverBase::statsWrite grows without limit and eventually causes a Fatal error: Allowed memory size of … bytes exhausted error.

This happens because DriverBase::statsWrite records every operation with no mechanism to clear/reset the self::$stats array or disable statistics tracking entirely.

It's worth noting that these values appear to only be needed/used when the memcache_admin module is enabledβ€”yet the stats are written even when that module is disabled.

Steps to reproduce

n/a

Proposed resolution

Since the values recorded in DriverBase::$stats are only used by the memcache_admin module, perhaps stats tracking can be enabled by passing a boolean to the Driver constructor in MemcacheDriverFactory depending on whether the module is enabled/disabled.

Alternatively, the driver could have a public static function reset() so that a long-running process can periodically clear the stats array.

Remaining tasks

tbd

User interface changes

tbd

API changes

tbd

Data model changes

tbd

πŸ› Bug report
Status

Active

Version

2.0

Component

Code

Created by

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

Merge Requests

Comments & Activities

  • Issue created by @gabesullice
  • After doing some more research, I believe there used to be functionality to disable stat tracking, but it was commented out when the module was ported to Drupal 8.

    https://git.drupalcode.org/project/memcache/-/blame/8.x-2.x/src/Driver/D...

  • πŸ‡¬πŸ‡§United Kingdom alexpott πŸ‡ͺπŸ‡ΊπŸŒ

    @gabesullice lolz I was just about to report this. Imo stat collection should be off by default and only on when configured with a container parameter. Otherwise the default mode of a module meant for performance is to be a memory hog.

  • πŸ‡¬πŸ‡§United Kingdom alexpott πŸ‡ͺπŸ‡ΊπŸŒ

    The amusing this is I realised this yesterday and was going to create an issue next week when I had $time to do this. The bug has been sitting here for years and @gabesullice realised it on the same day in 2025!

  • πŸ‡¬πŸ‡§United Kingdom alexpott πŸ‡ͺπŸ‡ΊπŸŒ

    This is a major bug. Memcache's memory usage is much higher than it should be because of this.

    I've started to fix this in the MR. Just need to implement the checking if the account has access.

  • πŸ‡¬πŸ‡§United Kingdom alexpott πŸ‡ͺπŸ‡ΊπŸŒ
  • Pipeline finished with Success
    about 1 month ago
    Total: 172s
    #440766
  • πŸ‡«πŸ‡·France mably

    Getting this error, even after an update.php, when applying path on my Drupal 11 instance:

    Drupal\\Core\\DependencyInjection\\ContainerNotInitializedException: \\Drupal::$container is not initialized yet. \\Drupal::setContainer() must be called with a real container. in /var/www/html/web/core/lib/Drupal.php on line 169 #0 /var/www/html/web/modules/contrib/memcache/src/Driver/DriverBase.php(305): Drupal::getContainer()\n#1 /var/www/html/web/modules/contrib/memcache/src/Driver/DriverBase.php(102)

  • Pipeline finished with Success
    about 1 month ago
    Total: 177s
    #440815
  • Pipeline finished with Success
    about 1 month ago
    Total: 172s
    #440839
  • Pipeline finished with Failed
    about 1 month ago
    Total: 167s
    #440951
  • πŸ‡¬πŸ‡§United Kingdom alexpott πŸ‡ͺπŸ‡ΊπŸŒ
  • Pipeline finished with Canceled
    about 1 month ago
    Total: 95s
    #440968
  • Pipeline finished with Failed
    about 1 month ago
    Total: 201s
    #440972
  • Pipeline finished with Failed
    about 1 month ago
    Total: 225s
    #440979
  • Pipeline finished with Success
    about 1 month ago
    Total: 191s
    #440983
  • πŸ‡«πŸ‡·France mably

    Tested locally, seems to be working fine πŸ‘

Production build 0.71.5 2024