DEV Community

Discussion on: Is RabbitMQ a fit solution for request timeout problem ?

Collapse
 
haamida profile image
Hamida

Yes as a caller we need to know that the request is completed.
My app is actually waiting for a response to move to another step of the transaction.
With the current timeout problem, we are losing complete transactions since we have no sucessfull response from the API.

Collapse
 
alanmbarr profile image
Alan Barr

Is this a public end user making the call or is it an internal business person?

Thread Thread
 
haamida profile image
Hamida

It's a public user, and through our service he reach the external API to make the transaction, and by its end we need yo present him with a response

Collapse
 
jamesmh profile image
James Hickey

In this case, you might want to look into the Saga pattern?