Menyh
Menyh

Reputation: 715

Mule and memory (RAM) usage

i've tried to run mule on 3 cases in order to test it's mem usage:

I did this because i am building a large app that would need this bus to work at all times (weeks at a time).

In all of those cases, the mem usage kept rising. (getting as high as 200mb ram after a few hours) Any specific reasons this could happen?? What is causing mule to take more memory, in all of these cases?

Upvotes: 2

Views: 1317

Answers (1)

Víctor Romero
Víctor Romero

Reputation: 5115

Off the top of my head I'll stick with thread pool lazy initialization as explanation for this behavior. As time goes on and usage gets higher, the thread pools will get fully initialized.

If you want proof evidences take a look to this approach, or this one (with enableStatistics).

Upvotes: 2

Related Questions