overseerr: Overseerr loading times are excrutiatingly slow

Description

It takes more than a few minutes to load any page on Overseerr. The screen just stays in Loading mode. Even the Settings page which is text only can take multiple minutes to load.

Version

1.33.0

Steps to Reproduce

  1. Go to http://OVER.SEE.RR.IP:PORT/requests
  2. Wait for page to load
  3. Wait some more
  4. Refresh hoping page load will be faster
  5. Repeat from step 2

Screenshots

Requests page after waiting for 4 minutesScreen Shot 2023-06-18 at 10 21 27 AM

Settings page after waiting for 30 secondsScreen Shot 2023-06-18 at 10 21 48 AM

Logs

No response

Platform

desktop

Device

Macbook Pro

Operating System

MacOS 11.7.7

Browser

Firefox 114.0

Additional Context

Overseerr is running on Synology NAS DS918+ using linuxserver.io docker image.

Code of Conduct

  • I agree to follow Overseerr’s Code of Conduct

About this issue

  • Original URL
  • State: open
  • Created a year ago
  • Reactions: 8
  • Comments: 40

Most upvoted comments

I am experiencing the same issue. Extremely long load times on every screen, it started after upgrading to 1.33. I am running hotio docker image.

There doesnt appear to be anything in the logs that hints at why the loading is so slow.

FWIW — in my case, it turned out that setting DNS to 1.1.1.1 and 1.0.0.1 in my docker image was the culprit of the slowness. I had accepted that it wasn’t “great” for a while — but then pulling up overseerr logs it was logging a number of getaddrinfo EAI_AGAIN errors.

I removed that config, blew away the old overseerr db/cache (kept the settings.json), and recreated the docker image and it’s blazing fast now. I could’ve sworn I tested it without that DNS config, but perhaps that was on my old host (moved from a synology nas to a mac mini — but it was still slow and I gave up for a while).

Here’s my current docker config:

  overseerr:
    image: linuxserver/overseerr:latest
    container_name: overseerr
    environment:
      - PUID=501
      - PGID=20
      - TZ=America/Los_Angeles
    volumes:
      - $HOME/docker/overseerr/config:/config
    restart: unless-stopped
    network_mode: bridge
    depends_on:
      - sonarr
      - radarr
    ports:
      - "5055:5055"

Hope this helps someone else! It’s been bothering me nuts for months and it seems to be finally fast AF