![]() |
Jellyfin taking a lot of space - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: Jellyfin taking a lot of space (/t-jellyfin-taking-a-lot-of-space) |
Jellyfin taking a lot of space - TGRubilex - 2025-02-26 My jellyfin instance is taking a lot of space (almost 150 GB). It keeps increasing over time and I'm not sure why or how to check since I'm not very experienced with Linux. It is running as an LXC container on proxmox. All my media is stored on an external SMB share so It's definitely not the media itself. I do have thousands of video files so could it be something like thumbnails or subtitle files? How can I check where they are stored from jellyfin. I'm slowly running out of M.2 space so I'd like to figure this out instead of constantly resizing the container. RE: Jellyfin taking a lot of space - Efficient_Good_5784 - 2025-02-26 Jellyfin will store the metadata in the config directory. Do you have trickplays enabled? Those take up a lot of space if you have lots of media. RE: Jellyfin taking a lot of space - TGRubilex - 2025-02-26 (2025-02-26, 05:27 AM)Efficient_Good_5784 Wrote: Jellyfin will store the metadata in the config directory. Yeah I do have them enabled, is there a setting to have them be saved with the media somehow? RE: Jellyfin taking a lot of space - Efficient_Good_5784 - 2025-02-26 Yes, you can go to each library's settings in the dashboard and scrolling all the way to the bottom, you'll see an option that stores them in the media location. You don't have to regenerate them. In the scheduled task section of the dashboard, there's a task that you can run to migrate trickplays to a new location once set. RE: Jellyfin taking a lot of space - TGRubilex - 2025-02-26 (2025-02-26, 05:53 AM)Efficient_Good_5784 Wrote: Yes, you can go to each library's settings in the dashboard and scrolling all the way to the bottom, you'll see an option that stores them in the media location. Changed the settings and moved the trickplays images. Also checked all the other settings while in there like metadata and subtitles. I moved the general metadata and cache to my SMB as well. It's still using 60GB, any other ideas why? Or is this somehow a normal size at this point? RE: Jellyfin taking a lot of space - Efficient_Good_5784 - 2025-02-26 Depending on the size/amount of media you have for Jellyfin, that can very well be normal. Considering you took off around 90GB in trickplays alone, it does sound like that's normal. Keep in mind that at default settings, a single trickplay file for a 24min show usually takes around 1MB-3MB. A 2 hour-long movie's trickplay usually takes around 5MB-8MB. So to get to 90GB, you need a very large library, which makes me assume 60GB for the metadata alone is normal. I would also like to point out that transcodes get temporarily saved in your transcode folder. Transcodes can take up as much space as the original video (and even more in certain cases). If you run out of space by transcoding, at best the transcode will fail. At worst, if your database lives on the same drive that ran out of space, you pretty much risk a corrupted database. RE: Jellyfin taking a lot of space - Duvel - 2025-02-26 Indeed you should check if its not your transcode cache folder that is full of chunks that were not cleaned up automatically. You can find where it is in your system.yaml file at "CachePath" Ideally this folder should be set on a different location and not on the system disk and/or same as jellyfin database, to avoid all sort of issues: system disk full or database locks. I've got dozens of users and had a lot of issues with it, until I dedicated a 200GB SDD only for this (You dont need that much if you only have 1-5 users) Code: <CachePath>/cache/jellyfin</CachePath> Code: Filesystem 1K-blocks Used Available Use% Mounted on RE: Jellyfin taking a lot of space - TGRubilex - 2025-02-26 Alright well I have a dozen users or so and my library will definitely keep getting bigger, so I guess I'll move the Jellyfin container to a dedicated ssd to avoid issues. Thanks for all the help! |