Reduce requests calls

Hello,

We are working with imp005 & AWS. Right now our sensor is sending us a lot of data every sec (~30 data frames/sec).
We try to work with AWS Kinesis and AWS SQS, and after some time we are getting back a response from AWS with 429 status code (Too Many Requests response status code).

Is this something I can handle on the Agent side? (keep the connection open for example…?) Or should I talk with AWS support?

Thanks!

The best way is likely to just batch requests - collect, say, 10 seconds worth of data and submit it in a single Kinesis request. You use “putRecords()” vs “putRecord()” in the Kinesis library.

This topic was automatically closed after 60 days. New replies are no longer allowed.