DaGeek247 of https://dageek247.com

  • 1 Post
  • 41 Comments
Joined 6 months ago
cake
Cake day: February 16th, 2024

help-circle
  • That’s not how hard drives work, and doesn’t take into account that OP might want to download more than one thing at a time.

    Hard drives are fastest when they are moving large single files. SSDs are way better than hard drives at lots of small random reads/writes.Setting qbittorrent up so that all the random writes inherent to downloading a torrent go to a small ssd, and then moving that file over to the big hard drive with a single long writer operation is how you make both devices perform to their best.













  • DaGeek247@fedia.iotoSelfhosted@lemmy.worldOS recommendations
    link
    fedilink
    arrow-up
    5
    arrow-down
    1
    ·
    1 month ago

    I run Debian with zfs. Really simple to set up and has been rock solid for it too. As far as I can tell all the issues I’ve had have been my fault.

    ZFS looks like it uses a lot of RAM, but you can get away without it if you need too. It’s basically extra caching. I was thrilled to use it as an excuse to upgrade my ram instead.

    Mdadm has a little more setup then zfs, as far as I’m concerned. You need to set your own scrubbing up whereas zfs schedules it’s own for you. You need to add monitoring stuff for both though.

    I’ve considered looking into the various operating systems designsd for this, but they just don’t seem to be worth the effort of switching to me.









  • Both. How quickly a server can send a webpage with images (even if they’re small) is directly proportional to the storage mediums seeks times. The worse the seek times, the less ‘responsive’ a website feels. Hard drives are a terrible location to keep your metadata.

    The server scan will search for the files, look them up and grab metadata, and then store that metadata in the metadata location. If your metadata location is the same spot as your movie, it will cause some major thrashing, and will significantly increase the scan time for jellyfin. Essentially, it gets bogged down trying to read and write lots of tiny files on the same drive, the absolute worst case scenario for a hard drive to have.

    If the movies are on a hard drive, and the metadata on an ssd (or even just a different hard drive) the pipeline will be a lot less problematic.