An alternative to doing file based SFTP is to just treat SFTP like an API. A company I work for implemented an SFTP service where every operation simply translates to some SQL DB lookup. And a file download kicks off a larger SQL query and generates the report on the fly, streaming the result straight through to the SFTP client. Works great! SFTP can be an API just like HTTP. Under the hood the protocol is reasonably…
What if you open an SFTP handle, and then write 5 bytes halfway through a 20 GB file and close the handle? How do you translate that?
AWS Transfer for SFTP – Fully Managed SFTP Service for Amazon S3
61–70 of 158 posts
Re: AWS Transfer for SFTP – Fully Managed SFTP Service for Amazon S3
#62We use a number of AWS LightSail servers for SFTP today, which mostly sit idle. Will definitely adopt this!
Re: AWS Transfer for SFTP – Fully Managed SFTP Service for Amazon S3
#63We use a number of AWS LightSail servers for SFTP today, which mostly sit idle. Will definitely adopt this!
Re: AWS Transfer for SFTP – Fully Managed SFTP Service for Amazon S3
#64> SFTP (Secure File Transfer Protocol) It's SSH File Transfer Protocol. When you say Secure File Transfer Protocol many people think about FTP over SSL if you don't emphasize it's about SSH.
Huh? Sure there's always potential for confusion but every time I heard anything about FTP over SSL (which no one seems to actually use) it's been called "FTPS"
Re: AWS Transfer for SFTP – Fully Managed SFTP Service for Amazon S3
#65Earlier quoted context omitted.
You can't even sell merchandise on Amazon without significant risk they will like your numbers enough to muscle you out: https://www.amazon.com/AmazonBasics/b?node=10112675011
I've found anything more complex than an adapter or cable to be of inferior quality with Amazon Basics, and rarely buy those options anymore.
https://smile.amazon.com/AmazonBasics-Desktop-Mini-Condenser...
Re: AWS Transfer for SFTP – Fully Managed SFTP Service for Amazon S3
#66> SFTP (Secure File Transfer Protocol) It's SSH File Transfer Protocol. When you say Secure File Transfer Protocol many people think about FTP over SSL if you don't emphasize it's about SSH.
In computing, the SSH File Transfer Protocol (also Secure File Transfer Protocol, or SFTP) is a network protocol that provides file access, file transfer, and file management over any reliable data stream.
Re: AWS Transfer for SFTP – Fully Managed SFTP Service for Amazon S3
#67Although this is much more expensive than Lightsail, the man hours saved will make it worthwhile.
Re: AWS Transfer for SFTP – Fully Managed SFTP Service for Amazon S3
#68Ah this would've been so useful 18 months ago. I had to spend MONTHS to convince a vendor (government) to use S3 to upload (keybase-encrypted) files instead of SFTP. And they finally budged. This would've been so much easier.
One can also implement SFTP on top of anyting just like HTTP apis if you make your own backend, e.g. https://github.com/pkg/sftp
Re: AWS Transfer for SFTP – Fully Managed SFTP Service for Amazon S3
#69We use a number of AWS LightSail servers for SFTP today, which mostly sit idle. Will definitely adopt this!
My solution took a little more human-time to setup than the AWS service might, but once setup, it saves about $200/month.
Re: AWS Transfer for SFTP – Fully Managed SFTP Service for Amazon S3
#70An alternative to doing file based SFTP is to just treat SFTP like an API. A company I work for implemented an SFTP service where every operation simply translates to some SQL DB lookup. And a file download kicks off a larger SQL query and generates the report on the fly, streaming the result straight through to the SFTP client. Works great! SFTP can be an API just like HTTP. Under the hood the protocol is reasonably…
What if you open an SFTP handle, and then write 5 bytes halfway through a 20 GB file and close the handle? How do you translate that?