As far as I understand from the standard which Apache MINA SSHd SFTP server is based on here, it means that it is not necessary to send information about the size of the file transferred beforehand (servers should not require it) - in other words, we never know the size of the file being transferred until we're done with the transfer OR the client used sends it as a file metadata. Is this correct? How to read this metadata? Which SFTP clients send that piece of information?
Those questions are important to tackle the problem of transferring larger files to S3 bucket used as an underlying storage of SFTP. If you don't know the size in advance you cannot do the multipart upload so you have to first store the file in its entirety and only then perform the actual upload - which causes the SFTP session timeout...