Tag: SFTP

Improving Data Integration Test Performance with Mock

Have you ever wondered how Data Engineers test code components that involves data endpoints? Testing in data engineering typically starts with unit tests — checking if a single encapsulated function returns the expected results given input. Besides unit tests, integration tests are also use...

Setting up a SFTP server inside an existing docker container (Method 1)

Not too many people think about setting up an SFTP server within a docker container. Why? Because docker containers aren’t meant to keep their state, so the things you want to achieve by having an SFTP server such as uploading or deleting files doesn’t correlate that well to doing it in ...