Does Firebase block multiple REST requests from a single server?

We have an application that runs on Heroku and uses Firebase for data. There are several cases where we need to make some logic that requires multiple nested Firebase calls (if method 1 succeeds, create an object using method 2), etc. Unfortunately, they seem a little more verbose than the client side placement method.

We rely on REST api to perform these functions on the server side, but we encounter problems during stress testing, which often fail (especially when issuing a PATCH request).

However, if we run the same test on a different server with the same code and Firebase database, they will not have any problems.

Is there any throttling for multiple requests from the same environment?

+6
source share

All Articles