提示
在 Pulsar 部署中启用所有内置的 Pulsar IO connector,可以使用
apachepulsar/pulsar-all
镜像而不是apachepulsar/pulsar
镜像。apachepulsar/pulsar-all
镜像已经捆绑了所有内置 connector。
Pulsar can be easily deployed in Kubernetes clusters, either in managed clusters on Google Kubernetes Engine or Amazon Web Services or in custom clusters.
本指南中显示的部署方法依赖 YAML 定义的 Kubernetes 资源。 The kubernetes
subdirectory of the Pulsar package holds resource definitions for:
- 双bookie BookKeeper集群
- 三个节点的ZooKeeper 集群
- 三个broker的Pulsar集群
- A monitoring stack consisting of Prometheus, Grafana, and the Pulsar dashboard
- A pod from which you can run administrative commands using the
pulsar-admin
CLI tool
Setup
To get started, install a source package from the downloads page.
Please note that the Pulsar binary package will not contain the necessary YAML resources to deploy Pulsar on Kubernetes.
If you’d like to change the number of bookies, brokers, or ZooKeeper nodes in your Pulsar cluster, modify the replicas
parameter in the spec
section of the appropriate Deployment
or StatefulSet
resource.
Pulsar on Google Kubernetes Engine
Google Kubernetes Engine (GKE) automates the creation and management of Kubernetes clusters in Google Compute Engine (GCE).
先决条件
To get started, you’ll need:
- A Google Cloud Platform account, which you can sign up for at cloud.google.com
- An existing Cloud Platform project
- The Google Cloud SDK (in particular the
gcloud
andkubectl
tools).
Create a new Kubernetes cluster
You can create a new GKE cluster using the container clusters create
command for gcloud
. This command enables you to specify the number of nodes in the cluster, the machine types of those nodes, and more.
As an example, we’ll create a new GKE cluster for Kubernetes version 1.6.4 in the us-central1-a zone. The cluster will be named pulsar-gke-cluster
and will consist of three VMs, each using two locally attached SSDs and running on n1-standard-8 machines. These SSDs will be used by bookie instances, one for the BookKeeper journal and the other for storing the actual message data.
$ gcloud container clusters create pulsar-gke-cluster \
--zone=us-central1-a \
--machine-type=n1-standard-8 \
--num-nodes=3 \
--local-ssd-count=2 \
By default, bookies will run on all the machines that have locally attached SSD disks. In this example, all of those machines will have two SSDs, but you can add different types of machines to the cluster later. You can control which machines host bookie servers using labels.
Dashboard
You can observe your cluster in the Kubernetes Dashboard by downloading the credentials for your Kubernetes cluster and opening up a proxy to the cluster:
$ gcloud container clusters get-credentials pulsar-gke-cluster \
--zone=us-central1-a \
--project=your-project-name
$ kubectl proxy
By default, the proxy will be opened on port 8001. Now you can navigate to localhost:8001/ui in your browser to access the dashboard. At first your GKE cluster will be empty, but that will change as you begin deploying Pulsar components using kubectl
component by component, or using helm
.
Pulsar on Amazon Web Services
You can run Kubernetes on Amazon Web Services (AWS) in a variety of ways. A very simple way that was recently introduced involves using the Kubernetes Operations (kops) tool.
You can find detailed instructions for setting up a Kubernetes cluster on AWS here.
When you create a cluster using those instructions, your kubectl
config in ~/.kube/config
(on MacOS and Linux) will be updated for you, so you probably won’t need to change your configuration. Nonetheless, you can ensure that kubectl
can interact with your cluster by listing the nodes in the cluster:
$ kubectl get nodes
If kubectl
is working with your cluster, you can proceed to deploy Pulsar components using kubectl
component by component, or using helm
.
Pulsar on a custom Kubernetes cluster
Pulsar can be deployed on a custom, non-GKE Kubernetes cluster as well. You can find detailed documentation on how to choose a Kubernetes installation method that suits your needs in the Picking the Right Solution guide in the Kubernetes docs.
The easiest way to run a Kubernetes cluster is to do so locally. To install a mini local cluster for testing purposes, running in local VMs, you can either:
- Use minikube to run a single-node Kubernetes cluster
- Create a local cluster running on multiple VMs on the same machine
Minikube
Install and configure minikube with a VM driver, e.g.
kvm2
on Linux orhyperkit
orVirtualBox
on macOS.Create a kubernetes cluster on Minikube. shell minikube start —memory=8192 —cpus=4
--kubernetes-version=v1.10.5Set
kubectl
to use Minikube. shell kubectl config use-context minikube
In order to use the Kubernetes Dashboard with local Kubernetes cluster on Minikube, run:
$ minikube dashboard
The command will automatically trigger open a webpage in your browser. At first your local cluster will be empty, but that will change as you begin deploying Pulsar components using kubectl
component by component, or using helm
.
Multiple VMs
For the second option, follow the instructions for running Kubernetes using CoreOS on Vagrant. We’ll provide an abridged version of those instructions here.
First, make sure you have Vagrant and VirtualBox installed. Then clone the repo and start up the cluster:
$ git clone https://github.com/pires/kubernetes-vagrant-coreos-cluster
$ cd kubernetes-vagrant-coreos-cluster
# Start a three-VM cluster
$ NODES=3 USE_KUBE_UI=true vagrant up
Create SSD disk mount points on the VMs using this script:
$ for vm in node-01 node-02 node-03; do
NODES=3 vagrant ssh $vm -c "sudo mkdir -p /mnt/disks/ssd0"
NODES=3 vagrant ssh $vm -c "sudo mkdir -p /mnt/disks/ssd1"
done
Bookies expect two logical devices to mount for journal and persistent message storage to be available. In this VM exercise, we created two directories on each VM.
Once the cluster is up, you can verify that kubectl
can access it:
$ kubectl get nodes
NAME STATUS AGE VERSION
172.17.8.101 Ready,SchedulingDisabled 10m v1.6.4
172.17.8.102 Ready 8m v1.6.4
172.17.8.103 Ready 6m v1.6.4
172.17.8.104 Ready 4m v1.6.4
In order to use the Kubernetes Dashboard with your local Kubernetes cluster, first use kubectl
to create a proxy to the cluster:
$ kubectl proxy
Now you can access the web interface at localhost:8001/ui. At first your local cluster will be empty, but that will change as you begin deploying Pulsar components using kubectl
component by component, or using helm
.
Deploying Pulsar components
Now that you’ve set up a Kubernetes cluster, either on Google Kubernetes Engine or on a custom cluster, you can begin deploying the components that make up Pulsar. The YAML resource definitions for Pulsar components can be found in the kubernetes
folder of the Pulsar source package.
In that package, there are different sets of resource definitions for different environments.
deployment/kubernetes/google-kubernetes-engine
: for Google Kubernetes Engine (GKE)deployment/kubernetes/aws
: for AWSdeployment/kubernetes/generic
: for a custom Kubernetes cluster
To begin, cd
into the appropriate folder.
Deploy ZooKeeper
You must deploy ZooKeeper as the first Pulsar component, as it is a dependency for the others.
$ kubectl apply -f zookeeper.yaml
Wait until all three ZooKeeper server pods are up and have the status Running
. You can check on the status of the ZooKeeper pods at any time:
$ kubectl get pods -l component=zookeeper
NAME READY STATUS RESTARTS AGE
zk-0 1/1 Running 0 18m
zk-1 1/1 Running 0 17m
zk-2 0/1 Running 6 15m
This step may take several minutes, as Kubernetes needs to download the Docker image on the VMs.
初始化集群元数据
Once ZooKeeper is running, you need to initialize the metadata for the Pulsar cluster in ZooKeeper. This includes system metadata for BookKeeper and Pulsar more broadly. There is a Kubernetes job in the cluster-metadata.yaml
file that you only need to run once:
$ kubectl apply -f cluster-metadata.yaml
For the sake of reference, that job runs the following command on an ephemeral pod:
$ bin/pulsar initialize-cluster-metadata \
--cluster local \
--zookeeper zookeeper \
--configuration-store zookeeper \
--web-service-url http://broker.default.svc.cluster.local:8080/ \
--broker-service-url pulsar://broker.default.svc.cluster.local:6650/
Deploy the rest of the components
Once cluster metadata has been successfully initialized, you can then deploy the bookies, brokers, monitoring stack (Prometheus, Grafana, and the Pulsar dashboard), and Pulsar cluster proxy:
$ kubectl apply -f bookie.yaml
$ kubectl apply -f broker.yaml
$ kubectl apply -f proxy.yaml
$ kubectl apply -f monitoring.yaml
$ kubectl apply -f admin.yaml
You can check on the status of the pods for these components either in the Kubernetes Dashboard or using kubectl
:
$ kubectl get pods -w -l app=pulsar
Set up properties and namespaces
Once all of the components are up and running, you’ll need to create at least one Pulsar tenant and at least one namespace.
This step is not strictly required if Pulsar authentication and authorization is turned on, though it allows you to change policies for each of the namespaces later.
You can create properties and namespaces (and perform any other administrative tasks) using the pulsar-admin
pod that is already configured to act as an admin client for your newly created Pulsar cluster. One easy way to perform administrative tasks is to create an alias for the pulsar-admin
tool installed on the admin pod.
$ alias pulsar-admin='kubectl exec pulsar-admin -it -- bin/pulsar-admin'
Now, any time you run pulsar-admin
, you will be running commands from that pod. This command will create a tenant called ten
:
$ pulsar-admin tenants create ten \
--admin-roles admin \
--allowed-clusters local
This command will create a ns
namespace under the ten
tenant:
$ pulsar-admin namespaces create ten/ns
To verify that everything has gone as planned:
$ pulsar-admin tenants list
public
ten
$ pulsar-admin namespaces list ten
ten/ns
Now that you have a namespace and tenant set up, you can move on to experimenting with your Pulsar cluster from within the cluster or connecting to the cluster using a Pulsar client.
Experimenting with your cluster
Now that a tenant and namespace have been created, you can begin experimenting with your running Pulsar cluster. Using the same pulsar-admin
pod via an alias, as in the section above, you can use pulsar-perf
to create a test producer to publish 10,000 messages a second on a topic in the tenant and namespace you created.
First, create an alias to use the pulsar-perf
tool via the admin pod:
$ alias pulsar-perf='kubectl exec pulsar-admin -it -- bin/pulsar-perf'
Now, produce messages:
$ pulsar-perf produce persistent://public/default/my-topic \
--rate 10000
Similarly, you can start a consumer to subscribe to and receive all the messages on that topic:
$ pulsar-perf consume persistent://public/default/my-topic \
--subscriber-name my-subscription-name
You can also view stats for the topic using the pulsar-admin
tool:
$ pulsar-admin persistent stats persistent://public/default/my-topic
Monitoring
The default monitoring stack for Pulsar on Kubernetes has consists of Prometheus, Grafana, and the Pulsar dashbaord.
If you deployed the cluster to Minikube, the following monitoring ports are mapped at the minikube VM:
- Prometheus port: 30003
- Grafana port: 30004
- Dashboard port: 30005
You can use
minikube ip
to find the ip address of the minikube VM, and then use their mapped ports to access corresponding services. For example, you can access Pulsar dashboard athttp://$(minikube ip):30005
.
Prometheus
All Pulsar metrics in Kubernetes are collected by a Prometheus instance running inside the cluster. Typically, there is no need to access Prometheus directly. Instead, you can use the Grafana interface that displays the data stored in Prometheus.
Grafana
In your Kubernetes cluster, you can use Grafana to view dashbaords for Pulsar namespaces (message rates, latency, and storage), JVM stats, ZooKeeper, and BookKeeper. You can get access to the pod serving Grafana using kubectl
‘s port-forward
command:
$ kubectl port-forward \
$(kubectl get pods -l component=grafana -o jsonpath='{.items[*].metadata.name}') 3000
You can then access the dashboard in your web browser at localhost:3000.
Pulsar dashboard
While Grafana and Prometheus are used to provide graphs with historical data, Pulsar dashboard reports more detailed current data for individual topics.
For example, you can have sortable tables showing all namespaces, topics, and broker stats, with details on the IP address for consumers, how long they’ve been connected, and much more.
You can access to the pod serving the Pulsar dashboard using kubectl
‘s port-forward
command:
$ kubectl port-forward \
$(kubectl get pods -l component=dashboard -o jsonpath='{.items[*].metadata.name}') 8080:80
You can then access the dashboard in your web browser at localhost:8080.
Client connections
If you deployed the cluster to Minikube, the proxy ports are mapped at the minikube VM:
- Http port: 30001
- Pulsar binary protocol port: 30002
You can use
minikube ip
to find the ip address of the minikube VM, and then use their mapped ports to access corresponding services. For example, pulsar webservice url will be athttp://$(minikube ip):30001
.
Once your Pulsar cluster is running on Kubernetes, you can connect to it using a Pulsar client. You can fetch the IP address for the Pulsar proxy running in your Kubernetes cluster using kubectl:
$ kubectl get service broker-proxy \
--output=jsonpath='{.status.loadBalancer.ingress[*].ip}'
If the IP address for the proxy were, for example, 35.12.13.198, you could connect to Pulsar using pulsar://35.12.13.198:6650
.
You can find client documentation for:
Deploying Pulsar components (helm)
Pulsar also provides a Helm chart for deploying a Pulsar cluster to Kubernetes. Before you start, make sure you follow Helm documentation to install helm.
Assum you have cloned pulsar repo under a
PULSAR_HOME
directory.
Minikube
Go to Pulsar helm chart directory shell cd ${PULSAR_HOME}/deployment/kubernetes/helm
Install helm chart to a K8S cluster on Minikube. shell helm install —values pulsar/values-mini.yaml ./pulsar
Once the helm chart is completed on installation, you can access the cluster via:
- Web service url:
http://$(minikube ip):30001/
- Pulsar service url:
pulsar://$(minikube ip):30002/