简体   繁体   English

从AWS kinesis流调用休息端点

[英]Calling a rest endpoint from AWS kinesis stream

How do I hit a rest endpoint from a kinesis stream and fetch some data? 如何从kinesis流中获取休止端点并获取一些数据?

Is it even possible to hit a rest endpoint from Kinesis? 是否有可能从Kinesis击中休息终点?

No. Kinesis streams are simply a mechanism to store messages for a fixed time period, so that one or more consumers can read them. 不.Kinesis流只是一种在固定时间段内存储消息的机制,因此一个或多个消费者可以阅读它们。

If you want to do something the the messages on the stream, you need to write a consumer. 如果要对流上的消息执行某些操作,则需要编写使用者。 Either an application that explicitly polls the stream, or a Lambda that is triggered by the stream . 显式轮询流的应用程序,或由流触发Lambda

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM