InterviewSolution
Saved Bookmarks
| 1. |
How is Reliability achieved in MuleSoft? |
|
Answer» Reliability in Mule MEANS Zero message LOSS. To make this happen, applications must be designed in a way to capture the STATE of a running process/instance, which can be picked up by another running node in the cluster. Reliable messaging is given by built-in support of transactions in transport, if the application uses a transactional transport such as Java Message Service (JMS), Virtual Machine (VM), Database (DB), etc. A reliable messaging pattern is essential when dealing with non-transactional endpoints. |
|