Rate Limit on API Calls Solutions
Looking at existing threads
1) one solution stated to use a common dss/system setting to track the no. of api calls which I thought is not sufficient and not possible to implement w/o a queue system.
Are there solutions to this?
In my scenario, the example is not hit 10 tps, I think a queue processor which execute with a single thread in the node only, can be use with a wait method in the processing activity, for example, 0.12 seconds.
Say if the API is responded almost instaneously, with 0.12 seconds delay, then this will hit 8 tps.
In the case flow, the cases will call the queue processor, then while waiting for the API to be return, it will use a loop and a wait shape until the API response is returned.
Are there better solutions?