0

I have 300 webapps in a single Tomcat. It takes a while to restart Tomcat plus a few other limitations. I have Two web servers load balanced in current Apache + Mod_JK + Tomcat setup.

These servers has enough memory/ ready to add extra memory to the servers.

Is it a good solution to launch a second Tomcat instance and divide these webapps between these two Tomcat instances?

EEAA
  • 109,363
  • 18
  • 175
  • 245
user37143
  • 171
  • 1
  • 4
  • 14

1 Answers1

1

Yes, this is a good idea. There are other benefits such:

  • allocating specific resources to each instance
  • preventing bad code from impacting all apps
  • reduced maintenance impacts from app code changes
Xenoactive
  • 26
  • 1