Search in sources :

Example 1 with ReloadManagerImpl

use of org.apache.activemq.artemis.core.server.reload.ReloadManagerImpl in project activemq-artemis by apache.

the class ActiveMQServerImpl method initialisePart1.

/**
 * Starts everything apart from RemotingService and loading the data.
 * <p>
 * After optional intermediary steps, Part 1 is meant to be followed by part 2
 * {@link #initialisePart2(boolean)}.
 *
 * @param scalingDown
 */
synchronized boolean initialisePart1(boolean scalingDown) throws Exception {
    if (state == SERVER_STATE.STOPPED)
        return false;
    if (configuration.getJournalType() == JournalType.ASYNCIO) {
        if (!AIOSequentialFileFactory.isSupported()) {
            ActiveMQServerLogger.LOGGER.switchingNIO();
            configuration.setJournalType(JournalType.NIO);
        } else if (!AIOSequentialFileFactory.isSupported(configuration.getJournalLocation())) {
            ActiveMQServerLogger.LOGGER.switchingNIOonPath(configuration.getJournalLocation().getAbsolutePath());
            configuration.setJournalType(JournalType.NIO);
        }
    }
    managementService = new ManagementServiceImpl(mbeanServer, configuration);
    if (configuration.getMemoryMeasureInterval() != -1) {
        memoryManager = new MemoryManager(configuration.getMemoryWarningThreshold(), configuration.getMemoryMeasureInterval());
        memoryManager.start();
    }
    // Create the hard-wired components
    callPreActiveCallbacks();
    // startReplication();
    storageManager = createStorageManager();
    if (configuration.getClusterConfigurations().size() > 0 && ActiveMQDefaultConfiguration.getDefaultClusterUser().equals(configuration.getClusterUser()) && ActiveMQDefaultConfiguration.getDefaultClusterPassword().equals(configuration.getClusterPassword())) {
        ActiveMQServerLogger.LOGGER.clusterSecurityRisk();
    }
    securityStore = new SecurityStoreImpl(securityRepository, securityManager, configuration.getSecurityInvalidationInterval(), configuration.isSecurityEnabled(), configuration.getClusterUser(), configuration.getClusterPassword(), managementService);
    queueFactory = new QueueFactoryImpl(executorFactory, scheduledPool, addressSettingsRepository, storageManager, this);
    pagingManager = createPagingManager();
    resourceManager = new ResourceManagerImpl((int) (configuration.getTransactionTimeout() / 1000), configuration.getTransactionTimeoutScanPeriod(), scheduledPool);
    postOffice = new PostOfficeImpl(this, storageManager, pagingManager, queueFactory, managementService, configuration.getMessageExpiryScanPeriod(), configuration.getMessageExpiryThreadPriority(), configuration.getWildcardConfiguration(), configuration.getIDCacheSize(), configuration.isPersistIDCache(), addressSettingsRepository);
    // This can't be created until node id is set
    clusterManager = new ClusterManager(executorFactory, this, postOffice, scheduledPool, managementService, configuration, nodeManager, haPolicy.isBackup());
    backupManager = new BackupManager(this, executorFactory, scheduledPool, nodeManager, configuration, clusterManager);
    clusterManager.deploy();
    remotingService = new RemotingServiceImpl(clusterManager, configuration, this, managementService, scheduledPool, protocolManagerFactories, executorFactory.getExecutor(), serviceRegistry);
    messagingServerControl = managementService.registerServer(postOffice, securityStore, storageManager, configuration, addressSettingsRepository, securityRepository, resourceManager, remotingService, this, queueFactory, scheduledPool, pagingManager, haPolicy.isBackup());
    if (!scalingDown) {
        deployAddressSettingsFromConfiguration();
    }
    storageManager.start();
    postOffice.start();
    pagingManager.start();
    managementService.start();
    resourceManager.start();
    deploySecurityFromConfiguration();
    deployGroupingHandlerConfiguration(configuration.getGroupingHandlerConfiguration());
    this.reloadManager = new ReloadManagerImpl(getScheduledPool(), executorFactory.getExecutor(), configuration.getConfigurationFileRefreshPeriod());
    if (configuration.getConfigurationUrl() != null && getScheduledPool() != null) {
        reloadManager.addCallback(configuration.getConfigurationUrl(), new ConfigurationFileReloader());
    }
    return true;
}
Also used : ManagementServiceImpl(org.apache.activemq.artemis.core.server.management.impl.ManagementServiceImpl) RemotingServiceImpl(org.apache.activemq.artemis.core.remoting.server.impl.RemotingServiceImpl) ReloadManagerImpl(org.apache.activemq.artemis.core.server.reload.ReloadManagerImpl) ResourceManagerImpl(org.apache.activemq.artemis.core.transaction.impl.ResourceManagerImpl) SecurityStoreImpl(org.apache.activemq.artemis.core.security.impl.SecurityStoreImpl) MemoryManager(org.apache.activemq.artemis.core.server.MemoryManager) ClusterManager(org.apache.activemq.artemis.core.server.cluster.ClusterManager) BackupManager(org.apache.activemq.artemis.core.server.cluster.BackupManager) PostOfficeImpl(org.apache.activemq.artemis.core.postoffice.impl.PostOfficeImpl)

Example 2 with ReloadManagerImpl

use of org.apache.activemq.artemis.core.server.reload.ReloadManagerImpl in project activemq-artemis by apache.

the class ReloadManagerTest method startScheduled.

@Before
public void startScheduled() {
    scheduledExecutorService = new ScheduledThreadPoolExecutor(5);
    executorService = Executors.newSingleThreadExecutor();
    manager = new ReloadManagerImpl(scheduledExecutorService, executorService, 100);
}
Also used : ReloadManagerImpl(org.apache.activemq.artemis.core.server.reload.ReloadManagerImpl) ScheduledThreadPoolExecutor(java.util.concurrent.ScheduledThreadPoolExecutor) Before(org.junit.Before)

Aggregations

ReloadManagerImpl (org.apache.activemq.artemis.core.server.reload.ReloadManagerImpl)2 ScheduledThreadPoolExecutor (java.util.concurrent.ScheduledThreadPoolExecutor)1 PostOfficeImpl (org.apache.activemq.artemis.core.postoffice.impl.PostOfficeImpl)1 RemotingServiceImpl (org.apache.activemq.artemis.core.remoting.server.impl.RemotingServiceImpl)1 SecurityStoreImpl (org.apache.activemq.artemis.core.security.impl.SecurityStoreImpl)1 MemoryManager (org.apache.activemq.artemis.core.server.MemoryManager)1 BackupManager (org.apache.activemq.artemis.core.server.cluster.BackupManager)1 ClusterManager (org.apache.activemq.artemis.core.server.cluster.ClusterManager)1 ManagementServiceImpl (org.apache.activemq.artemis.core.server.management.impl.ManagementServiceImpl)1 ResourceManagerImpl (org.apache.activemq.artemis.core.transaction.impl.ResourceManagerImpl)1 Before (org.junit.Before)1