After upgrading my internet connection I immediatelly noticed that my HDD tops 40 MB/s and bottlnecking download speed in qbittorrent. Is it possible to use SSD drive as a catch drive for 12 TB HDD so it uses SSD speeds when downloading and moves files to HDD later on? If yes, does it make sense? Anyone using anything simmilar? Would 512 GB be enough or could I benefit from 2TB SSD?

HDD is just for jellyfin (movies/shows), not in raid, dont need backup for that drive, I can afford risking data if that matters at all

All suggestions are welcome, Thx in advance

EDIT: I obviously have upset some of you, wasn’t my intention, I’m sorry about that. I love to tinker and learn new things, but I could live with much lower speeds tho… Please don’t hate me if I couldn’t understand your comment or not being clear with my question.

HDD being bottleneck at 40 MB/s was wrong assumption (found out in meantime). I’m still trying to figure out what was the reason for download to be that slow, but I’m interested in learning about the main question anyway. I just thought I’m experiencing the same issue like many people today, having faster internet than storage. Some of you provided solutions I will look into, but need time for that and also have to fix whatever else I’m having issue with.

Keep this community awesome because it is <3

  • ShortN0te
    link
    fedilink
    English
    arrow-up
    35
    ·
    18 days ago

    40MB/s is very very low even for a HDD. I would eventually debug why it’s that low.

    Yes it’s possible. FS like zfs btrfs etc. support that.

    • acosmichippo@lemmy.world
      link
      fedilink
      English
      arrow-up
      9
      ·
      edit-2
      18 days ago

      agreed, I think there is something else going on here. test the write speed with another application, I doubt the drive actually maxes out at 40MB/s unless it’s severely fragmented or failing.

      incidentally what OP wants is how most people set up Unraid servers. SSD cache takes incoming files for write speed, then at a later time the OS moves the files to the spinning disk array.

    • rambos@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      3
      ·
      18 days ago

      Its the cheapest drive I could find (refurbished seagate from amazon), I thought thats the reason for being slow, but wasnt aware its that low. Im also getting 25-40 MB/s (200-320 Mbps) when copying files from this drive over network. Streaming works great so its not too slow at all. Is there better way of debugging this? What speeds can I expect from good drive or best drive?

      Ill research more about BTRFS and ZFS, thx

        • rambos@lemm.eeOP
          link
          fedilink
          English
          arrow-up
          5
          arrow-down
          1
          ·
          18 days ago

          Yeah, but need to figure out how to see transfer speed using ssh. Sorry noob here :)

            • rambos@lemm.eeOP
              link
              fedilink
              English
              arrow-up
              4
              ·
              18 days ago

              I have managed to copy with rsync and getting 180 MB/s. I guess my initial assumption was wrong, HDD is obviously not bottleneck here, it can get close to ISP speed. Thank you for pointing this out, Ill do more testing these days. Im kinda shocked because I never knew HDD can be that fast. Gonna reread all the comments as well

              • not_fond_of_reddit@lemm.ee
                link
                fedilink
                English
                arrow-up
                2
                ·
                17 days ago

                The cool thing about rsync is that it goes ”BRRRRRRRRR!” like a warthog… the plane… and it can saturate the receiving drive or array depending on your network and client. And getting 180 with rsync… on a SATA drive, can’t really hope for more.

                And you can run a quick n dirty test is using dd

                $> dd if=/dev/zero of=1g-testfile bs=1g count=1

                • rambos@lemm.eeOP
                  link
                  fedilink
                  English
                  arrow-up
                  2
                  ·
                  17 days ago

                  Thx. Ive seen dd commands in guides how to test drive speed, but I’m not sure how can I specify what drive I want to test. I see I could change “if” and “of”, but don’t trust myself enough to use my own modified commands before understanding them better. Will read more about that. Honestly I’m surprised drive speed test is not easier, but its probably just me still being noob xD

                  • not_fond_of_reddit@lemm.ee
                    link
                    fedilink
                    English
                    arrow-up
                    2
                    ·
                    17 days ago

                    Let’s say you want to test a drive that is mounted on /tmp… you just cd into that directory and you can use my example.

                    You can use

                    $> df -h or $> mount

                    to check how your drive is mounted in the OS Most ”default ” installations will have 1-4 partitions and / being partition 3 or 4.

                    So if you look at the mount command and / is /dev/sdX3 (where X can be a-z depending on how many drives you have connected) and no other mounts are in the output then every directory under / is on that drive… so you can run my example from your home-directory if you fancy that.

              • ShortN0te
                link
                fedilink
                English
                arrow-up
                2
                ·
                16 days ago

                The limitation of HDDs was never sequential Read/Write when it comes to day to day use on a PC.

                The huge difference to an SSD is when data is written or read not sequentially, often referred to random I/O.