Search in sources :

Example 1 with TransactionService

use of com.sun.enterprise.transaction.config.TransactionService in project Payara by payara.

the class TransactionLifecycleService method onReady.

public void onReady() {
    _logger.fine("ON TM READY STARTED");
    TransactionService txnService = habitat.getService(TransactionService.class);
    if (txnService != null) {
        boolean isAutomaticRecovery = Boolean.valueOf(txnService.getAutomaticRecovery());
        if (isAutomaticRecovery) {
            _logger.fine("ON TM RECOVERY START");
            tm = habitat.getService(JavaEETransactionManager.class);
            tm.initRecovery(false);
            _logger.fine("ON TM RECOVERY END");
        }
    }
    _logger.fine("ON TM READY FINISHED");
}
Also used : TransactionService(com.sun.enterprise.transaction.config.TransactionService) JavaEETransactionManager(com.sun.enterprise.transaction.api.JavaEETransactionManager)

Example 2 with TransactionService

use of com.sun.enterprise.transaction.config.TransactionService in project Payara by payara.

the class JavaEETransactionManagerSimplified method initProperties.

private void initProperties() {
    // FIXME: this maxEntry should be a config
    int maxEntries = 8192;
    // FIXME: this loadFactor should be a config
    float loadFactor = 0.75f;
    // for now, let's get it from system prop
    try {
        String mEnlistDelists = System.getProperty("ALLOW_MULTIPLE_ENLISTS_DELISTS");
        if ("true".equals(mEnlistDelists)) {
            multipleEnlistDelists = true;
            if (_logger.isLoggable(Level.FINE))
                _logger.log(Level.FINE, "TM: multiple enlists, delists are enabled");
        }
        String maxEntriesValue = System.getProperty("JTA_RESOURCE_TABLE_MAX_ENTRIES");
        if (maxEntriesValue != null) {
            int temp = Integer.parseInt(maxEntriesValue);
            if (temp > 0) {
                maxEntries = temp;
            }
        }
        String loadFactorValue = System.getProperty("JTA_RESOURCE_TABLE_DEFAULT_LOAD_FACTOR");
        if (loadFactorValue != null) {
            float f = Float.parseFloat(loadFactorValue);
            if (f > 0) {
                loadFactor = f;
            }
        }
    } catch (Exception ex) {
    // ignore
    }
    resourceTable = new BaseCache();
    ((BaseCache) resourceTable).init(maxEntries, loadFactor, null);
    if (habitat != null) {
        TransactionService txnService = habitat.getService(TransactionService.class, ServerEnvironment.DEFAULT_INSTANCE_NAME);
        // running on the server side ?
        if (txnService != null) {
            transactionTimeout = Integer.parseInt(txnService.getTimeoutInSeconds());
            // the delegates will do the rest if they support it
            String v = txnService.getPropertyValue("purge-cancelled-transactions-after");
            if (v != null && v.length() > 0) {
                purgeCancelledTtransactions = Integer.parseInt(v);
            }
            TransactionServiceConfigListener listener = habitat.getService(TransactionServiceConfigListener.class);
            listener.setTM(this);
        }
        ModuleMonitoringLevels levels = habitat.getService(ModuleMonitoringLevels.class);
        // running on the server side ?
        if (levels != null) {
            String level = levels.getTransactionService();
            if (!("OFF".equals(level))) {
                monitoringEnabled = true;
            }
        }
    }
    // ENF OF BUG 4665539
    if (_logger.isLoggable(Level.FINE))
        _logger.log(Level.FINE, "TM: Tx Timeout = " + transactionTimeout);
    // START IASRI 4705808 TTT004 -- monitor resource table stats
    try {
        // XXX TODO:
        if (Boolean.getBoolean("MONITOR_JTA_RESOURCE_TABLE_STATISTICS")) {
            registerStatisticMonitorTask();
        }
        StatsProviderManager.register(// element in domain.xml <monitoring-service>/<monitoring-level>
        "transaction-service", // server.transaction-service node in asadmin get
        PluginPoint.SERVER, // server.transaction-service node in asadmin get
        "transaction-service", new TransactionServiceStatsProvider(this, _logger));
    } catch (Exception ex) {
    // ignore
    }
    monitor = new TransactionServiceProbeProvider();
}
Also used : TransactionService(com.sun.enterprise.transaction.config.TransactionService) ModuleMonitoringLevels(com.sun.enterprise.config.serverbeans.ModuleMonitoringLevels) BaseCache(com.sun.appserv.util.cache.BaseCache) PluginPoint(org.glassfish.external.probe.provider.PluginPoint) InvocationException(org.glassfish.api.invocation.InvocationException) WorkException(javax.resource.spi.work.WorkException) RemoteException(java.rmi.RemoteException) XAException(javax.transaction.xa.XAException) TransactionServiceStatsProvider(com.sun.enterprise.transaction.monitoring.TransactionServiceStatsProvider) TransactionServiceProbeProvider(com.sun.enterprise.transaction.monitoring.TransactionServiceProbeProvider)

