blob: 6dd8d7df48582e888483b825472fa239a4c8d086 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.pulsar.discovery.service;
import static com.google.common.base.Preconditions.checkNotNull;
import com.google.common.base.Preconditions;
import io.netty.bootstrap.ServerBootstrap;
import io.netty.channel.AdaptiveRecvByteBufAllocator;
import io.netty.channel.Channel;
import io.netty.channel.ChannelOption;
import io.netty.channel.EventLoopGroup;
import io.netty.util.concurrent.DefaultThreadFactory;
import java.io.Closeable;
import java.io.IOException;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import lombok.Getter;
import org.apache.pulsar.broker.ServiceConfiguration;
import org.apache.pulsar.broker.authentication.AuthenticationService;
import org.apache.pulsar.broker.authorization.AuthorizationService;
import org.apache.pulsar.broker.cache.ConfigurationCacheService;
import org.apache.pulsar.broker.cache.ConfigurationMetadataCacheService;
import org.apache.pulsar.broker.resources.PulsarResources;
import org.apache.pulsar.common.allocator.PulsarByteBufAllocator;
import org.apache.pulsar.common.configuration.PulsarConfigurationLoader;
import org.apache.pulsar.common.util.netty.EventLoopUtil;
import org.apache.pulsar.discovery.service.server.ServiceConfig;
import org.apache.pulsar.metadata.api.MetadataStoreException;
import org.apache.pulsar.metadata.api.extended.MetadataStoreExtended;
import org.apache.pulsar.zookeeper.ZooKeeperClientFactory;
import org.apache.pulsar.zookeeper.ZookeeperClientFactoryImpl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Main discovery-service which starts component to serve incoming discovery-request over binary-proto channel and
* redirects to one of the active broker
*
*/
public class DiscoveryService implements Closeable {
private final ServiceConfig config;
private String serviceUrl;
private String serviceUrlTls;
private ConfigurationMetadataCacheService configurationCacheService;
private AuthenticationService authenticationService;
private AuthorizationService authorizationService;
private ZooKeeperClientFactory zkClientFactory = null;
private BrokerDiscoveryProvider discoveryProvider;
private final EventLoopGroup acceptorGroup;
private MetadataStoreExtended localMetadataStore;
private MetadataStoreExtended configMetadataStore;
@Getter
private PulsarResources pulsarResources;
@Getter
private final EventLoopGroup workerGroup;
private final DefaultThreadFactory acceptorThreadFactory = new DefaultThreadFactory("pulsar-discovery-acceptor");
private final DefaultThreadFactory workersThreadFactory = new DefaultThreadFactory("pulsar-discovery-io");
private final int numThreads = Runtime.getRuntime().availableProcessors();
private Channel channelListen;
private Channel channelListenTls;
public DiscoveryService(ServiceConfig serviceConfig) {
checkNotNull(serviceConfig);
this.config = serviceConfig;
this.acceptorGroup = EventLoopUtil.newEventLoopGroup(1, acceptorThreadFactory);
this.workerGroup = EventLoopUtil.newEventLoopGroup(numThreads, workersThreadFactory);
}
/**
* Starts discovery service by initializing ZooKeeper and server
*
* @throws Exception
*/
public void start() throws Exception {
localMetadataStore = createLocalMetadataStore();
configMetadataStore = createConfigurationMetadataStore();
pulsarResources = new PulsarResources(localMetadataStore, configMetadataStore);
discoveryProvider = new BrokerDiscoveryProvider(this.config, getZooKeeperClientFactory(), pulsarResources);
this.configurationCacheService = new ConfigurationMetadataCacheService(pulsarResources, null);
ServiceConfiguration serviceConfiguration = PulsarConfigurationLoader.convertFrom(config);
authenticationService = new AuthenticationService(serviceConfiguration);
authorizationService = new AuthorizationService(serviceConfiguration, configurationCacheService);
startServer();
}
/**
* starts server to handle discovery-request from client-channel
*
* @throws Exception
*/
public void startServer() throws Exception {
ServerBootstrap bootstrap = new ServerBootstrap();
bootstrap.childOption(ChannelOption.ALLOCATOR, PulsarByteBufAllocator.DEFAULT);
bootstrap.group(acceptorGroup, workerGroup);
bootstrap.childOption(ChannelOption.TCP_NODELAY, true);
bootstrap.childOption(ChannelOption.RCVBUF_ALLOCATOR,
new AdaptiveRecvByteBufAllocator(1024, 16 * 1024, 1 * 1024 * 1024));
bootstrap.channel(EventLoopUtil.getServerSocketChannelClass(workerGroup));
EventLoopUtil.enableTriggeredMode(bootstrap);
bootstrap.childHandler(new ServiceChannelInitializer(this, config, false));
// Bind and start to accept incoming connections.
Preconditions.checkArgument(config.getServicePort().isPresent() || config.getServicePortTls().isPresent(),
"Either ServicePort or ServicePortTls should be configured.");
if (config.getServicePort().isPresent()) {
// Bind and start to accept incoming connections.
channelListen = bootstrap.bind(config.getServicePort().get()).sync().channel();
LOG.info("Started Pulsar Discovery service on {}", channelListen.localAddress());
}
if (config.getServicePortTls().isPresent()) {
ServerBootstrap tlsBootstrap = bootstrap.clone();
tlsBootstrap.childHandler(new ServiceChannelInitializer(this, config, true));
channelListenTls = tlsBootstrap.bind(config.getServicePortTls().get()).sync().channel();
LOG.info("Started Pulsar Discovery TLS service on port {}", channelListenTls.localAddress());
}
this.serviceUrl = serviceUrl();
this.serviceUrlTls = serviceUrlTls();
}
public ZooKeeperClientFactory getZooKeeperClientFactory() {
if (zkClientFactory == null) {
zkClientFactory = new ZookeeperClientFactoryImpl();
}
// Return default factory
return zkClientFactory;
}
public BrokerDiscoveryProvider getDiscoveryProvider() {
return discoveryProvider;
}
public void close() throws IOException {
discoveryProvider.close();
acceptorGroup.shutdownGracefully();
workerGroup.shutdownGracefully();
try {
localMetadataStore.close();
configMetadataStore.close();
} catch (Exception e) {
throw new IOException(e);
}
}
/**
* Derive the host
*
* @return String containing the hostname
*/
public String host() {
try {
if (!config.isBindOnLocalhost()) {
return InetAddress.getLocalHost().getHostName();
} else {
return "localhost";
}
} catch (Exception e) {
LOG.error(e.getMessage(), e);
throw new IllegalStateException("failed to find host", e);
}
}
public String serviceUrl() {
if (config.getServicePort().isPresent()) {
return new StringBuilder("pulsar://").append(host()).append(":")
.append(((InetSocketAddress) channelListen.localAddress()).getPort())
.toString();
} else {
return null;
}
}
public String serviceUrlTls() {
if (config.getServicePortTls().isPresent()) {
return new StringBuilder("pulsar+ssl://").append(host()).append(":")
.append(((InetSocketAddress) channelListenTls.localAddress()).getPort())
.toString();
} else {
return null;
}
}
public String getServiceUrl() {
return serviceUrl;
}
public String getServiceUrlTls() {
return serviceUrlTls;
}
public ServiceConfig getConfiguration() {
return config;
}
public AuthenticationService getAuthenticationService() {
return authenticationService;
}
public AuthorizationService getAuthorizationService() {
return authorizationService;
}
public ConfigurationCacheService getConfigurationCacheService() {
return configurationCacheService;
}
public void setConfigurationCacheService(ConfigurationMetadataCacheService configurationCacheService) {
this.configurationCacheService = configurationCacheService;
}
private static final Logger LOG = LoggerFactory.getLogger(DiscoveryService.class);
public MetadataStoreExtended createLocalMetadataStore() throws MetadataStoreException {
return PulsarResources.createMetadataStore(config.getZookeeperServers(), config.getZookeeperSessionTimeoutMs());
}
public MetadataStoreExtended createConfigurationMetadataStore() throws MetadataStoreException {
return PulsarResources.createMetadataStore(config.getConfigurationStoreServers(),
config.getZookeeperSessionTimeoutMs());
}
}