Streaming S3 object to VertX Http Server Response
问题 The title basically explains itself. I have a REST endpoint with VertX . Upon hitting it, I have some logic which results in an AWS-S3 object. My previous logic was not to upload to S3 , but to save it locally. So, I can do this at the response routerCxt.response().sendFile(file_path...) . Now that the file is in S3, I have to download it locally before I could call the above code. That is slow and inefficient. I would like to stream S3 object directly to the response object. In Express , it