File Transfer Speed Issues on Windows 8.1

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • canadaboy25
    What is normal?
    • May 2013
    • 509
    • Canada

    #1

    File Transfer Speed Issues on Windows 8.1

    Hey guys,

    I'm having some problems with the file transfer speeds on my Windows 8.1 PC. The problem is whenever I copy a file, it starts off copying really quickly, but shortly after the file transfer begins, the speed drops right off.

    This happens when copying between hard drives or to a USB.

    I have attached a picture of a file transfer.
    Attached Files
    canadaboy25

    -Sometimes the light at the end of a tunnel is an on-coming train
  • joshnz
    Badcaps Veteran
    • Feb 2011
    • 969
    • New Zealand

    #2
    Re: File Transfer Speed Issues on Windows 8.1

    These drives are disk type?
    My pc
    CPU : AMD PHENOM II x4 @ 3.5Ghz
    MB : ASUS M4A89TD PRO USB3
    RAM : Kingston ValueRAM 16gb DDR3
    PSU : Cooler Master 850W Silent Pro
    GPU : ATI Radeon HD 6850

    Comment

    • canadaboy25
      What is normal?
      • May 2013
      • 509
      • Canada

      #3
      Re: File Transfer Speed Issues on Windows 8.1

      Originally posted by joshnz
      These drives are disk type?
      The attached picture was a transfer from an SSD to a HDD drive. Both SATA.
      canadaboy25

      -Sometimes the light at the end of a tunnel is an on-coming train

      Comment

      • Per Hansson
        Super Moderator
        • Jul 2005
        • 5895
        • Sweden

        #4
        Re: File Transfer Speed Issues on Windows 8.1

        The speed is normal, first Windows caches some in RAM, and then you have insane speeds.
        Then you see it has settled down at 67MB/sec which is normal sustained write speed for the kind of drives you describe.
        "The one who says it cannot be done should never interrupt the one who is doing it."

        Comment

        • RJARRRPCGP
          Badcaps Legend
          • Jul 2004
          • 6304
          • USA

          #5
          Re: File Transfer Speed Issues on Windows 8.1

          Originally posted by Per Hansson
          67MB/sec
          Typical for a 2006 and 2007 HDD. (Especially <400 GB)
          ASRock B550 PG Velocita

          Ryzen 9 "Vermeer" 5900X

          32 GB G.Skill RipJaws V F4-3200C16D-32GVR

          Arc A770 16 GB

          eVGA Supernova G3 750W

          Western Digital Black SN850 1TB NVMe SSD

          Alienware AW3423DWF OLED




          "¡Me encanta "Me Encanta o Enlistarlo con Hilary Farr!" -Mí mismo

          "There's nothing more unattractive than a chick smoking a cigarette" -Topcat

          "Today's lesson in pissivity comes in the form of a ziplock baggie full of GPU extension brackets & hardware that for the last ~3 years have been on my bench, always in my way, getting moved around constantly....and yesterday I found myself in need of them....and the bastards are now nowhere to be found! Motherfracker!!" -Topcat

          "did I see a chair fly? I think I did! Time for popcorn!" -ratdude747

          Comment

          • Per Hansson
            Super Moderator
            • Jul 2005
            • 5895
            • Sweden

            #6
            Re: File Transfer Speed Issues on Windows 8.1

            It was more the fact he said USB
            "The one who says it cannot be done should never interrupt the one who is doing it."

            Comment

            • canadaboy25
              What is normal?
              • May 2013
              • 509
              • Canada

              #7
              Re: File Transfer Speed Issues on Windows 8.1

              The hard drive and SSD are only slightly over a year old. The hard drive is actually two 1TB hard drives in a raid array. The image I attached was of a copy from my SSD to the HDD array.

              This also occurs when copying from the SSD to a USB flash drive
              canadaboy25

              -Sometimes the light at the end of a tunnel is an on-coming train

              Comment

              • mariushm
                Badcaps Legend
                • May 2011
                • 3799

                #8
                Re: File Transfer Speed Issues on Windows 8.1

                The USB drivers have a write cache, meant to make applications seem faster by caching small writes to memory before writing to a usb mass storage device.

                As a fictional example, an application like MS Word would save to disk by creating a temporary file, writing the stuff in it, then deleting the original file and renaming the temporary file with the original file name. As USB devices are much slower to respond (latency) and their speed is usually very small when it comes to writing small chunks of data (in the range of 500 KB/s - 1 MB/s), it would take a bit of time for the document to be saved, maybe a couple of seconds or even more, so it would seem to you that the application is slow.
                So, the operating system and the usb drivers have a system, a cache, in which as long as the usb driver knows the mass storage device is plugged in, the usb driver caches those writes and tells the operating system (and applications) that they were performed while in reality they still happen slowly in the background.
                So Word almost instantly sees the document was saved to disk while in reality it's somewhere in usb driver's ram still being written to the USB stick.

                Same with copying small files to usb stick - with lots of small files, this really helps with transfer speeds, usb sticks like large transfers.

                In addition, Windows also has a system in which it caches files to portions of RAM that aren't used by programs. For example, if you start to watch a movie, Windows may start to copy the movie in advance to memory and keep it there, serving the movie to the player application from ram instead of the hard disk.

                If you happen to copy a file to usb and that file or a portion of it was cached by Windows to memory, you'd see that huge initial speed (because as far as it's concerned, windows told the usb drivers to copy that portion of memory to usb storage and from that point it considers the data written to disk) and the usb driver writes stuff to disk in background.

                At some point the usb driver's cache fills up with write commands and stops taking requests from the operating system until it empties a bit, and that's when you actually start to see the real speed of your usb device... until the copying process is complete, the driver will always have its cache full with commands from the operating system so it's basically limited by the usb storage device (stick, drive etc)

                Comment

                • canadaboy25
                  What is normal?
                  • May 2013
                  • 509
                  • Canada

                  #9
                  Re: File Transfer Speed Issues on Windows 8.1

                  Originally posted by mariushm
                  The USB drivers have a write cache, meant to make applications seem faster by caching small writes to memory before writing to a usb mass storage device.

                  As a fictional example, an application like MS Word would save to disk by creating a temporary file, writing the stuff in it, then deleting the original file and renaming the temporary file with the original file name. As USB devices are much slower to respond (latency) and their speed is usually very small when it comes to writing small chunks of data (in the range of 500 KB/s - 1 MB/s), it would take a bit of time for the document to be saved, maybe a couple of seconds or even more, so it would seem to you that the application is slow.
                  So, the operating system and the usb drivers have a system, a cache, in which as long as the usb driver knows the mass storage device is plugged in, the usb driver caches those writes and tells the operating system (and applications) that they were performed while in reality they still happen slowly in the background.
                  So Word almost instantly sees the document was saved to disk while in reality it's somewhere in usb driver's ram still being written to the USB stick.

                  Same with copying small files to usb stick - with lots of small files, this really helps with transfer speeds, usb sticks like large transfers.

                  In addition, Windows also has a system in which it caches files to portions of RAM that aren't used by programs. For example, if you start to watch a movie, Windows may start to copy the movie in advance to memory and keep it there, serving the movie to the player application from ram instead of the hard disk.

                  If you happen to copy a file to usb and that file or a portion of it was cached by Windows to memory, you'd see that huge initial speed (because as far as it's concerned, windows told the usb drivers to copy that portion of memory to usb storage and from that point it considers the data written to disk) and the usb driver writes stuff to disk in background.

                  At some point the usb driver's cache fills up with write commands and stops taking requests from the operating system until it empties a bit, and that's when you actually start to see the real speed of your usb device... until the copying process is complete, the driver will always have its cache full with commands from the operating system so it's basically limited by the usb storage device (stick, drive etc)
                  Thank you very much for taking the time to explain it so clearly. I now understand what is happening.

                  I just wanted to make sure that there isn't some hidden performance issue that I'm having.
                  canadaboy25

                  -Sometimes the light at the end of a tunnel is an on-coming train

                  Comment

                  Related Topics

                  Collapse

                  • reformatt
                    Intel iMacs, 3rd party SSD failures and Fusion setups
                    by reformatt
                    I thought I'd throw out some of my personal experiences in the last 12 months with Intel iMacs, 2.5" SATA SSD drives and Fusion drive data recoveries.

                    As a backgrounder, Apple never fitted a 2.5" SSD's to these iMacs. Apple's SSD option was a system of 32GB NVMe blade drive (NGFF connector) and Seagate 1TB 2.5" HDD, married together in software to become a Fusion drive. Non Fusion systems have just the 1TB Seagate HDD.

                    So, the most common reason an iMac comes across my bench is because it's either ridiculously slow, or it fails to boot at all. The most...
                    12-18-2024, 10:34 PM
                  • Forest79
                    Lenovo ThinkStation P520 BIOS file needed
                    by Forest79
                    Hello,

                    I got a Lenovo ThinkStation P520 (Type 30BF) from a friend, asking me for a repair. Windows 11 offered a firmware upgrade as an optional update, and it failed.
                    The emergency flash procedure from the hardware manual has also failed. So, I asked an acquaintance with better skills to flash the BIOS directly.

                    However, the chip (a Macronix MX25L25673GMI-08G) has a size of 32 MB, and the BIOS file from the Lenovo website (extracted with UEFITool) has a little more than 16 MB. Thus, the software my acquaintance used (SiberiaProg v1.45, with a CH341A Programmer)...
                    07-23-2023, 07:39 AM
                  • harp
                    simple win network with optimization issue
                    by harp
                    simple win network with optimization issue I like to ask some question about configuring simple room win network. So, there is 2 win computer, android4 device and wifi router not connected to internet. The purpose is storage space and manipulation with large files between any device. 1 pc - 192.168.0.2 (winxp sp2) wired to router port#1 2 pc - 192.168.0.5 (win10, enabled smb1.1) wired to router port#2 3 router - 192.168.0.1 with dhcp for wifi (192.168.0.101...) 4 main tablet - 192.168.0.101 (android4) wified to router wifi port I generally work and control transfer with my tablet via ES3 file...
                    06-23-2025, 11:01 AM
                  • hazem3636
                    need Bios Bin file Dell server 220
                    by hazem3636
                    hi everyone

                    i need dump file for dell server r220
                    i have download Flash BIOS executable file but i dont know how to conver it to Bin file

                    i have check on youtube there is some programs are doing this method of creating Bin file from ExE file .


                    if anyone has this method please need his supporting .

                    all the best

                    EXE file is attched and Original Bin file from the Bios Chip is attached also

                    and dell website "https://www.dell.com/support/home/en-us/drivers/driversdetails?driverid=mrxv...
                    11-05-2022, 06:20 AM
                  • throwaway327
                    Asus ROG Ally X -RC72LA - changed hidden bios settings with 'Smokeless-UMAF', won't get past boot logo
                    by throwaway327
                    ASUS ROG Ally X - (Handheld Gaming PC)
                    Model No: RC72LA
                    Serial No: SBNVKD001014459

                    Hi all, I've spent the past week digging through the forums and guides to try correct my foolish mistake of changing hidden settings while tinkering around, and to be honest my heads overloaded so I'm hoping you'll be able to help.

                    I used a tool called 'Smokeless-UMAF' to access usually hidden settings in the bios. I tweaked one or two 'safe' things but made the mistake of tweaking a lot of settings under 'USB/Thunderbolt Configurations' when I didn't know what they did. For...
                    06-18-2025, 05:52 PM
                  • Loading...
                  • No more items.
                  Working...