Mercurial > dive4elements > river
view flys-backend/src/main/java/de/intevation/flys/backend/SessionFactoryProvider.java @ 5779:ebec12def170
Datacage: Add a pool of builders to make it multi threadable.
XML DOM is not thread safe. Therefore the old implementation only allowed one thread
to use the builder at a time. As the complexity of the configuration
has increased over time this has become a bottleneck of the whole application
because it took quiet some time to build a result. Furthermore the builder code path
is visited very frequent. So many concurrent requests were piled up
resulting in long waits for the users.
To mitigate this problem a round robin pool of builders is used now.
Each of the pooled builders has an independent copy of the XML template
and can be run in parallel.
The number of builders is determined by the system property
'flys.datacage.pool.size'. It defaults to 4.
author | Sascha L. Teichmann <teichmann@intevation.de> |
---|---|
date | Sun, 21 Apr 2013 12:48:09 +0200 |
parents | a2da78fdbec0 |
children |
line wrap: on
line source
package de.intevation.flys.backend; import java.util.Properties; import org.apache.log4j.Logger; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; import org.hibernate.cfg.Environment; import org.hibernate.impl.SessionFactoryImpl; public final class SessionFactoryProvider { private static Logger log = Logger.getLogger(SessionFactoryProvider.class); //public static final boolean ENABLE_JMX = // Boolean.getBoolean("flys.backend.enablejmx"); private static SessionFactory flysSessionFactory; private static SessionFactory sedDBSessionFactory; private SessionFactoryProvider() { } public static synchronized SessionFactory getSessionFactory() { if (flysSessionFactory == null) { flysSessionFactory = createSessionFactory(FLYSCredentials.getInstance()); } return flysSessionFactory; } public static SessionFactory createSessionFactory() { return createSessionFactory(FLYSCredentials.getDefault()); } public static synchronized SessionFactory getSedDBSessionFactory() { if (sedDBSessionFactory == null) { sedDBSessionFactory = createSessionFactory(SedDBCredentials.getInstance()); } return sedDBSessionFactory; } public static SessionFactory createSedDBSessionFactory() { return createSessionFactory(SedDBCredentials.getDefault()); } public static SessionFactory createSessionFactory( Credentials credentials ) { Configuration cfg = createConfiguration(credentials); SessionFactory factory = cfg.buildSessionFactory(); /* if (ENABLE_JMX) { registerAsMBean(factory); } else { log.info("No JMX support for hibernate."); } */ return factory; } /** XXX: Commented out till it is configured correctly. public static void registerAsMBean(SessionFactory factory) { // StatisticsService statsMBean = new StatisticsService(); statsMBean.setSessionFactory(factory); statsMBean.setStatisticsEnabled(true); try { MBeanServer mbs = ManagementFactory.getPlatformMBeanServer(); mbs.registerMBean( statsMBean, new ObjectName("Hibernate:application=Statistics")); log.info("Enabled JMX support for hibernate."); } catch (MalformedObjectNameException mone) { log.warn(mone, mone); } catch (InstanceAlreadyExistsException iaee) { log.warn(iaee, iaee); } catch (MBeanRegistrationException mbre) { log.warn(mbre, mbre); } catch (NotCompliantMBeanException ncmbe) { log.warn(ncmbe, ncmbe); } } */ public static Configuration createConfiguration() { return createConfiguration(FLYSCredentials.getInstance()); } public static Configuration createConfiguration( Credentials credentials ) { Configuration cfg = new Configuration(); for (Class<?> clazz: credentials.getClasses()) { cfg.addAnnotatedClass(clazz); } if (log.isDebugEnabled()) { log.debug("user: " + credentials.getUser()); log.debug("dialect: " + credentials.getDialect()); log.debug("driver: " + credentials.getDriver()); log.debug("url: " + credentials.getUrl()); } Properties props = new Properties(); // We rely on our own connection pool props.setProperty( "hibernate.connection.provider_class", "de.intevation.flys.utils.DBCPConnectionProvider"); props.setProperty(Environment.DIALECT, credentials.getDialect()); props.setProperty(Environment.USER, credentials.getUser()); props.setProperty(Environment.PASS, credentials.getPassword()); props.setProperty(Environment.DRIVER, credentials.getDriver()); props.setProperty(Environment.URL, credentials.getUrl()); String connectionInitSqls = credentials.getConnectionInitSqls(); if (connectionInitSqls != null) { props.setProperty("connectionInitSqls", connectionInitSqls); } cfg.mergeProperties(props); return cfg; } public static String getProperty(SessionFactoryImpl factory, String key) { Properties props = factory.getProperties(); return props.getProperty(key); } public static String getUser(SessionFactoryImpl factory) { return getProperty(factory, Environment.USER); } public static String getPass(SessionFactoryImpl factory) { return getProperty(factory, Environment.PASS); } public static String getURL(SessionFactoryImpl factory) { return getProperty(factory, Environment.URL); } public static String getDriver(SessionFactoryImpl factory) { return getProperty(factory, Environment.DRIVER); } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :