Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前有一个 GET API 端点,它可以为我提供对象的实时数据。我想设置 AWS Kinesis Data Stream,使其每 5 秒从 API 请求数据并将输出定向到 AWS RDS。如何让 kinesis 每 5 秒查询一次 API?
如何让 kinesis 每 5 秒查询一次 API?
你不能因为 kinesis 没有这样的功能。你必须自己实现它。例如,每 5 秒查询一次端点并将记录注入流的 lambda 函数。