aleph

karlis 2018-09-03T11:31:41.000100Z

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.

bertofer 2018-09-03T13:45:09.000100Z

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)

karlis 2018-09-05T08:26:13.000100Z

:thumbsup: thanks! this does exactly what I want.