流式传输由其他流组成的存档

问题描述 投票:3回答:1

假设我在s3中有很多文件,并且根据用户请求我想要开始流式传输从其他s3文件流构建的存档。是否可以像下面那样实现流量流?什么档案提供asyc作曲和流媒体?

+----------+ (async download)   +-------+
| S3 file1 |------------------->|       |
+----------+                    |       | stream to user over HTTP
                                |Archive| ------------------------> Usser
+----------+ (async download)   |       |
| S3 file1 |------------------->|       |
+----------+                    +-------+
scala amazon-s3 akka-stream akka-http
1个回答
-1
投票

Alpakka提供了一个S3连接器,允许您在Akka应用程序中使用S3作为源和接收器。

您可以将它与Akka Http一起用于在HTTP上传输S3数据。

https://developer.lightbend.com/docs/alpakka/current/s3.html

© www.soinside.com 2019 - 2024. All rights reserved.