Redis report page runs out of memory

Created on 28 April 2020, almost 5 years ago
Updated 22 June 2023, almost 2 years ago

I am running redis on a production site with maxmemory set to 3GB. Once the redis memory starts to reach the limit, the /admin/reports/redis page returns error 500.

Looking at the logs, PHP execution fails due to memory limit. The error 500 is caused by a memory limit of PHP worker we set to 256 MB.

Why does the report page need so much memory in such a case?

🐛 Bug report
Status

Active

Version

1.4

Component

Code

Created by

🇸🇮Slovenia KlemenDEV

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

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇬🇷Greece PanosAx

    Our patch resolves a critical issue in Redis log page, previously broken when dealing with large Redis datasets. By adjusting the scan value from 10,000 to 1,000, the patch optimizes log retrieval, ensuring faster load times and improved usability.

  • 🇸🇮Slovenia KlemenDEV

    Is the accuracy of data reduced when this parameter is reduced?

  • Status changed to Needs work almost 2 years ago
  • 🇫🇷France fgm Paris, France

    Technically, the patch changes a default value in ReportController::scan(). The reason why it works is that the controller in ReportController::overview() does not pass the second parameter. This leaves two places for a potential change. It would probably be better to set it in the overview method instead of relying on a default, IMHO.

  • First commit to issue fork.
  • Merge request !42Fixes #3131849 → (Merged) created by berdir
  • Pipeline finished with Skipped
    8 months ago
    #256895
    • berdir committed 89f56c55 on 8.x-1.x
      Issue #3131849 by berdir, PanosAx: Redis report page runs out of memory
      
  • Status changed to Fixed 8 months ago
  • 🇨🇭Switzerland berdir Switzerland

    The method is only used in a single place, I'm fine with adjusting the default. It's really just a wrapper to handle different implementations in the supported interfaces.

  • 🇸🇮Slovenia KlemenDEV

    This bug was not fixed. After updating the Redis module to 1.8, we still get

    PHP message: PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 20480 bytes) in contrib/redis/src/Controller/ReportController.php on line 129; PHP message: PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 20480 bytes)

    every time the report page is open. Why is so much memory needed?

  • 🇨🇭Switzerland berdir Switzerland

    This isn't meant to fix all memory issues. The reports page attempts to provide a summary of possibly GB and millions of keys, it's entirely optional. There is another issue where I suggested a fixed limit or just completely skip parts of it of we detect a too large amount of keys. Profiling and patches welcome.

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

  • The issue is not fully resolved. The page only works when the $count variable in the patch is set to 1. With any other value, the report page consistently triggers a PHP "out of memory" error.

    This is not a global memory issue but specific to this page, as described earlier. Therefore, the issue should remain open until it is completely fixed.

  • 🇸🇮Slovenia KlemenDEV

    I have reported this too but apparently

    This isn't meant to fix all memory issues.

  • 🇨🇭Switzerland berdir Switzerland

    Create a new issue. The value is as tradeoff between memory and time. If only 1 works for you but otherwise you get an error then this seems like an indication that something very weird is going with your cache entries, they might be extremely large which would possibly also cause runtime issues outside of the report.

    The issue I mentioned is Report page takes ages to load - maybe cache it? Active , but that won't help you.

    When you create an issue, mention which client you're using, how much memory redis and PHP has and whatever else you think might be important.

Production build 0.71.5 2024