CPU running at 100%


Recommended Posts

26 minutes ago, Reddog1400 said:

Can you elaborate further? What is a disk share vs a user share

Click the links in your post.

 

Might be more correct to say use disks instead of user shares for some of your dockers, since it has nothing to do with actually sharing disks.

 

Instead of a path in /mnt/user/appdata, for example, you might specify a path in /mnt/cache/appdata. Or maybe /mnt/plex_cache/appdata since I see you also have a pool named plex_cache

 

Not exactly related, but I notice your prefer:cache appdata share has some files on the array. To get these moved to cache you have to disable Docker in Settings and run mover. Mover won't replace files though, so if there are duplicates you will have to clean those up yourself with Dynamix File Manager

Link to comment
On 1/10/2023 at 11:23 AM, trurl said:

Click the links in your post.

 

Might be more correct to say use disks instead of user shares for some of your dockers, since it has nothing to do with actually sharing disks.

 

Instead of a path in /mnt/user/appdata, for example, you might specify a path in /mnt/cache/appdata. Or maybe /mnt/plex_cache/appdata since I see you also have a pool named plex_cache

 

Not exactly related, but I notice your prefer:cache appdata share has some files on the array. To get these moved to cache you have to disable Docker in Settings and run mover. Mover won't replace files though, so if there are duplicates you will have to clean those up yourself with Dynamix File Manager

I did this with a few and it seemed to work a little. Then it happened again. Did you notice certain dockers being the culprits? Also, is this why the RAM is maxing out too?

Link to comment

docker run
  -d
  --name='plex-gpu'
  --net='defiant1'
  --cpuset-cpus='4,5,6,7,12,13,14,15'
  -e TZ="America/Indiana/Indianapolis"
  -e HOST_OS="Unraid"
  -e HOST_HOSTNAME="Defiant"
  -e HOST_CONTAINERNAME="plex-gpu"
  -e 'VERSION'='docker'
  -e 'NVIDIA_VISIBLE_DEVICES'='GPU-22894283-12c9-ee8d-0da8-55e6693131b0'
  -e 'NVIDIA_DRIVER_CAPABILITIES'='all'
  -e 'PUID'='99'
  -e 'PGID'='100'
  -l net.unraid.docker.managed=dockerman
  -l net.unraid.docker.webui='http://[IP]:[PORT:32400]/web'
  -l net.unraid.docker.icon='https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/plex-icon.png'
  -p '32400:32400/tcp'
  -p '3005:3005/tcp'
  -p '8324:8324/tcp'
  -p '32469:32469/tcp'
  -p '1901:1900/udp'
  -p '32410:32410/udp'
  -p '32412:32412/udp'
  -p '32413:32413/udp'
  -p '32414:32414/udp'
  -v '/mnt/cache/Movies/':'/movies':'rw'
  -v '/mnt/cache/Television/':'/tv':'rw'
  -v '/mnt/cache/Music/':'/music':'rw'
  -v '/mnt/plex_cache/transcode':'/transcode':'rw'
  -v '/mnt':'/mnt':'rw'
  -v '/mnt/cache/appdata/dizquetv/':'/dizquetv':'rw'
  -v '/mnt/plex_cache/plex_appdata/':'/config':'rw'
  --runtime=nvidia 'linuxserver/plex'

48163179643e14218fa33e7afa3ca232d6d34585639184190ab4e9d6c1131996

The command finished successfully!

Link to comment
  • 2 weeks later...

Your appdata has files on the array. That is the main one that you probably should be directly mapping to cache. You need to get that all on cache for that to work across the board.

 

Your other mappings, for example, 

On 1/20/2023 at 6:21 PM, Reddog1400 said:

 -v '/mnt/cache/Movies/':'/movies':'rw'

means that when plex accesses /movies, all it will see are those that are on cache. I assume that isn't what you want, since it looks like your Movies share has files on lots of other disks.

 

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.