(本文以 ZooKeeper 版本 3.4.12 为例;可以从链接下载最新的版本)
使用一台机器,在该机器上运行多个 ZooKeeper 服务进程,搭建 ZooKeeper 集群。
# Zookeeper官网下载地址
https://archive.apache.org/dist/zookeeper/
# 以 3.4.12 版本为例 https://archive.apache.org/dist/zookeeper/zookeeper-3.4.12/
# 修改以下5个参数,修改端口号是为了避免在一台服务器上造成端口号冲突
dataDir
dataLogDir
clientPort
admin.enableServer
admin.serverPort
# 添加如下集群节点信息
server.1=127.0.0.1:2888:3888
server.2=127.0.0.1:2889:3889
server.3=127.0.0.1:2890:3890
我的 server1 的 zoo.cfg 文件内容如下:
# The number of milliseconds of each tick
tickTime=2000
# The number of ticks that the initial
# synchronization phase can take
initLimit=10
# The number of ticks that can pass between
# sending a request and getting an acknowledgement
syncLimit=10
# the directory where the snapshot is stored.
# do not use /tmp for storage, /tmp here is just
# example sakes.
dataDir=/Users/bilahepan/Softwares/zookeepers/server1/data
dataLogDir=/Users/bilahepan/Softwares/zookeepers/server1/dataLog
# the port at which the clients will connect
clientPort=2181
# the maximum number of client connections.
# increase this if you need to handle more clients
#maxClientCnxns=60
admin.enableServer=true
admin.serverPort=9181
#
server.1=127.0.0.1:2888:3888
server.2=127.0.0.1:2889:3889
server.3=127.0.0.1:2890:3890
# Be sure to read the maintenance section of the
# administrator guide before turning on autopurge.
#
# http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance
#
# The number of snapshots to retain in dataDir
#autopurge.snapRetainCount=3
# Purge task interval in hours
# Set to "0" to disable auto purge feature
#autopurge.purgeInterval=1
对zoo.cfg 配置参数解释:
tickTime:ZooKeeper 中使用的基本时间单位, 毫秒值,默认2000ms。
initLimit:用来配置 ZooKeeper 服务器集群中Follower服务器初始化连接 Leader 服务器时最长能忍受多少个 tickTime。这里设置为10表示最长容忍时间为10s。
syncLimit:用来配置 Leader 与 Follower 之间发送消息、请求和应答时间最长能忍受多少个 tickTime。这里设置为4表示最长容忍时间为4s。
dataDir:数据文件目录。
dataLogDir:日志文件目录。
clientPort:监听client连接的端口号。
server.{myid}={ip}:{leader服务器交换信息的端口}:{当leader服务器挂了后, 选举leader的端口}
maxClientCnxns:对于一个客户端的连接数限制,默认是60。
admin.enableServer:是否启用 ZooKeeper 管理后台。
admin.serverPort:管理后台端口号。
zoo.cfg 文件在另外两个节点的配置说明:
在一台服务器上,部署多个实例,需要指定不同的端口号。
[1]clientPort: 3个 ZooKeeper 节点中分别配置为:2181,2182,2183
[2]admin.enableServer: 3个 ZooKeeper 节点中都配置为 true
[3]admin.serverPort: 3个 ZooKeeper 节点中分别配置为:9181,9182,9183
[4]集群节点信息3个 ZooKeeper 节点中都配置为:
server.1=127.0.0.1:2888:3888
server.2=127.0.0.1:2889:3889
server.3=127.0.0.1:2890:3890
向 myid 文件中写入内容 1
每一个 ZooKeeper 节点的 myid 文件内容都不能一样,它是不同节点的唯一标识。
3个 ZooKeeper 节点中 myid 文件内容分别为1,2,3
# 启动命令(zkServer.sh start)
./bin/zkServer.sh start
# 状态查看命令(zkServer.sh status)
./bin/zkServer.sh status
# 连接 zookeeper 客户端
./bin/zkCli.sh -timeout 5000 -server 127.0.0.1:2181
# 查看 zookeeper 节点内容
ls /
(bookie 是 BookKeeper 的别称。本文以 4.7.2 版本为例)。
使用一台机器,在该机器上运行多个 bookie 服务进程,搭建 bookie 集群。
# BookKeeper 官网下载地址(本文以 4.7.2 版本为例))
https://bookkeeper.apache.org/releases/
# 修改如下3个参数
bookiePort
httpServerPort
storageserver.grpc.port
# 添加如下ZooKeeper 集群节点信息
zkServers=localhost:2181,localhost:2182,localhost:2183
# 指定两个文件目录地址
journalDirectories=/Users/bilahepan/Softwares/bookkeepers/bookie1/tmp/bk-txn
ledgerDirectories=/Users/bilahepan/Softwares/bookkeepers/bookie1/tmp/bk-data
bk_server.conf 文件在另外两个节点的配置说明:
在一台服务器上,部署多个实例,需要指定不同的端口号。
[1]bookiePort: 3个 bookie 节点中分别配置为:3181,3182,3183
[2]httpServerPort: 3个 bookie 节点中都配置为:8050,8060,8070
[3]storageserver.grpc.port: 3个 bookie 节点中都配置为: 4181,4182,4183
[4]zk集群节点信息: 3个 bookie 中都配置为:
zkServers=localhost:2181,localhost:2182,localhost:2183
./bin/bookkeeper shell metaformat
./bin/bookkeeper bookie
./bin/bookkeeper shell bookiesanity
broker 是 Pulsar 实例别称。(本文以 2.2.0 版本为例)。
使用一台机器,在该机器上运行多个 broker 服务进程,搭建 broker 集群。
# 本文以2.2.0 版本为例,建议下载最新版本
# Pulsar官网下载地址(apache-pulsar-2.2.0-bin-tar.gz)
http://pulsar.apache.org/zh-CN/download/
# 修改如下4个参数
brokerServicePort
brokerServicePortTls
webServicePort
webServicePortTls
# 添加如下 ZooKeeper 集群节点信息
zookeeperServers=localhost:2181,localhost:2182,localhost:2183
configurationStoreServers=localhost:2181,localhost:2182,localhost:2183
# 指定集群名
clusterName=pulsar-cluster
broker.conf 文件在另外两个节点的配置说明:
在一台服务器上,部署多个实例,需要指定不同的端口号。
[1]brokerServicePort: 3个 broker 节点中分别配置为:6650,6660,6670
[2]brokerServicePortTls: 3个 broker 节点中分别配置为:6651,6661,6671
[3]webServicePort: 3个 broker 节点中分别配置为:8080,8081,8082
[4]webServicePortTls: 3个 broker 节点中分别配置为:8443,8444,8445
[5]zk集群节点信息: 3个 broker 中都配置为:
zookeeperServers=localhost:2181,localhost:2182,localhost:2183
configurationStoreServers=localhost:2181,localhost:2182,localhost:2183
bin/pulsar initialize-cluster-metadata \
--cluster pulsar-cluster \
--zookeeper 127.0.0.1:2181 \
--configuration-store 127.0.0.1:2181 \
--web-service-url http://pulsar.cluster.com:8080 \
--web-service-url-tls https://pulsar.cluster.com:8443 \
--broker-service-url pulsar://pulsar.cluster.com:6650 \
--broker-service-url-tls pulsar+ssl://pulsar.cluster.com:6651
对集群元数据的解释:
--cluster
集群名称
--zookeeper
ZooKeeper集群连接参数,仅需要包含集群中的一个节点即可
--configuration-store
Pulsar实例的配置存储集群(ZooKeeper),和--zookeeper参数一样只需要包含集群中的一个节点即可
--web-service-url
集群Web服务的URL+端口,URL必须是一个标准的DNS名称,默认端口8080,不建议修改。
--web-service-url-tls
集群Web提供TLS服务的URL+端口,端口默认8443,不建议修改。
--broker-service-url
集群brokers服务URL,URL中DNS的名称和Web服务保持一致,URL使用pulsar替代http/http,端口默认6650,不建议修改。
--broker-service-url-tls
集群brokers提供TLS服务的URL,默认端口6551,不建议修改。
./bin/pulsar broker
# 创建集群(集群名:pulsar-cluster)
./bin/pulsar-admin clusters create --url http://pulsar.cluster.com:8080 pulsar-cluster
# 创建租户(租户名:my-tenant)
./bin/pulsar-admin tenants create my-tenant
# 创建命名空间(命名空间名,指定了租户my-tenant:my-tenant/my-namespace)
./bin/pulsar-admin namespaces create my-tenant/my-namespace
# 创建持久性分区topic(topic全名:persistent://my-tenant/my-namespace/my-topic)
./bin/pulsar-admin topics create-partitioned-topic persistent://my-tenant/my-namespace/my-topic -p 3
# 更新命名空间为其指定集群
./bin/pulsar-admin namespaces set-clusters my-tenant/my-namespace --clusters pulsar-cluster
<dependency>
<groupId>org.apache.pulsargroupId>
<artifactId>pulsar-clientartifactId>
<version>2.2.0version>
dependency>
public class PulsarProducerDemo {
private static String localClusterUrl = "pulsar://localhost:6650";
public static void main(String[] args) {
try {
Producer<byte[]> producer = getProducer();
String msg = "hello world pulsar!";
Long start = System.currentTimeMillis();
MessageId msgId = producer.send(msg.getBytes());
System.out.println("spend=" + (System.currentTimeMillis() - start) + ";send a message msgId = " + msgId.toString());
} catch (Exception e) {
System.err.println(e);
}
}
public static Producer<byte[]> getProducer() throws Exception {
PulsarClient client;
client = PulsarClient.builder().serviceUrl(localClusterUrl).build();
Producer<byte[]> producer = client.newProducer().topic("persistent://my-tenant/my-namespace/my-topic").producerName("producerName").create();
return producer;
}
}
public class PulsarConsumerDemo {
private static String localClusterUrl = "pulsar://localhost:6650";
public static void main(String[] args) {
try {
//将订阅消费者指定的主题和订阅
Consumer<byte[]> consumer = getClient().newConsumer()
.topic("persistent://my-tenant/my-namespace/my-topic")
.subscriptionName("my-subscription")
.subscribe();
while (true) {
Message msg = consumer.receive();
System.out.printf("consumer-Message received: %s. \n", new String(msg.getData()));
// 确认消息,以便broker删除消息
consumer.acknowledge(msg);
}
} catch (Exception e) {
System.out.println(e);
}
}
public static PulsarClient getClient() throws Exception {
PulsarClient client;
client = PulsarClient.builder().serviceUrl(localClusterUrl).build();
return client;
}
}