Reputation: 180
I am new to Mulesoft. I have an api in my application which can't handle more than 2000 parallel requests. I am thinking to use Mulesoft as a proxy API which takes the request and hit my API so that even if my API reaches its capacity Mulesoft will pause for sometime and hit my API without loosing any data.
Does Mulesoft solve my issue? if so can anyone please guide me through the process?
Thanks
Upvotes: 0
Views: 220
Reputation: 1
You might have to do the load balancing of your API depending on the peak load requirement.
Upvotes: 0
Reputation: 2233
You probably would want something as simple as the until-successful
scope. You can read up more about that here. The premise of it is this:
You wrap a component in the until-successful
scope, and you define the following:
There are examples in the documentation that I linked to and those should help guide you!
Upvotes: 1