Search in sources :

Example 1 with LoadSheddingTask

use of com.yahoo.pulsar.broker.loadbalance.LoadSheddingTask in project pulsar by yahoo.

the class PulsarService method start.

/**
     * Start the pulsar service instance.
     */
public void start() throws PulsarServerException {
    mutex.lock();
    try {
        if (state != State.Init) {
            throw new PulsarServerException("Cannot start the service once it was stopped");
        }
        // Now we are ready to start services
        localZooKeeperConnectionProvider = new LocalZooKeeperConnectionService(getZooKeeperClientFactory(), config.getZookeeperServers(), config.getZooKeeperSessionTimeoutMillis());
        localZooKeeperConnectionProvider.start(shutdownService);
        // Initialize and start service to access configuration repository.
        this.startZkCacheService();
        managedLedgerClientFactory = new ManagedLedgerClientFactory(config, getZkClient(), getBookKeeperClientFactory());
        this.brokerService = new BrokerService(this);
        // Start load management service (even if load balancing is disabled)
        this.loadManager = new SimpleLoadManagerImpl(this);
        this.startLoadManagementService();
        // needs load management service
        this.startNamespaceService();
        LOG.info("Starting Pulsar Broker service");
        brokerService.start();
        this.webService = new WebService(this);
        this.webService.addRestResources("/", "com.yahoo.pulsar.broker.web", false);
        this.webService.addRestResources("/admin", "com.yahoo.pulsar.broker.admin", true);
        this.webService.addRestResources("/lookup", "com.yahoo.pulsar.broker.lookup", true);
        if (config.isWebSocketServiceEnabled()) {
            // Use local broker address to avoid different IP address when using a VIP for service discovery
            this.webSocketService = new WebSocketService(new ClusterData(webServiceAddress, webServiceAddressTls), config);
            this.webSocketService.start();
            this.webService.addServlet(WebSocketProducerServlet.SERVLET_PATH, new ServletHolder(new WebSocketProducerServlet(webSocketService)), true);
            this.webService.addServlet(WebSocketConsumerServlet.SERVLET_PATH, new ServletHolder(new WebSocketConsumerServlet(webSocketService)), true);
        }
        if (LOG.isDebugEnabled()) {
            LOG.debug("Attempting to add static directory");
        }
        this.webService.addStaticResources("/static", "/static");
        // Register heartbeat and bootstrap namespaces.
        this.nsservice.registerBootstrapNamespaces();
        // Start the leader election service
        this.leaderElectionService = new LeaderElectionService(this, new LeaderListener() {

            @Override
            public synchronized void brokerIsTheLeaderNow() {
                if (getConfiguration().isLoadBalancerEnabled()) {
                    long loadSheddingInterval = TimeUnit.MINUTES.toMillis(getConfiguration().getLoadBalancerSheddingIntervalMinutes());
                    long resourceQuotaUpdateInterval = TimeUnit.MINUTES.toMillis(getConfiguration().getLoadBalancerResourceQuotaUpdateIntervalMinutes());
                    loadSheddingTask = loadManagerExecutor.scheduleAtFixedRate(new LoadSheddingTask(loadManager), loadSheddingInterval, loadSheddingInterval, TimeUnit.MILLISECONDS);
                    loadResourceQuotaTask = loadManagerExecutor.scheduleAtFixedRate(new LoadResourceQuotaUpdaterTask(loadManager), resourceQuotaUpdateInterval, resourceQuotaUpdateInterval, TimeUnit.MILLISECONDS);
                }
            }

            @Override
            public synchronized void brokerIsAFollowerNow() {
                if (loadSheddingTask != null) {
                    loadSheddingTask.cancel(false);
                    loadSheddingTask = null;
                }
                if (loadResourceQuotaTask != null) {
                    loadResourceQuotaTask.cancel(false);
                    loadResourceQuotaTask = null;
                }
            }
        });
        leaderElectionService.start();
        webService.start();
        this.metricsGenerator = new MetricsGenerator(this);
        state = State.Started;
        acquireSLANamespace();
        LOG.info("messaging service is ready, bootstrap service on port={}, broker url={}, cluster={}, configs={}", config.getWebServicePort(), brokerServiceUrl, config.getClusterName(), config);
    } catch (Exception e) {
        LOG.error(e.getMessage(), e);
        throw new PulsarServerException(e);
    } finally {
        mutex.unlock();
    }
}
Also used : LeaderListener(com.yahoo.pulsar.broker.loadbalance.LeaderElectionService.LeaderListener) WebService(com.yahoo.pulsar.broker.web.WebService) ServletHolder(org.eclipse.jetty.servlet.ServletHolder) WebSocketProducerServlet(com.yahoo.pulsar.websocket.WebSocketProducerServlet) LoadResourceQuotaUpdaterTask(com.yahoo.pulsar.broker.loadbalance.LoadResourceQuotaUpdaterTask) WebSocketConsumerServlet(com.yahoo.pulsar.websocket.WebSocketConsumerServlet) IOException(java.io.IOException) ExecutionException(java.util.concurrent.ExecutionException) MetricsGenerator(com.yahoo.pulsar.broker.stats.MetricsGenerator) ClusterData(com.yahoo.pulsar.common.policies.data.ClusterData) SimpleLoadManagerImpl(com.yahoo.pulsar.broker.loadbalance.impl.SimpleLoadManagerImpl) LocalZooKeeperConnectionService(com.yahoo.pulsar.zookeeper.LocalZooKeeperConnectionService) LoadSheddingTask(com.yahoo.pulsar.broker.loadbalance.LoadSheddingTask) LeaderElectionService(com.yahoo.pulsar.broker.loadbalance.LeaderElectionService) WebSocketService(com.yahoo.pulsar.websocket.WebSocketService) BrokerService(com.yahoo.pulsar.broker.service.BrokerService)

Aggregations

LeaderElectionService (com.yahoo.pulsar.broker.loadbalance.LeaderElectionService)1 LeaderListener (com.yahoo.pulsar.broker.loadbalance.LeaderElectionService.LeaderListener)1 LoadResourceQuotaUpdaterTask (com.yahoo.pulsar.broker.loadbalance.LoadResourceQuotaUpdaterTask)1 LoadSheddingTask (com.yahoo.pulsar.broker.loadbalance.LoadSheddingTask)1 SimpleLoadManagerImpl (com.yahoo.pulsar.broker.loadbalance.impl.SimpleLoadManagerImpl)1 BrokerService (com.yahoo.pulsar.broker.service.BrokerService)1 MetricsGenerator (com.yahoo.pulsar.broker.stats.MetricsGenerator)1 WebService (com.yahoo.pulsar.broker.web.WebService)1 ClusterData (com.yahoo.pulsar.common.policies.data.ClusterData)1 WebSocketConsumerServlet (com.yahoo.pulsar.websocket.WebSocketConsumerServlet)1 WebSocketProducerServlet (com.yahoo.pulsar.websocket.WebSocketProducerServlet)1 WebSocketService (com.yahoo.pulsar.websocket.WebSocketService)1 LocalZooKeeperConnectionService (com.yahoo.pulsar.zookeeper.LocalZooKeeperConnectionService)1 IOException (java.io.IOException)1 ExecutionException (java.util.concurrent.ExecutionException)1 ServletHolder (org.eclipse.jetty.servlet.ServletHolder)1