NRNandinee Ramanathaninnandineeramanathan.hashnode.dev·May 20, 2024 · 4 min readError Handling in Mule 4Messaging error occurs when an event is processed through mule flow that throws an error-Normal execution stops and an event is passed through the first processor in the error handler. If there is no error handler defined, a default error handler is...00
NRNandinee Ramanathaninnandineeramanathan.hashnode.dev·May 16, 2024 · 1 min readCache Scope in Mule 4What is Cache Scope ? Cache is the temporary storage which limits same request processing again. Create a new mule project and add cache scope from mule palatte Configure the cache scope as below. In the caching strategy, choose reference to strate...00
NRNandinee Ramanathaninnandineeramanathan.hashnode.dev·May 16, 2024 · 1 min readChoice Router in Mule 4What is choice router? Choice router is used to route the flow based on the dataweave expression. It is used to route only to one flow. If no match is found it will route to default flow. Example: Create a new mule project and select choice rou...00
NRNandinee Ramanathaninnandineeramanathan.hashnode.dev·May 16, 2024 · 1 min readFirst Successful Router in Mule 4What is first successful ? First successful router iterates through list of configured processing routes until one of the route executes successfully. If any of the route fails , it goes to the next configured route. If none of the routes in this ...00
NRNandinee Ramanathaninnandineeramanathan.hashnode.dev·May 16, 2024 · 1 min readScatter Gather Flow in Mule 4What is scatter gather ? The Scatter-Gather component can send messages to all the routes concurrently. This means that when a route is being processed the remaining routes must have to wait for its completion. Each route executes in its own threa...00