[Bug]: Frigate Freezes When Updating Face Image in Face Library #18153
-
Checklist
Describe the problem you are havingWhen I use the Face Library feature to update (i.e., upload or replace) a face image, the UI hangs indefinitely. Upon inspecting with the browser’s DevTools (F12), I noticed that the register request remains in a pending state and never resolves. Frigate becomes unresponsive after this, and I have to manually restart Frigate to recover functionality. Steps to reproduce
Version0.16.0-beta1-tensorrt In which browser(s) are you experiencing the issue with?No response Frigate config filemqtt:
enabled: false
cameras:
name_of_your_camera: # <------ Name the camera
enabled: true
ffmpeg:
inputs:
- path: rtsp://10.0.10.10:554/rtsp # <----- The stream you want to use for detection
roles:
- detect
detect:
enabled: false # <---- disable detection until you have a working camera feed
width: 1280
height: 720
semantic_search:
enabled: false
model_size: small
face_recognition:
enabled: true
model_size: small
lpr:
enabled: false
classification:
bird:
enabled: false
detect:
enabled: true
version: 0.16-0 docker-compose file or Docker CLI commandversion: "3.9"
services:
frigate:
container_name: frigate
privileged: true # this may not be necessary for all setups
restart: unless-stopped
stop_grace_period: 30s # allow enough time to shut down the various services
image: ghcr.io/blakeblackshear/frigate:0.16.0-beta1-tensorrt
shm_size: "1024mb" # update for your cameras based on calculation above
deploy:
resources:
reservations:
devices:
- driver: nvidia
device_ids: ['0'] # Only needed for multiple GPUs
capabilities: [gpu]
volumes:
- /etc/localtime:/etc/localtime:ro
- ./config:/config
- ./storage:/media/frigate
- type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear
target: /tmp/cache
tmpfs:
size: 1000000000
ports:
- "8971:8971"
- "8553:8554" # RTSP feeds
- "8555:8555/tcp" # WebRTC over tcp
- "8555:8555/udp" # WebRTC over udp
environment:
FRIGATE_RTSP_PASSWORD: "test1234" Relevant Frigate log outputN/A Relevant go2rtc log outputN/A Operating systemDebian Install methodDocker Compose Network connectionWired Camera make and modelN/A Screenshots of the Frigate UI's System metrics pagesN/A Any other information that may be helpfulNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 11 replies
-
We can't reproduce this, is this consistently reproducible for you? If so, is it with one particular image or any image? |
Beta Was this translation helpful? Give feedback.
Looks like the issue is something specific to my computer. When I used the exact same image on another machine, everything worked just fine. Very strange behavior… Thank you for taking the time to help and look into the undefined issue. I’ll dig deeper on my end to figure out what might be going on with my setup.