This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author socketpair
Recipients lars.gustaebel, socketpair
Date 2016-07-11.20:24:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468268658.01.0.389942103552.issue16858@psf.upfronthosting.co.za>
In-reply-to
Content
http://stackoverflow.com/questions/1964806/short-read-from-filesystem-when-can-it-happen

Disk-based filesystems generally use uninterruptible reads, which means that the read operation generally cannot be interrupted by a signal. Network-based filesystems sometimes use interruptible reads, which can return partial data or no data. (In the case of NFS this is configurable using the intr mount option.) They sometimes also implement timeouts.

> can return partial data

Seems reading tar-file from NFS-filesystem may trigger that bug.
History
Date User Action Args
2016-07-12 02:22:38berker.peksagunlinkissue16858 messages
2016-07-11 20:24:18socketpairsetrecipients: + socketpair, lars.gustaebel
2016-07-11 20:24:18socketpairsetmessageid: <1468268658.01.0.389942103552.issue16858@psf.upfronthosting.co.za>
2016-07-11 20:24:17socketpairlinkissue16858 messages
2016-07-11 20:24:17socketpaircreate