Example 3 with TransactionService

use of com.sun.enterprise.transaction.config.TransactionService in project Payara by payara.

the class TransactionServiceProperties method getJTSProperties.

public static synchronized Properties getJTSProperties(ServiceLocator serviceLocator, boolean isORBAvailable) {
    if (orbAvailable == isORBAvailable && properties != null) {
        // We will need to update the properties if ORB availability changed
        return properties;
    }
    Properties jtsProperties = new Properties();
    if (serviceLocator != null) {
        jtsProperties.put(HABITAT, serviceLocator);
        ProcessEnvironment processEnv = serviceLocator.getService(ProcessEnvironment.class);
        if (processEnv.getProcessType().isServer()) {
            TransactionService txnService = serviceLocator.getService(TransactionService.class, ServerEnvironment.DEFAULT_INSTANCE_NAME);
            if (txnService != null) {
                jtsProperties.put(Configuration.HEURISTIC_DIRECTION, txnService.getHeuristicDecision());
                jtsProperties.put(Configuration.KEYPOINT_COUNT, txnService.getKeypointInterval());
                String automaticRecovery = txnService.getAutomaticRecovery();
                boolean isAutomaticRecovery = (isValueSet(automaticRecovery) && "true".equals(automaticRecovery));
                if (isAutomaticRecovery) {
                    _logger.log(Level.FINE, "Recoverable J2EE Server");
                    jtsProperties.put(Configuration.MANUAL_RECOVERY, "true");
                }
                boolean disable_distributed_transaction_logging = false;
                String dbLoggingResource = null;
                for (Property prop : txnService.getProperty()) {
                    String name = prop.getName();
                    String value = prop.getValue();
                    if (name.equals("disable-distributed-transaction-logging")) {
                        if (isValueSet(value) && "true".equals(value)) {
                            disable_distributed_transaction_logging = true;
                        }
                    } else if (name.equals("xaresource-txn-timeout")) {
                        if (isValueSet(value)) {
                            _logger.log(Level.FINE, "XAResource transaction timeout is" + value);
                            TransactionManagerImpl.setXAResourceTimeOut(Integer.parseInt(value));
                        }
                    } else if (name.equals("db-logging-resource")) {
                        dbLoggingResource = value;
                        _logger.log(Level.FINE, "Transaction DB Logging Resource Name" + dbLoggingResource);
                        if (dbLoggingResource != null && (" ".equals(dbLoggingResource) || "".equals(dbLoggingResource))) {
                            dbLoggingResource = "jdbc/TxnDS";
                        }
                    } else if (name.equals("xa-servername")) {
                        if (isValueSet(value)) {
                            jtsProperties.put(JTS_XA_SERVER_NAME, value);
                        }
                    } else if (name.equals("pending-txn-cleanup-interval")) {
                        if (isValueSet(value)) {
                            jtsProperties.put("pending-txn-cleanup-interval", value);
                        }
                    } else if (name.equals(Configuration.COMMIT_ONE_PHASE_DURING_RECOVERY)) {
                        if (isValueSet(value)) {
                            jtsProperties.put(Configuration.COMMIT_ONE_PHASE_DURING_RECOVERY, value);
                        }
                    } else if (name.equals("add-wait-point-during-recovery")) {
                        if (isValueSet(value)) {
                            try {
                                FailureInducer.setWaitPointRecovery(Integer.parseInt(value));
                            } catch (Exception e) {
                                _logger.log(Level.WARNING, e.getMessage());
                            }
                        }
                    }
                }
                if (dbLoggingResource != null) {
                    disable_distributed_transaction_logging = true;
                    jtsProperties.put(Configuration.DB_LOG_RESOURCE, dbLoggingResource);
                }
                /**
                 *                       JTS_SERVER_ID needs to be unique for each for server instance.
                 *                       This will be used as recovery identifier along with the hostname
                 *                       for example: if the hostname is 'tulsa' and iiop-listener-port is 3700
                 *                       recovery identifier will be tulsa,P3700
                 */
                // default value
                int jtsServerId = DEFAULT_SERVER_ID;
                if (isORBAvailable) {
                    jtsServerId = serviceLocator.<GlassFishORBHelper>getService(GlassFishORBHelper.class).getORBInitialPort();
                    if (jtsServerId == 0) {
                        // XXX Can this ever happen?
                        // default value
                        jtsServerId = DEFAULT_SERVER_ID;
                    }
                }
                jtsProperties.put(JTS_SERVER_ID, String.valueOf(jtsServerId));
                /* ServerId is an J2SE persistent server activation
                       API.  ServerId is scoped at the ORBD.  Since
                       There is no ORBD present in J2EE the value of
                       ServerId is meaningless - except it must have
                       SOME value if persistent POAs are created.
                     */
                // For clusters - all servers in the cluster MUST
                // have the same ServerId so when failover happens
                // and requests are delivered to a new server, the
                // ServerId in the request will match the new server.
                String serverId = String.valueOf(DEFAULT_SERVER_ID);
                System.setProperty(J2EE_SERVER_ID_PROP, serverId);
                ServerContext ctx = serviceLocator.getService(ServerContext.class);
                String instanceName = ctx.getInstanceName();
                /**
                 * if the auto recovery is true, always transaction logs will be written irrespective of
                 * disable_distributed_transaction_logging.
                 * if the auto recovery is false, then disable_distributed_transaction_logging will be used
                 * to write transaction logs are not.If disable_distributed_transaction_logging is set to
                 * false(by default false) logs will be written, set to true logs won't be written.
                 */
                if (!isAutomaticRecovery && disable_distributed_transaction_logging) {
                    Configuration.disableFileLogging();
                } else {
                    // if (dbLoggingResource == null) {
                    Domain domain = serviceLocator.getService(Domain.class);
                    Server server = domain.getServerNamed(instanceName);
                    // Check if the server system property is set
                    String logdir = getTXLogDir(server);
                    // if not, check if the cluster system property is set
                    if (logdir == null) {
                        Cluster cluster = server.getCluster();
                        if (cluster != null) {
                            logdir = getTXLogDir(cluster);
                        }
                    }
                    // No system properties are set - get tx log dir from transaction service
                    if (logdir == null) {
                        logdir = txnService.getTxLogDir();
                    }
                    if (logdir == null) {
                        logdir = domain.getLogRoot();
                        if (logdir == null) {
                            // logdir = FileUtil.getAbsolutePath(".." + File.separator + "logs");
                            logdir = ".." + File.separator + "logs";
                        }
                    } else if (!(new File(logdir)).isAbsolute()) {
                        if (_logger.isLoggable(Level.FINE)) {
                            _logger.log(Level.FINE, "Relative pathname specified for transaction log directory : " + logdir);
                        }
                        String logroot = domain.getLogRoot();
                        if (logroot != null) {
                            logdir = logroot + File.separator + logdir;
                        } else {
                            // logdir = FileUtil.getAbsolutePath(".." + File.separator + "logs"
                            // + File.separator + logdir);
                            logdir = ".." + File.separator + "logs" + File.separator + logdir;
                        }
                    }
                    logdir += File.separator + instanceName + File.separator + "tx";
                    if (_logger.isLoggable(Level.FINE)) {
                        _logger.log(Level.FINE, "JTS log directory: " + logdir);
                        _logger.log(Level.FINE, "JTS Server id " + jtsServerId);
                    }
                    jtsProperties.put(Configuration.LOG_DIRECTORY, logdir);
                }
                jtsProperties.put(Configuration.COMMIT_RETRY, txnService.getRetryTimeoutInSeconds());
                jtsProperties.put(Configuration.INSTANCE_NAME, instanceName);
            }
        }
    }
    properties = jtsProperties;
    orbAvailable = isORBAvailable;
    return properties;
}
Also used : TransactionService(com.sun.enterprise.transaction.config.TransactionService) Server(com.sun.enterprise.config.serverbeans.Server) Cluster(com.sun.enterprise.config.serverbeans.Cluster) GlassFishORBHelper(org.glassfish.enterprise.iiop.api.GlassFishORBHelper) Properties(java.util.Properties) ProcessEnvironment(org.glassfish.api.admin.ProcessEnvironment) ServerContext(org.glassfish.internal.api.ServerContext) Domain(com.sun.enterprise.config.serverbeans.Domain) Property(org.jvnet.hk2.config.types.Property) SystemProperty(com.sun.enterprise.config.serverbeans.SystemProperty) File(java.io.File)

