Forum Discussion
Edge Canary limited disk usage capability on YouTube video upload
anyways, i don't understand what you mean by your second paragraph. my SSD is capable of more than 1000 MB/s read speed (actual rate is 2000/1000 for read/write speeds) so there is something wrong that the new Edge is only using 50 MB/s. it is also an issue when we are downloading a file and Edge won't be able to download it faster than 50 MB/s.
Yes, unless you think Windows task manager is unreliable ?
I can't speak to the accuracy of the task manager's throughput column; it does appear to do some smoothing, for instance.
In a quick test here, I see downloads writing to disk at ~180mb/sec, which is roughly the peak write speed of this drive. Also, keep in mind that your system's antivirus scanners are likely scanning the data as it's downloaded to disk.
- Eric_LawrenceApr 19, 2019
Microsoft
I poked at this a bit more, and made a little test page to benchmark the file read capabilities:
https://bayden.com/test/diskbenchmark.html
This simple page allows you to pick a local file, then the browser reads it into an arrayBuffer. This eliminates the network from the equation, and while it doesn't eliminate all other variables (memory allocation costs, etc), it does provide a less noisy picture. The page itself calculates the number of bytes read and milliseconds elapsed to provide a more precise measure of disk throughput.
When I use this page on a big file on Windows 10 RS5, I note that almost all of the disk activity is charged to "Antimalware Service Executable" and NOT the browser process; the browser process shows little disk activity at all.
While the results fluctuate (and this is unsurprising given how disk caches work, etc), I do see significant differences in effective throughput based on browser versions.
I haven't yet tried this on multiple machines.
Edge 18 RS5 (Spartan) -----------------
Read 2,139,348,308 bytes in 4651 ms
459,975,985 bytes/sFirefox 68 -----------------
Read 2,139,348,308 bytes in 4394 ms
486,879,451 bytes/s
Chrome 73 Stable -----------------
Read 2,139,348,308 bytes in 2004 ms
1,067,539,075 bytes/sChrome 75 Canary -----------------
Read 2,139,348,308 bytes in 32868 ms
65,089,092 bytes/sEdge 75.131 Dev -----------------
Read 2,139,348,308 bytes in 10102 ms
211,774,728 bytes/sEdge 75.134 Canary -----------------
Trial #1
Read 2,139,348,308 bytes in 24106 ms
88,747,544 bytes/sTrial #2
Read 2,139,348,308 bytes in 2426 ms
881,841,841.715 bytes/sTrial #3
Read 2,139,348,308 bytes in 11456 ms
186,744,789.455 bytes/s- HotCakeXApr 19, 2019MVPokay so I used that website you suggested, selected my 40GB video file and then i checked task manager and nothing major was happening there, CPU, RAM, disk all of them were normal, as if the website is doing nothing at all. also tested it on the preinstalled Edge, still nothing in task manager, is that normal?
I'm on Insider build fast ring 20H1.
about that 50 MB/s limit, I think it's only a YouTube thing- Eric_LawrenceApr 19, 2019
Microsoft
I suspect that creating arrayBuffers over 4gb (as this page does) isn't supported by any browser because they don't want a runaway browser tab to use all of system memory.
I've added an error message for cases where the read call fails.