Questo contenuto non è disponibile nella lingua selezionata.
Chapter 2. Try AMQ Streams
Install AMQ Streams and start sending and receiving messages from a topic in minutes.
You will:
- Install AMQ Streams
- Create a Kafka cluster
- Access the Kafka cluster to send and receive messages
Ensure you have the prerequisites and then follow the tasks in the order provided in this chapter.
2.1. Prerequisites Copia collegamentoCollegamento copiato negli appunti!
- OpenShift Container Platform cluster (3.11 and later) running on which to deploy AMQ Streams
2.2. Downloading AMQ Streams Copia collegamentoCollegamento copiato negli appunti!
Download a zip file that contains the resources required for installation along with examples for configuration.
Prerequisites
- Access to the AMQ Streams download site.
Procedure
-
Download the
amq-streams-x.y.z-ocp-install-examples.zip
file from the AMQ Streams download site. Unzip the file to any destination.
- On Windows or Mac, you can extract the contents of the ZIP archive by double clicking on the ZIP file.
On Red Hat Enterprise Linux, open a terminal window in the target machine and navigate to where the ZIP file was downloaded.
Extract the ZIP file by executing the following command:
unzip amq-streams-x.y.z-ocp-install-examples.zip
unzip amq-streams-x.y.z-ocp-install-examples.zip
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
2.3. Installing AMQ Streams Copia collegamentoCollegamento copiato negli appunti!
Install AMQ Streams with the Custom Resource Definitions (CRDs) required for deployment.
In this task you create namespaces in the cluster for your deployment. It is good practice to use namespaces to separate functions.
Prerequisites
-
Installation requires a user with
cluster-admin
role, such assystem:admin
Procedure
Login in to the OpenShift cluster with cluster admin privileges.
For example:
oc login -u system:admin
oc login -u system:admin
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create a new
kafka
(project) namespace for the AMQ Streams Kafka Cluster Operator.oc new-project kafka
oc new-project kafka
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Modify the installation files to reference the new
kafka
namespace where you will install the AMQ Streams Kafka Cluster Operator.NoteBy default, the files work in the
myproject
namespace.On Linux, use:
sed -i 's/namespace: .*/namespace: kafka/' install/cluster-operator/*RoleBinding*.yaml
sed -i 's/namespace: .*/namespace: kafka/' install/cluster-operator/*RoleBinding*.yaml
Copy to Clipboard Copied! Toggle word wrap Toggle overflow On Mac, use:
sed -i '' 's/namespace: .*/namespace: kafka/' install/cluster-operator/*RoleBinding*.yaml
sed -i '' 's/namespace: .*/namespace: kafka/' install/cluster-operator/*RoleBinding*.yaml
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
Deploy the CRDs and role-based access control (RBAC) resources to manage the CRDs.
oc new-project kafka oc apply -f install/cluster-operator/
oc new-project kafka oc apply -f install/cluster-operator/
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create a new
my-kafka-project
namespace where you will deploy your Kafka cluster.oc new-project my-kafka-project
oc new-project my-kafka-project
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Give access to
my-kafka-project
to a non-admin userdeveloper
.For example:
oc adm policy add-role-to-user admin developer -n my-kafka-project
oc adm policy add-role-to-user admin developer -n my-kafka-project
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Give permission to the Cluster Operator to watch the
my-kafka-project
namespace.oc set env deploy/strimzi-cluster-operator STRIMZI_NAMESPACE=kafka,my-kafka-project -n kafka
oc set env deploy/strimzi-cluster-operator STRIMZI_NAMESPACE=kafka,my-kafka-project -n kafka
Copy to Clipboard Copied! Toggle word wrap Toggle overflow oc apply -f install/cluster-operator/020-RoleBinding-strimzi-cluster-operator.yaml -n my-kafka-project
oc apply -f install/cluster-operator/020-RoleBinding-strimzi-cluster-operator.yaml -n my-kafka-project
Copy to Clipboard Copied! Toggle word wrap Toggle overflow oc apply -f install/cluster-operator/032-RoleBinding-strimzi-cluster-operator-topic-operator-delegation.yaml -n my-kafka-project
oc apply -f install/cluster-operator/032-RoleBinding-strimzi-cluster-operator-topic-operator-delegation.yaml -n my-kafka-project
Copy to Clipboard Copied! Toggle word wrap Toggle overflow oc apply -f install/cluster-operator/031-RoleBinding-strimzi-cluster-operator-entity-operator-delegation.yaml -n my-kafka-project
oc apply -f install/cluster-operator/031-RoleBinding-strimzi-cluster-operator-entity-operator-delegation.yaml -n my-kafka-project
Copy to Clipboard Copied! Toggle word wrap Toggle overflow The commands create role bindings that grant permission for the Cluster Operator to access the Kafka cluster.
Create a new cluster role
strimzi-admin
.oc apply -f install/strimzi-admin
oc apply -f install/strimzi-admin
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Add the role to the non-admin user
developer
.oc adm policy add-cluster-role-to-user strimzi-admin developer
oc adm policy add-cluster-role-to-user strimzi-admin developer
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
2.4. Creating a cluster Copia collegamentoCollegamento copiato negli appunti!
Create a Kafka cluster, then a topic within the cluster.
When you create a cluster, the Cluster Operator you deployed watches for new Kafka resources.
Prerequisites
- For the Kafka cluster, a Cluster Operator is deployed
- For the topic, a running Kafka cluster
Procedure
Log in to the
my-kafka-project
namespace as userdeveloper
.For example:
oc login -u developer oc project my-kafka-project
oc login -u developer oc project my-kafka-project
Copy to Clipboard Copied! Toggle word wrap Toggle overflow After new users log in to OpenShift Container Platform, an account is created for that user.
Create a new
my-cluster
Kafka cluster with 3 Zookeeper and 3 broker nodes.-
Use
ephemeral
storage Expose the Kafka cluster outside of the OpenShift cluster using an external listener configured to use
route
.Copy to Clipboard Copied! Toggle word wrap Toggle overflow
-
Use
Wait for the cluster to be deployed:
oc wait kafka/my-cluster --for=condition=Ready --timeout=300s -n kafka
oc wait kafka/my-cluster --for=condition=Ready --timeout=300s -n kafka
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Now that your cluster is running, create a topic to publish and subscribe from your external client.
Create the following
my-topic
custom resource definition with 3 replicas and 3 partitions in themy-cluster
Kafka cluster:Copy to Clipboard Copied! Toggle word wrap Toggle overflow
2.5. Accessing the cluster Copia collegamentoCollegamento copiato negli appunti!
As route
is used for external access to the cluster, a cluster CA certificate is required to enable TLS (Transport Layer Security) encryption between the broker and the client.
Prerequisites
- A Kafka cluster running within the OpenShift cluster
- A running Cluster Operator
Procedure
Find the address of the bootstrap
route
:oc get routes my-cluster-kafka-bootstrap -o=jsonpath='{.status.ingress[0].host}{"\n"}'
oc get routes my-cluster-kafka-bootstrap -o=jsonpath='{.status.ingress[0].host}{"\n"}'
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Use the address together with port 443 in your Kafka client as the bootstrap address.
Extract the public certificate of the broker certification authority:
oc extract secret/my-cluster-cluster-ca-cert --keys=ca.crt --to=- > ca.crt
oc extract secret/my-cluster-cluster-ca-cert --keys=ca.crt --to=- > ca.crt
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Import the trusted certificate to a truststore:
keytool -keystore client.truststore.jks -alias CARoot -import -file ca.crt
keytool -keystore client.truststore.jks -alias CARoot -import -file ca.crt
Copy to Clipboard Copied! Toggle word wrap Toggle overflow You are now ready to start sending and receiving messages.
2.6. Sending and receiving messages from a topic Copia collegamentoCollegamento copiato negli appunti!
Test your AMQ Streams installation by sending and receiving messages outside the cluster from my-topic
.
Use a terminal to run a Kafka producer and consumer on a local machine.
Prerequisites
- AMQ Streams is installed on the OpenShift cluster
- Zookeeper and Kafka are running
- Cluster CA certificate for access to the cluster
- Access to the latest version of the Red Hat AMQ Streams archive from the AMQ Streams download site
Procedure
Download the latest version of the AMQ Streams archive (
amq-streams-x.y.z-bin.zip
) from the AMQ Streams download site.Unzip the file to any destination.
Open a terminal and start the Kafka console producer with the topic
my-topic
and the authentication properties for TLS:bin/kafka-console-producer.sh --broker-list <route-address>:443 --producer-property security.protocol=SSL --producer-property ssl.truststore.password=password --producer-property ssl.truststore.location=./client.truststore.jks --topic my-topic
bin/kafka-console-producer.sh --broker-list <route-address>:443 --producer-property security.protocol=SSL --producer-property ssl.truststore.password=password --producer-property ssl.truststore.location=./client.truststore.jks --topic my-topic
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Type your message into the console where the producer is running.
- Press Enter to send the message.
Open a new terminal tab or window and start the Kafka console consumer to receive the messages:
bin/kafka-console-consumer.sh --bootstrap-server <route-address>:443 --consumer-property security.protocol=SSL --consumer-property ssl.truststore.password=password --consumer-property ssl.truststore.location=./client.truststore.jks --topic my-topic --from-beginning
bin/kafka-console-consumer.sh --bootstrap-server <route-address>:443 --consumer-property security.protocol=SSL --consumer-property ssl.truststore.password=password --consumer-property ssl.truststore.location=./client.truststore.jks --topic my-topic --from-beginning
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Confirm that you see the incoming messages in the consumer console.
- Press Crtl+C to exit the Kafka console producer and consumer.