I started the scan for my movie collection (roughly 140 movies) on my Raspberry Pi 3B. It has become unresponsive and I can’t ssh in now. It seems to be due to all the ffmpeg instances. I have two questions:

Should I wait for an hour or should I just reboot the server? Also, is there a way to disable the setting for chapter images from the web UI? I can’t find it in the setting.

You are viewing a single thread.
View all comments View context
7 points
*

If you use some kind of virtualisation and/or containerisation then you can limit ram and/or cpu usage. This can of course greatly reduce lockups if not eliminate them.

Edit: I only now read it’s a Pi 3B. Not sure if hosting Jellyfin on that device is a good idea… If you insist though, consider running an LXC inbetween and limit it to three cores. That should leave one core available for the system so the system doesn’t lock up again.

permalink
report
parent
reply
5 points

Thanks so much. Sound like I need to learn a bit more about docker. That’s how I installed it.

permalink
report
parent
reply
7 points
*

In case you ran it using a docker run command, read this. Otherwise if you use compose, try something similar to the following:

services:
  service:
    image: nginx
    deploy:
      resources:
        limits:
          cpus: '3'
          memory: 512M
        reservations:
          cpus: '0.25'
          memory: 128M
    cpuset: "1"
    ports:
      - "80:80"

source

permalink
report
parent
reply
1 point
*

It seems I’m out of luck on this kernel / hardware. After applying some limitations I get the following when I run the container:

Your kernel does not support memory soft limit capabilities or the cgroup is not mounted. Limitation discarded.

permalink
report
parent
reply
4 points

I’m using docker compose. Thank you so much, this is fantastic!

permalink
report
parent
reply

Community stats

  • 46

    Monthly active users

  • 7

    Posts

  • 20

    Comments

Community moderators