Hi! Is it possible to close connections early in http client? I'm fetching first rows from large files on S3 and don't need to transfer the whole files.
Not sure about closing the connection early in http, but if you know the size of your rows, you can use Range header (https://stackoverflow.com/questions/36436057/s3-how-to-do-a-partial-read-seek-without-downloading-the-complete-file)
:thumbsup: thanks! this does exactly what I want.