mulemule-studiomule-cluster

Does Mule ESB Supports Multi Tenancy


Hi I am working with Mule ESB and I just want to know that it supports Multi Tenancy Or not ?


Solution

  • The Mule Application server is like a servlet container. In fact quite similar to JBoss. So just like in any other app serer you can install different apps for different client.

    However there is obviously a risk that one of your apps does something dodgy that for instance: - eats up all the memory, CPU, disk space - invokes a very bad program, like a groovy script that does a system.exit(); command Or other.

    So I guess the general answer is: As long as you know what applications are running in parallel you can run them. But it is definitely not a "hosting server" to rent web space on like a virtual host on Apache HTTPD.

    Sebastian