Aggregations

TransactionService (com.sun.enterprise.transaction.config.TransactionService)3 BaseCache (com.sun.appserv.util.cache.BaseCache)1 Cluster (com.sun.enterprise.config.serverbeans.Cluster)1 Domain (com.sun.enterprise.config.serverbeans.Domain)1 ModuleMonitoringLevels (com.sun.enterprise.config.serverbeans.ModuleMonitoringLevels)1 Server (com.sun.enterprise.config.serverbeans.Server)1 SystemProperty (com.sun.enterprise.config.serverbeans.SystemProperty)1 JavaEETransactionManager (com.sun.enterprise.transaction.api.JavaEETransactionManager)1 TransactionServiceProbeProvider (com.sun.enterprise.transaction.monitoring.TransactionServiceProbeProvider)1 TransactionServiceStatsProvider (com.sun.enterprise.transaction.monitoring.TransactionServiceStatsProvider)1 File (java.io.File)1 RemoteException (java.rmi.RemoteException)1 Properties (java.util.Properties)1 WorkException (javax.resource.spi.work.WorkException)1 XAException (javax.transaction.xa.XAException)1 ProcessEnvironment (org.glassfish.api.admin.ProcessEnvironment)1 InvocationException (org.glassfish.api.invocation.InvocationException)1 GlassFishORBHelper (org.glassfish.enterprise.iiop.api.GlassFishORBHelper)1 PluginPoint (org.glassfish.external.probe.provider.PluginPoint)1 ServerContext (org.glassfish.internal.api.ServerContext)1