When rechecking multiple records, the page refresh has no effect. #3746
Replies: 6 comments 11 replies
-
Beta Was this translation helpful? Give feedback.
-
|
The solution is to change the |
Beta Was this translation helpful? Give feedback.
-
|
Hmm yeah that change was very inefficient, i'll fix it with #3747 |
Beta Was this translation helpful? Give feedback.
-
|
check latest version and let me know if its solved! |
Beta Was this translation helpful? Give feedback.
-
|
I found this little bug #3762 but it's not related, although it will help for people importing lists of page watches. |
Beta Was this translation helpful? Give feedback.
-
|
What does it look like if you remove the resource constraints on CPU and memory? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
When multiple watch items are rechecked simultaneously via the web UI, the container's CPU usage spikes to 100%. During this period, new browser tabs fail to load the web interface, and all API endpoints become unresponsive—requests only complete after the background recheck tasks finish or enter an idle gap.
The machine is configured with 16 cores and 32GB of RAM.
[root@ucpchangedct01v changedetection.io-master]# cat docker-compose.yml
services:
changedetection:
image: ghcr.io/dgtlmoon/changedetection.io:0.52.4
container_name: changedetection
hostname: changedetection
volumes:
- changedetection-data:/datastore
environment:
- PLAYWRIGHT_DRIVER_URL=ws://browser-sockpuppet-chrome:3000
- FETCH_WORKERS=6
- TZ=Asia/Shanghai
ports:
- 0.0.0.0:5000:5000
restart: unless-stopped
mem_limit: 4g
cpus: 4.0
depends_on:
browser-sockpuppet-chrome:
condition: service_started
browser-sockpuppet-chrome:
hostname: browser-sockpuppet-chrome
image: dgtlmoon/sockpuppetbrowser:latest
cap_add:
- SYS_ADMIN
restart: unless-stopped
environment:
- TZ=Asia/Shanghai
- SCREEN_WIDTH=1920
- SCREEN_HEIGHT=1024
- SCREEN_DEPTH=16
- MAX_CONCURRENT_CHROME_PROCESSES=10
mem_limit: 24g
cpus: 10.0
volumes:
changedetection-data:
Beta Was this translation helpful? Give feedback.
All reactions