You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason, after first allocation of file BiglyBT also does full check of that file.
Maybe on some powerful device it is fast, so people does not notice this, but on Android TV box (2023, Amlogic S905X4 - which is the "latest" CPU for certified Android TV) + USB HDD exFAT (which is default for portable HDD use case) + big file (e.g. 10 GB) - this takes about 10 minutes. With 30GB file - it takes 30 minutes, which is not usable at all.
Would be nice to disable this check be default on "slow" devices or at least to have an option to manually disable this check. (I tried different "checking" related options - but none helped with this particular case).
Thank you.
The text was updated successfully, but these errors were encountered:
Just a note for other users: there is the issue with is inability of exFAT FS to allocate "full" file - which means that it takes a lot of minutes to allocate file in a "incremental" manner. With formatting HDD to "internal" format (which used to be ext4, not sure about now) - this should not be an issue.
enabling "Enable incremental file creation [Required for FAT32 under Linux]" kind of mitigates this issue - since there is no full allocation - thus there is no check after full allocation.
but this still looks like a bug.
what is the point of checking file right after allocating it?
Incremental file creation does not help though, because if you're downloading a fragment of a file close to its end, it will have to allocate the file at least to that point.
The only real fix was to format the drive as internal, switching to ext4.
With that and "sparse files" it works fast.
For some reason, after first allocation of file BiglyBT also does full check of that file.
Maybe on some powerful device it is fast, so people does not notice this, but on Android TV box (2023, Amlogic S905X4 - which is the "latest" CPU for certified Android TV) + USB HDD exFAT (which is default for portable HDD use case) + big file (e.g. 10 GB) - this takes about 10 minutes. With 30GB file - it takes 30 minutes, which is not usable at all.
Would be nice to disable this check be default on "slow" devices or at least to have an option to manually disable this check. (I tried different "checking" related options - but none helped with this particular case).
Thank you.
The text was updated successfully, but these errors were encountered: