I have a list of email addresses that I am using to build a URL that is executed by the HTTP connector. The service I am using (Qwerly) does not allow more than 2 calls per second so I implemented a speed limiter in front of the HTTP connector with a delay of 1500. I see the speed limiter delaying the records; however the HTTP connector waits for all records which violates the queries per second constraint and causes a failure. How can a make sure the HTTP connector executes on only record at a time with a delay of 1-2 seconds per record?
- Ryan