After I have updated both overseer and my arr stack (radarr, sonarr, plex and all of their related software), the homepage web GUI would load very slow (from 1 to 4 minutes).
They worked just fine until the updates, tried to downgrade but with no results and also isolated the container from the arr custom network to another custom bridge network. In both situations sonarr, radarr and plex services test ok in settings but the GUI is barely usable.
I run this on a DS220+ with a SSD drive and would run without problems in the last 14 months.
This is my docker-compose:
`---
version: '3'
services:
overseerr:
image: sctx/overseerr:latest
container_name: overseerr
hostname: overseerr
networks:
- overseerrNET
environment:
- PUID=xxxx
- PGID=100
- UMASK=002
- LOG_LEVEL=debug
- TZ=Europe/xxxx
ports:
- 5055:5055
volumes:
- /volume1/docker/overseerr/config:/app/config
restart: always
security_opt:
- no-new-privileges:true
networks:
overseerrNET:
external: false
name: overseerrNET`
I get warnings in the log, when I would load a page:
Warning: data for page "/" is 180 kB which exceeds the threshold of 128 kB, this amount of data can reduce performance.
And if I click on something like "The recruit 2022' it would also load very slow and give errors about ratings:
2022-12-18T20:50:46.182Z [debug][API]: Something went wrong retrieving series ratings {"errorMessage":"[RT API] Failed to retrieve tv ratings: Request failed with status code 404","tvId":"210916"}
What can I do?