Oracle
 sql >> Database >  >> RDS >> Oracle

Perdita di memoria Permgen con ridistribuzione a caldo e database Oracle

Prova a spostare il driver Oracle JDBC nella directory lib di Tomcat invece di trovarsi all'interno della cartella lib dell'applicazione. Sembra che OracleDiagnosabilityMBean stia ottenendo un controllo su Catalina.

Modifica:poiché non hai il controllo su Tomcat, prova a eseguire il wrapping di dove vengono caricate le classi Oracle in questo modo (tranne sostituire AppContext per Oracle init):

http://cdivilly.wordpress.com/2012/04/ 23/perdita-di-memoria-permgen/

//somewhere in application startup, e.g. the ServletContextListener
try {
 final ClassLoader active = Thread.currentThread().getContextClassLoader();
 try {
  //Find the root classloader
  ClassLoader root = active;
  while (root.getParent() != null) {
   root = root.getParent();
  }
  //Temporarily make the root class loader the active class loader
  Thread.currentThread().setContextClassLoader(root);
  //Force the AppContext singleton to be created and initialized
  sun.awt.AppContext.getAppContext();
 } finally {
 //restore the class loader
 Thread.currentThread().setContextClassLoader(active);   
}
} catch ( Throwable t) {
   //Carry on if we get an error
   LOG.warning("Failed to address PermGen leak");
}