Using AMQ Streams on OpenShift
For use with AMQ Streams 1.5 on OpenShift Container Platform
Abstract
Chapter 1. Overview of AMQ Streams Copy linkLink copied to clipboard!
AMQ Streams simplifies the process of running Apache Kafka in an OpenShift cluster.
This guide describes configuration of Kafka components, as well as instructions for using AMQ Streams Operators. Procedures relate to how you might want to modify your deployment and introduce additional features, such as Cruise Control or distributed tracing.
1.1. Kafka capabilities Copy linkLink copied to clipboard!
The underlying data stream-processing capabilities and component architecture of Kafka can deliver:
- Microservices and other applications to share data with extremely high throughput and low latency
- Message ordering guarantees
- Message rewind/replay from data storage to reconstruct an application state
- Message compaction to remove old records when using a key-value log
- Horizontal scalability in a cluster configuration
- Replication of data to control fault tolerance
- Retention of high volumes of data for immediate access
1.2. Kafka use cases Copy linkLink copied to clipboard!
Kafka’s capabilities make it suitable for:
- Event-driven architectures
- Event sourcing to capture changes to the state of an application as a log of events
- Message brokering
- Website activity tracking
- Operational monitoring through metrics
- Log collection and aggregation
- Commit logs for distributed systems
- Stream processing so that applications can respond to data in real time
1.3. How AMQ Streams supports Kafka Copy linkLink copied to clipboard!
AMQ Streams provides container images and Operators for running Kafka on OpenShift. AMQ Streams Operators are fundamental to the running of AMQ Streams. The Operators provided with AMQ Streams are purpose-built with specialist operational knowledge to effectively manage Kafka.
Operators simplify the process of:
- Deploying and running Kafka clusters
- Deploying and running Kafka components
- Configuring access to Kafka
- Securing access to Kafka
- Upgrading Kafka
- Managing brokers
- Creating and managing topics
- Creating and managing users
1.4. AMQ Streams Operators Copy linkLink copied to clipboard!
AMQ Streams supports Kafka using Operators to deploy and manage the components and dependencies of Kafka to OpenShift.
Operators are a method of packaging, deploying, and managing an OpenShift application. AMQ Streams Operators extend OpenShift functionality, automating common and complex tasks related to a Kafka deployment. By implementing knowledge of Kafka operations in code, Kafka administration tasks are simplified and require less manual intervention.
Operators
AMQ Streams provides Operators for managing a Kafka cluster running within an OpenShift cluster.
- Cluster Operator
- Deploys and manages Apache Kafka clusters, Kafka Connect, Kafka MirrorMaker, Kafka Bridge, Kafka Exporter, and the Entity Operator
- Entity Operator
- Comprises the Topic Operator and User Operator
- Topic Operator
- Manages Kafka topics
- User Operator
- Manages Kafka users
The Cluster Operator can deploy the Topic Operator and User Operator as part of an Entity Operator configuration at the same time as a Kafka cluster.
Operators within the AMQ Streams architecture
1.4.1. Cluster Operator Copy linkLink copied to clipboard!
AMQ Streams uses the Cluster Operator to deploy and manage clusters for:
- Kafka (including ZooKeeper, Entity Operator, Kafka Exporter, and Cruise Control)
- Kafka Connect
- Kafka MirrorMaker
- Kafka Bridge
Custom resources are used to deploy the clusters.
For example, to deploy a Kafka cluster:
-
A
Kafkaresource with the cluster configuration is created within the OpenShift cluster. -
The Cluster Operator deploys a corresponding Kafka cluster, based on what is declared in the
Kafkaresource.
The Cluster Operator can also deploy (through configuration of the Kafka resource):
-
A Topic Operator to provide operator-style topic management through
KafkaTopiccustom resources -
A User Operator to provide operator-style user management through
KafkaUsercustom resources
The Topic Operator and User Operator function within the Entity Operator on deployment.
Example architecture for the Cluster Operator
1.4.2. Topic Operator Copy linkLink copied to clipboard!
The Topic Operator provides a way of managing topics in a Kafka cluster through OpenShift resources.
Example architecture for the Topic Operator
The role of the Topic Operator is to keep a set of KafkaTopic OpenShift resources describing Kafka topics in-sync with corresponding Kafka topics.
Specifically, if a KafkaTopic is:
- Created, the Topic Operator creates the topic
- Deleted, the Topic Operator deletes the topic
- Changed, the Topic Operator updates the topic
Working in the other direction, if a topic is:
-
Created within the Kafka cluster, the Operator creates a
KafkaTopic -
Deleted from the Kafka cluster, the Operator deletes the
KafkaTopic -
Changed in the Kafka cluster, the Operator updates the
KafkaTopic
This allows you to declare a KafkaTopic as part of your application’s deployment and the Topic Operator will take care of creating the topic for you. Your application just needs to deal with producing or consuming from the necessary topics.
If the topic is reconfigured or reassigned to different Kafka nodes, the KafkaTopic will always be up to date.
1.4.3. User Operator Copy linkLink copied to clipboard!
The User Operator manages Kafka users for a Kafka cluster by watching for KafkaUser resources that describe Kafka users, and ensuring that they are configured properly in the Kafka cluster.
For example, if a KafkaUser is:
- Created, the User Operator creates the user it describes
- Deleted, the User Operator deletes the user it describes
- Changed, the User Operator updates the user it describes
Unlike the Topic Operator, the User Operator does not sync any changes from the Kafka cluster with the OpenShift resources. Kafka topics can be created by applications directly in Kafka, but it is not expected that the users will be managed directly in the Kafka cluster in parallel with the User Operator.
The User Operator allows you to declare a KafkaUser resource as part of your application’s deployment. You can specify the authentication and authorization mechanism for the user. You can also configure user quotas that control usage of Kafka resources to ensure, for example, that a user does not monopolize access to a broker.
When the user is created, the user credentials are created in a Secret. Your application needs to use the user and its credentials for authentication and to produce or consume messages.
In addition to managing credentials for authentication, the User Operator also manages authorization rules by including a description of the user’s access rights in the KafkaUser declaration.
1.5. AMQ Streams custom resources Copy linkLink copied to clipboard!
A deployment of Kafka components to an OpenShift cluster using AMQ Streams is highly configurable through the application of custom resources. Custom resources are created as instances of APIs added by Custom resource definitions (CRDs) to extend OpenShift resources.
CRDs act as configuration instructions to describe the custom resources in an OpenShift cluster, and are provided with AMQ Streams for each Kafka component used in a deployment, as well as users and topics. CRDs and custom resources are defined as YAML files. Example YAML files are provided with the AMQ Streams distribution.
CRDs also allow AMQ Streams resources to benefit from native OpenShift features like CLI accessibility and configuration validation.
Additional resources
1.5.1. AMQ Streams custom resource example Copy linkLink copied to clipboard!
CRDs require a one-time installation in a cluster to define the schemas used to instantiate and manage AMQ Streams-specific resources.
After a new custom resource type is added to your cluster by installing a CRD, you can create instances of the resource based on its specification.
Depending on the cluster setup, installation typically requires cluster admin privileges.
Access to manage custom resources is limited to AMQ Streams administrators.
A CRD defines a new kind of resource, such as kind:Kafka, within an OpenShift cluster.
The Kubernetes API server allows custom resources to be created based on the kind and understands from the CRD how to validate and store the custom resource when it is added to the OpenShift cluster.
When CRDs are deleted, custom resources of that type are also deleted. Additionally, the resources created by the custom resource, such as pods and statefulsets are also deleted.
Each AMQ Streams-specific custom resource conforms to the schema defined by the CRD for the resource’s kind. The custom resources for AMQ Streams components have common configuration properties, which are defined under spec.
To understand the relationship between a CRD and a custom resource, let’s look at a sample of the CRD for a Kafka topic.
Kafka topic CRD
- 1
- The metadata for the topic CRD, its name and a label to identify the CRD.
- 2
- The specification for this CRD, including the group (domain) name, the plural name and the supported schema version, which are used in the URL to access the API of the topic. The other names are used to identify instance resources in the CLI. For example,
oc get kafkatopic my-topicoroc get kafkatopics. - 3
- The shortname can be used in CLI commands. For example,
oc get ktcan be used as an abbreviation instead ofoc get kafkatopic. - 4
- The information presented when using a
getcommand on the custom resource. - 5
- The current status of the CRD as described in the schema reference for the resource.
- 6
- openAPIV3Schema validation provides validation for the creation of topic custom resources. For example, a topic requires at least one partition and one replica.
You can identify the CRD YAML files supplied with the AMQ Streams installation files, because the file names contain an index number followed by ‘Crd’.
Here is a corresponding example of a KafkaTopic custom resource.
Kafka topic custom resource
- 1
- The
kindandapiVersionidentify the CRD of which the custom resource is an instance. - 2
- A label, applicable only to
KafkaTopicandKafkaUserresources, that defines the name of the Kafka cluster (which is same as the name of theKafkaresource) to which a topic or user belongs. - 3
- The spec shows the number of partitions and replicas for the topic as well as the configuration parameters for the topic itself. In this example, the retention period for a message to remain in the topic and the segment file size for the log are specified.
- 4
- Status conditions for the
KafkaTopicresource. Thetypecondition changed toReadyat thelastTransitionTime.
Custom resources can be applied to a cluster through the platform CLI. When the custom resource is created, it uses the same validation as the built-in resources of the Kubernetes API.
After a KafkaTopic custom resource is created, the Topic Operator is notified and corresponding Kafka topics are created in AMQ Streams.
1.6. Document Conventions Copy linkLink copied to clipboard!
Replaceables
In this document, replaceable text is styled in monospace, with italics, uppercase, and hyphens.
For example, in the following code, you will want to replace MY-NAMESPACE with the name of your namespace:
sed -i 's/namespace: .*/namespace: MY-NAMESPACE/' install/cluster-operator/*RoleBinding*.yaml
sed -i 's/namespace: .*/namespace: MY-NAMESPACE/' install/cluster-operator/*RoleBinding*.yaml
Chapter 2. Getting started with AMQ Streams Copy linkLink copied to clipboard!
AMQ Streams is designed to work on all types of OpenShift cluster regardless of distribution, from public and private clouds to local deployments intended for development.
AMQ Streams is based on Strimzi 0.18.x. This section describes the procedures to deploy AMQ Streams on OpenShift 3.11 and later.
To run the commands in this guide, your cluster user must have the rights to manage role-based access control (RBAC) and CRDs.
2.1. Preparing for your AMQ Streams deployment Copy linkLink copied to clipboard!
This section shows how you prepare for a AMQ Streams deployment, describing:
- The prerequisites you need before you can deploy AMQ Streams
- How to download the AMQ Streams release artifacts to use in your deployment
- How to push the AMQ Streams container images into you own registry (if required)
- How to set up admin roles for configuration of custom resources used in deployment
To run the commands in this guide, your cluster user must have the rights to manage role-based access control (RBAC) and CRDs.
2.1.1. Deployment prerequisites Copy linkLink copied to clipboard!
To deploy AMQ Streams, make sure:
An OpenShift 3.11 and later cluster is available
AMQ Streams is based on AMQ Streams Strimzi 0.18.x.
-
The
occommand-line tool is installed and configured to connect to the running cluster.
AMQ Streams supports some features that are specific to OpenShift, where such integration benefits OpenShift users and there is no equivalent implementation using standard OpenShift.
2.1.2. Downloading AMQ Streams release artifacts Copy linkLink copied to clipboard!
To install AMQ Streams, download and extract the release artifacts from the amq-streams-<version>-ocp-install-examples.zip file from the AMQ Streams download site.
AMQ Streams release artifacts include sample YAML files to help you deploy the components of AMQ Streams to OpenShift, perform common operations, and configure your Kafka cluster.
You deploy AMQ Streams to an OpenShift cluster using the oc command-line tool.
Additionally, AMQ Streams container images are available through the Red Hat Ecosystem Catalog. However, we recommend that you use the YAML files provided to deploy AMQ Streams.
2.1.3. Pushing container images to your own registry Copy linkLink copied to clipboard!
Container images for AMQ Streams are available in the Red Hat Ecosystem Catalog. The installation YAML files provided by AMQ Streams will pull the images directly from the Red Hat Ecosystem Catalog.
If you do not have access to the Red Hat Ecosystem Catalog or want to use your own container repository:
- Pull all container images listed here
- Push them into your own registry
- Update the image names in the installation YAML files
Each Kafka version supported for the release has a separate image.
| Container image | Namespace/Repository | Description |
|---|---|---|
| Kafka |
| AMQ Streams image for running Kafka, including:
|
| Operator |
| AMQ Streams image for running the operators:
|
| Kafka Bridge |
| AMQ Streams image for running the AMQ Streams Kafka Bridge |
2.1.4. Designating AMQ Streams administrators Copy linkLink copied to clipboard!
AMQ Streams provides custom resources for configuration of your deployment. By default, permission to view, create, edit, and delete these resources is limited to OpenShift cluster administrators. AMQ Streams provides two cluster roles that you can use to assign these rights to other users:
-
strimzi-viewallows users to view and list AMQ Streams resources. -
strimzi-adminallows users to also create, edit or delete AMQ Streams resources.
When you install these roles, they will automatically aggregate (add) these rights to the default OpenShift cluster roles. strimzi-view aggregates to the view role, and strimzi-admin aggregates to the edit and admin roles. Because of the aggregation, you might not need to assign these roles to users who already have similar rights.
The following procedure shows how to assign a strimzi-admin role that allows non-cluster administrators to manage AMQ Streams resources.
A system administrator can designate AMQ Streams administrators after the Cluster Operator is deployed.
Prerequisites
- The AMQ Streams Custom Resource Definitions (CRDs) and role-based access control (RBAC) resources to manage the CRDs have been deployed with the Cluster Operator.
Procedure
Create the
strimzi-viewandstrimzi-admincluster roles in OpenShift.oc apply -f install/strimzi-admin
oc apply -f install/strimzi-adminCopy to Clipboard Copied! Toggle word wrap Toggle overflow If needed, assign the roles that provide access rights to users that require them.
oc create clusterrolebinding strimzi-admin --clusterrole=strimzi-admin --user=user1 --user=user2
oc create clusterrolebinding strimzi-admin --clusterrole=strimzi-admin --user=user1 --user=user2Copy to Clipboard Copied! Toggle word wrap Toggle overflow
2.1.5. AMQ Streams installation methods Copy linkLink copied to clipboard!
There are two ways to install AMQ Streams on OpenShift.
| Installation method | Description | Supported versions |
|---|---|---|
| Installation artifacts (YAML files) |
Download the | OpenShift 3.11 and later |
| OperatorHub | Use the AMQ Streams Operator in the OperatorHub to deploy the Cluster Operator to a single namespace or all namespaces. | OpenShift 4.x only |
For the greatest flexibility, choose the installation artifacts method. Choose the OperatorHub method if you want to install AMQ Streams to OpenShift 4 in a standard configuration using the OpenShift 4 web console. The OperatorHub also allows you to take advantage of automatic updates.
In the case of both methods, the Cluster Operator is deployed to your OpenShift cluster, ready for you to deploy the other components of AMQ Streams, starting with a Kafka cluster, using the YAML example files provided.
AMQ Streams installation artifacts
The AMQ Streams installation artifacts contain various YAML files that can be deployed to OpenShift, using oc, to create custom resources, including:
- Deployments
- Custom resource definitions (CRDs)
- Roles and role bindings
- Service accounts
YAML installation files are provided for the Cluster Operator, Topic Operator, User Operator, and the Strimzi Admin role.
OperatorHub
In OpenShift 4, the Operator Lifecycle Manager (OLM) helps cluster administrators to install, update, and manage the lifecycle of all Operators and their associated services running across their clusters. The OLM is part of the Operator Framework, an open source toolkit designed to manage Kubernetes-native applications (Operators) in an effective, automated, and scalable way.
The OperatorHub is part of the OpenShift 4 web console. Cluster administrators can use it to discover, install, and upgrade Operators. Operators can be pulled from the OperatorHub, installed on the OpenShift cluster to a single (project) namespace or all (projects) namespaces, and managed by the OLM. Engineering teams can then independently manage the software in development, test, and production environments using the OLM.
The OperatorHub is not available in versions of OpenShift earlier than version 4.
AMQ Streams Operator
The AMQ Streams Operator is available to install from the OperatorHub. Once installed, the AMQ Streams Operator deploys the Cluster Operator to your OpenShift cluster, along with the necessary CRDs and role-based access control (RBAC) resources.
Additional resources
Installing AMQ Streams using the installation artifacts:
Installing AMQ Streams from the OperatorHub:
- Section 2.2.1.5, “Deploying the Cluster Operator from the OperatorHub”
- Operators guide in the OpenShift documentation.
2.2. Create the Kafka cluster Copy linkLink copied to clipboard!
In order to create your Kafka cluster, you deploy the Cluster Operator to manage the Kafka cluster, then deploy the Kafka cluster.
When deploying the Kafka cluster using the Kafka resource, you can deploy the Topic Operator and User Operator at the same time. Alternatively, if you are using a non-AMQ Streams Kafka cluster, you can deploy the Topic Operator and User Operator as standalone components.
Deploying a Kafka cluster with the Topic Operator and User Operator
Perform these deployment steps if you want to use the Topic Operator and User Operator with a Kafka cluster managed by AMQ Streams.
- Deploy the Cluster Operator
Use the Cluster Operator to deploy the:
Deploying a standalone Topic Operator and User Operator
Perform these deployment steps if you want to use the Topic Operator and User Operator with a Kafka cluster that is not managed by AMQ Streams.
2.2.1. Deploying the Cluster Operator Copy linkLink copied to clipboard!
The Cluster Operator is responsible for deploying and managing Apache Kafka clusters within an OpenShift cluster.
The procedures in this section show:
How to deploy the Cluster Operator to watch:
Alternative deployment options:
2.2.1.1. Watch options for a Cluster Operator deployment Copy linkLink copied to clipboard!
When the Cluster Operator is running, it starts to watch for updates of Kafka resources.
You can choose to deploy the Cluster Operator to watch Kafka resources from:
- A single namespace (the same namespace containing the Cluster Operator)
- Multiple namespaces
- All namespaces
AMQ Streams provides example YAML files to make the deployment process easier.
The Cluster Operator watches for changes to the following resources:
-
Kafkafor the Kafka cluster. -
KafkaConnectfor the Kafka Connect cluster. -
KafkaConnectS2Ifor the Kafka Connect cluster with Source2Image support. -
KafkaConnectorfor creating and managing connectors in a Kafka Connect cluster. -
KafkaMirrorMakerfor the Kafka MirrorMaker instance. -
KafkaBridgefor the Kafka Bridge instance
When one of these resources is created in the OpenShift cluster, the operator gets the cluster description from the resource and starts creating a new cluster for the resource by creating the necessary OpenShift resources, such as StatefulSets, Services and ConfigMaps.
Each time a Kafka resource is updated, the operator performs corresponding updates on the OpenShift resources that make up the cluster for the resource.
Resources are either patched or deleted, and then recreated in order to make the cluster for the resource reflect the desired state of the cluster. This operation might cause a rolling update that might lead to service disruption.
When a resource is deleted, the operator undeploys the cluster and deletes all related OpenShift resources.
2.2.1.2. Deploying the Cluster Operator to watch a single namespace Copy linkLink copied to clipboard!
This procedure shows how to deploy the Cluster Operator to watch AMQ Streams resources in a single namespace in your OpenShift cluster.
Prerequisites
-
This procedure requires use of an OpenShift user account which is able to create
CustomResourceDefinitions,ClusterRolesandClusterRoleBindings. Use of Role Base Access Control (RBAC) in the OpenShift cluster usually means that permission to create, edit, and delete these resources is limited to OpenShift cluster administrators, such assystem:admin.
Procedure
Edit the AMQ Streams installation files to use the namespace the Cluster Operator is going to be installed into.
For example, in this procedure the Cluster Operator is installed into the namespace
my-cluster-operator-namespace.On Linux, use:
sed -i 's/namespace: .*/namespace: my-cluster-operator-namespace/' install/cluster-operator/*RoleBinding*.yaml
sed -i 's/namespace: .*/namespace: my-cluster-operator-namespace/' install/cluster-operator/*RoleBinding*.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow On MacOS, use:
sed -i '' 's/namespace: .*/namespace: my-cluster-operator-namespace/' install/cluster-operator/*RoleBinding*.yaml
sed -i '' 's/namespace: .*/namespace: my-cluster-operator-namespace/' install/cluster-operator/*RoleBinding*.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow Deploy the Cluster Operator:
oc apply -f install/cluster-operator -n my-cluster-operator-namespace
oc apply -f install/cluster-operator -n my-cluster-operator-namespaceCopy to Clipboard Copied! Toggle word wrap Toggle overflow Verify that the Cluster Operator was successfully deployed:
oc get deployments
oc get deploymentsCopy to Clipboard Copied! Toggle word wrap Toggle overflow
2.2.1.3. Deploying the Cluster Operator to watch multiple namespaces Copy linkLink copied to clipboard!
This procedure shows how to deploy the Cluster Operator to watch AMQ Streams resources across multiple namespaces in your OpenShift cluster.
Prerequisites
-
This procedure requires use of an OpenShift user account which is able to create
CustomResourceDefinitions,ClusterRolesandClusterRoleBindings. Use of Role Base Access Control (RBAC) in the OpenShift cluster usually means that permission to create, edit, and delete these resources is limited to OpenShift cluster administrators, such assystem:admin.
Procedure
Edit the AMQ Streams installation files to use the namespace the Cluster Operator is going to be installed into.
For example, in this procedure the Cluster Operator is installed into the namespace
my-cluster-operator-namespace.On Linux, use:
sed -i 's/namespace: .*/namespace: my-cluster-operator-namespace/' install/cluster-operator/*RoleBinding*.yaml
sed -i 's/namespace: .*/namespace: my-cluster-operator-namespace/' install/cluster-operator/*RoleBinding*.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow On MacOS, use:
sed -i '' 's/namespace: .*/namespace: my-cluster-operator-namespace/' install/cluster-operator/*RoleBinding*.yaml
sed -i '' 's/namespace: .*/namespace: my-cluster-operator-namespace/' install/cluster-operator/*RoleBinding*.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
install/cluster-operator/050-Deployment-strimzi-cluster-operator.yamlfile to add a list of all the namespaces the Cluster Operator will watch to theSTRIMZI_NAMESPACEenvironment variable.For example, in this procedure the Cluster Operator will watch the namespaces
watched-namespace-1,watched-namespace-2,watched-namespace-3.Copy to Clipboard Copied! Toggle word wrap Toggle overflow For each namespace listed, install the
RoleBindings.In this example, we replace
watched-namespacein these commands with the namespaces listed in the previous step, repeating them forwatched-namespace-1,watched-namespace-2,watched-namespace-3:oc apply -f install/cluster-operator/020-RoleBinding-strimzi-cluster-operator.yaml -n watched-namespace oc apply -f install/cluster-operator/031-RoleBinding-strimzi-cluster-operator-entity-operator-delegation.yaml -n watched-namespace oc apply -f install/cluster-operator/032-RoleBinding-strimzi-cluster-operator-topic-operator-delegation.yaml -n watched-namespace
oc apply -f install/cluster-operator/020-RoleBinding-strimzi-cluster-operator.yaml -n watched-namespace oc apply -f install/cluster-operator/031-RoleBinding-strimzi-cluster-operator-entity-operator-delegation.yaml -n watched-namespace oc apply -f install/cluster-operator/032-RoleBinding-strimzi-cluster-operator-topic-operator-delegation.yaml -n watched-namespaceCopy to Clipboard Copied! Toggle word wrap Toggle overflow Deploy the Cluster Operator:
oc apply -f install/cluster-operator -n my-cluster-operator-namespace
oc apply -f install/cluster-operator -n my-cluster-operator-namespaceCopy to Clipboard Copied! Toggle word wrap Toggle overflow Verify that the Cluster Operator was successfully deployed:
oc get deployments
oc get deploymentsCopy to Clipboard Copied! Toggle word wrap Toggle overflow
2.2.1.4. Deploying the Cluster Operator to watch all namespaces Copy linkLink copied to clipboard!
This procedure shows how to deploy the Cluster Operator to watch AMQ Streams resources across all namespaces in your OpenShift cluster.
When running in this mode, the Cluster Operator automatically manages clusters in any new namespaces that are created.
Prerequisites
-
This procedure requires use of an OpenShift user account which is able to create
CustomResourceDefinitions,ClusterRolesandClusterRoleBindings. Use of Role Base Access Control (RBAC) in the OpenShift cluster usually means that permission to create, edit, and delete these resources is limited to OpenShift cluster administrators, such assystem:admin.
Procedure
Edit the AMQ Streams installation files to use the namespace the Cluster Operator is going to be installed into.
For example, in this procedure the Cluster Operator is installed into the namespace
my-cluster-operator-namespace.On Linux, use:
sed -i 's/namespace: .*/namespace: my-cluster-operator-namespace/' install/cluster-operator/*RoleBinding*.yaml
sed -i 's/namespace: .*/namespace: my-cluster-operator-namespace/' install/cluster-operator/*RoleBinding*.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow On MacOS, use:
sed -i '' 's/namespace: .*/namespace: my-cluster-operator-namespace/' install/cluster-operator/*RoleBinding*.yaml
sed -i '' 's/namespace: .*/namespace: my-cluster-operator-namespace/' install/cluster-operator/*RoleBinding*.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
install/cluster-operator/050-Deployment-strimzi-cluster-operator.yamlfile to set the value of theSTRIMZI_NAMESPACEenvironment variable to*.Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create
ClusterRoleBindingsthat grant cluster-wide access for all namespaces to the Cluster Operator.oc create clusterrolebinding strimzi-cluster-operator-namespaced --clusterrole=strimzi-cluster-operator-namespaced --serviceaccount my-cluster-operator-namespace:strimzi-cluster-operator oc create clusterrolebinding strimzi-cluster-operator-entity-operator-delegation --clusterrole=strimzi-entity-operator --serviceaccount my-cluster-operator-namespace:strimzi-cluster-operator oc create clusterrolebinding strimzi-cluster-operator-topic-operator-delegation --clusterrole=strimzi-topic-operator --serviceaccount my-cluster-operator-namespace:strimzi-cluster-operator
oc create clusterrolebinding strimzi-cluster-operator-namespaced --clusterrole=strimzi-cluster-operator-namespaced --serviceaccount my-cluster-operator-namespace:strimzi-cluster-operator oc create clusterrolebinding strimzi-cluster-operator-entity-operator-delegation --clusterrole=strimzi-entity-operator --serviceaccount my-cluster-operator-namespace:strimzi-cluster-operator oc create clusterrolebinding strimzi-cluster-operator-topic-operator-delegation --clusterrole=strimzi-topic-operator --serviceaccount my-cluster-operator-namespace:strimzi-cluster-operatorCopy to Clipboard Copied! Toggle word wrap Toggle overflow Replace
my-cluster-operator-namespacewith the namespace you want to install the Cluster Operator into.Deploy the Cluster Operator to your OpenShift cluster.
oc apply -f install/cluster-operator -n my-cluster-operator-namespace
oc apply -f install/cluster-operator -n my-cluster-operator-namespaceCopy to Clipboard Copied! Toggle word wrap Toggle overflow Verify that the Cluster Operator was successfully deployed:
oc get deployments
oc get deploymentsCopy to Clipboard Copied! Toggle word wrap Toggle overflow
2.2.1.5. Deploying the Cluster Operator from the OperatorHub Copy linkLink copied to clipboard!
You can deploy the Cluster Operator to your OpenShift cluster by installing the AMQ Streams Operator from the OperatorHub. The OperatorHub is available in OpenShift 4 only.
Prerequisites
-
The Red Hat Operators
OperatorSourceis enabled in your OpenShift cluster. If you can see Red Hat Operators in the OperatorHub, the correctOperatorSourceis enabled. For more information, see the Operators guide. - Installation requires a user with sufficient privileges to install Operators from the OperatorHub.
Procedure
- In the OpenShift 4 web console, click Operators > OperatorHub.
Search or browse for the AMQ Streams Operator, in the Streaming & Messaging category.
- Click the AMQ Streams tile and then, in the sidebar on the right, click Install.
On the Create Operator Subscription screen, choose from the following installation and update options:
- Installation Mode: Choose to install the AMQ Streams Operator to all (projects) namespaces in the cluster (the default option) or a specific (project) namespace. It is good practice to use namespaces to separate functions. We recommend that you dedicate a specific namespace to the Kafka cluster and other AMQ Streams components.
- Approval Strategy: By default, the AMQ Streams Operator is automatically upgraded to the latest AMQ Streams version by the Operator Lifecycle Manager (OLM). Optionally, select Manual if you want to manually approve future upgrades. For more information, see the Operators guide in the OpenShift documentation.
Click Subscribe; the AMQ Streams Operator is installed to your OpenShift cluster.
The AMQ Streams Operator deploys the Cluster Operator, CRDs, and role-based access control (RBAC) resources to the selected namespace, or to all namespaces.
On the Installed Operators screen, check the progress of the installation. The AMQ Streams Operator is ready to use when its status changes to InstallSucceeded.
Next, you can deploy the other components of AMQ Streams, starting with a Kafka cluster, using the YAML example files.
2.2.2. Deploying Kafka Copy linkLink copied to clipboard!
Apache Kafka is an open-source distributed publish-subscribe messaging system for fault-tolerant real-time data feeds.
The procedures in this section show:
How to use the Cluster Operator to deploy:
- An ephemeral or persistent Kafka cluster
The Topic Operator and User Operator by configuring the
Kafkacustom resource:
Alternative standalone deployment procedures for the Topic Operator and User Operator:
When installing Kafka, AMQ Streams also installs a ZooKeeper cluster and adds the necessary configuration to connect Kafka with ZooKeeper.
2.2.2.1. Deploying the Kafka cluster Copy linkLink copied to clipboard!
This procedure shows how to deploy a Kafka cluster to your OpenShift using the Cluster Operator.
The deployment uses a YAML file to provide the specification to create a Kafka resource.
AMQ Streams provides example YAMLs files for deployment in examples/kafka/:
kafka-persistent.yaml- Deploys a persistent cluster with three ZooKeeper and three Kafka nodes.
kafka-jbod.yaml- Deploys a persistent cluster with three ZooKeeper and three Kafka nodes (each using multiple persistent volumes).
kafka-persistent-single.yaml- Deploys a persistent cluster with a single ZooKeeper node and a single Kafka node.
kafka-ephemeral.yaml- Deploys an ephemeral cluster with three ZooKeeper and three Kafka nodes.
kafka-ephemeral-single.yaml- Deploys an ephemeral cluster with three ZooKeeper nodes and a single Kafka node.
In this procedure, we use the examples for an ephemeral and persistent Kafka cluster deployment:
- Ephemeral cluster
-
In general, an ephemeral (or temporary) Kafka cluster is suitable for development and testing purposes, not for production. This deployment uses
emptyDirvolumes for storing broker information (for ZooKeeper) and topics or partitions (for Kafka). Using anemptyDirvolume means that its content is strictly related to the pod life cycle and is deleted when the pod goes down. - Persistent cluster
-
A persistent Kafka cluster uses
PersistentVolumesto store ZooKeeper and Kafka data. ThePersistentVolumeis acquired using aPersistentVolumeClaimto make it independent of the actual type of thePersistentVolume. For example, it can use Amazon EBS volumes in Amazon AWS deployments without any changes in the YAML files. ThePersistentVolumeClaimcan use aStorageClassto trigger automatic volume provisioning.
The example clusters are named my-cluster by default. The cluster name is defined by the name of the resource and cannot be changed after the cluster has been deployed. To change the cluster name before you deploy the cluster, edit the Kafka.metadata.name property of the Kafka resource in the relevant YAML file.
apiVersion: kafka.strimzi.io/v1beta1 kind: Kafka metadata: name: my-cluster # ...
apiVersion: kafka.strimzi.io/v1beta1
kind: Kafka
metadata:
name: my-cluster
# ...
For more information about configuring the Kafka resource, see Kafka cluster configuration
Prerequisites
Procedure
Create and deploy an ephemeral or persistent cluster.
For development or testing, you might prefer to use an ephemeral cluster. You can use a persistent cluster in any situation.
To create and deploy an ephemeral cluster:
oc apply -f examples/kafka/kafka-ephemeral.yaml
oc apply -f examples/kafka/kafka-ephemeral.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow To create and deploy a persistent cluster:
oc apply -f examples/kafka/kafka-persistent.yaml
oc apply -f examples/kafka/kafka-persistent.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Verify that the Kafka cluster was successfully deployed:
oc get deployments
oc get deploymentsCopy to Clipboard Copied! Toggle word wrap Toggle overflow
2.2.2.2. Deploying the Topic Operator using the Cluster Operator Copy linkLink copied to clipboard!
This procedure describes how to deploy the Topic Operator using the Cluster Operator.
You configure the entityOperator property of the Kafka resource to include the topicOperator.
If you want to use the Topic Operator with a Kafka cluster that is not managed by AMQ Streams, you must deploy the Topic Operator as a standalone component.
For more information about configuring the entityOperator and topicOperator properties, see Entity Operator.
Prerequisites
Procedure
Edit the
entityOperatorproperties of theKafkaresource to includetopicOperator:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Configure the Topic Operator
specusing the properties described inEntityTopicOperatorSpecschema reference.Use an empty object (
{}) if you want all properties to use their default values.Create or update the resource:
Use
oc apply:oc apply -f <your-file>
oc apply -f <your-file>Copy to Clipboard Copied! Toggle word wrap Toggle overflow
2.2.2.3. Deploying the User Operator using the Cluster Operator Copy linkLink copied to clipboard!
This procedure describes how to deploy the User Operator using the Cluster Operator.
You configure the entityOperator property of the Kafka resource to include the userOperator.
If you want to use the User Operator with a Kafka cluster that is not managed by AMQ Streams, you must deploy the User Operator as a standalone component.
For more information about configuring the entityOperator and userOperator properties, see Entity Operator.
Prerequisites
Procedure
Edit the
entityOperatorproperties of theKafkaresource to includeuserOperator:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Configure the User Operator
specusing the properties described inEntityUserOperatorSpecschema reference.Use an empty object (
{}) if you want all properties to use their default values.Create or update the resource:
oc apply -f <your-file>
oc apply -f <your-file>Copy to Clipboard Copied! Toggle word wrap Toggle overflow
2.2.3. Alternative standalone deployment options for AMQ Streams Operators Copy linkLink copied to clipboard!
When deploying a Kafka cluster using the Cluster Operator, you can also deploy the Topic Operator and User Operator. Alternatively, you can perform a standalone deployment.
A standalone deployment means the Topic Operator and User Operator can operate with a Kafka cluster that is not managed by AMQ Streams.
2.2.3.1. Deploying the standalone Topic Operator Copy linkLink copied to clipboard!
This procedure shows how to deploy the Topic Operator as a standalone component.
A standalone deployment requires configuration of environment variables, and is more complicated than deploying the Topic Operator using the Cluster Operator. However, a standalone deployment is more flexible as the Topic Operator can operate with any Kafka cluster, not necessarily one deployed by the Cluster Operator.
Prerequisites
- You need an existing Kafka cluster for the Topic Operator to connect to.
Procedure
Edit the
Deployment.spec.template.spec.containers[0].envproperties in theinstall/topic-operator/05-Deployment-strimzi-topic-operator.yamlfile by setting:-
STRIMZI_KAFKA_BOOTSTRAP_SERVERSto list the bootstrap brokers in your Kafka cluster, given as a comma-separated list ofhostname:portpairs. -
STRIMZI_ZOOKEEPER_CONNECTto list the ZooKeeper nodes, given as a comma-separated list ofhostname:portpairs. This should be the same ZooKeeper cluster that your Kafka cluster is using. -
STRIMZI_NAMESPACEto the OpenShift namespace in which you want the operator to watch forKafkaTopicresources. -
STRIMZI_RESOURCE_LABELSto the label selector used to identify theKafkaTopicresources managed by the operator. -
STRIMZI_FULL_RECONCILIATION_INTERVAL_MSto specify the interval between periodic reconciliations, in milliseconds. -
STRIMZI_TOPIC_METADATA_MAX_ATTEMPTSto specify the number of attempts at getting topic metadata from Kafka. The time between each attempt is defined as an exponential back-off. Consider increasing this value when topic creation could take more time due to the number of partitions or replicas. Default6. -
STRIMZI_ZOOKEEPER_SESSION_TIMEOUT_MSto the ZooKeeper session timeout, in milliseconds. For example,10000. Default20000(20 seconds). -
STRIMZI_TOPICS_PATHto the Zookeeper node path where the Topic Operator stores its metadata. Default/strimzi/topics. -
STRIMZI_TLS_ENABLEDto enable TLS support for encrypting the communication with Kafka brokers. Defaulttrue. -
STRIMZI_TRUSTSTORE_LOCATIONto the path to the truststore containing certificates for enabling TLS based communication. Mandatory only if TLS is enabled throughSTRIMZI_TLS_ENABLED. -
STRIMZI_TRUSTSTORE_PASSWORDto the password for accessing the truststore defined bySTRIMZI_TRUSTSTORE_LOCATION. Mandatory only if TLS is enabled throughSTRIMZI_TLS_ENABLED. -
STRIMZI_KEYSTORE_LOCATIONto the path to the keystore containing private keys for enabling TLS based communication. Mandatory only if TLS is enabled throughSTRIMZI_TLS_ENABLED. -
STRIMZI_KEYSTORE_PASSWORDto the password for accessing the keystore defined bySTRIMZI_KEYSTORE_LOCATION. Mandatory only if TLS is enabled throughSTRIMZI_TLS_ENABLED. -
STRIMZI_LOG_LEVELto the level for printing logging messages. The value can be set to:ERROR,WARNING,INFO,DEBUG, andTRACE. DefaultINFO. -
STRIMZI_JAVA_OPTS(optional) to the Java options used for the JVM running the Topic Operator. An example is-Xmx=512M -Xms=256M. -
STRIMZI_JAVA_SYSTEM_PROPERTIES(optional) to list the-Doptions which are set to the Topic Operator. An example is-Djavax.net.debug=verbose -DpropertyName=value.
-
Deploy the Topic Operator:
oc apply -f install/topic-operator
oc apply -f install/topic-operatorCopy to Clipboard Copied! Toggle word wrap Toggle overflow Verify that the Topic Operator has been deployed successfully:
oc describe deployment strimzi-topic-operator
oc describe deployment strimzi-topic-operatorCopy to Clipboard Copied! Toggle word wrap Toggle overflow The Topic Operator is deployed when the
Replicas:entry shows1 available.NoteYou may experience a delay with the deployment if you have a slow connection to the OpenShift cluster and the images have not been downloaded before.
2.2.3.2. Deploying the standalone User Operator Copy linkLink copied to clipboard!
This procedure shows how to deploy the User Operator as a standalone component.
A standalone deployment requires configuration of environment variables, and is more complicated than deploying the User Operator using the Cluster Operator. However, a standalone deployment is more flexible as the User Operator can operate with any Kafka cluster, not necessarily one deployed by the Cluster Operator.
Prerequisites
- You need an existing Kafka cluster for the User Operator to connect to.
Procedure
Edit the following
Deployment.spec.template.spec.containers[0].envproperties in theinstall/user-operator/05-Deployment-strimzi-user-operator.yamlfile by setting:-
STRIMZI_KAFKA_BOOTSTRAP_SERVERSto list the Kafka brokers, given as a comma-separated list ofhostname:portpairs. -
STRIMZI_ZOOKEEPER_CONNECTto list the ZooKeeper nodes, given as a comma-separated list ofhostname:portpairs. This must be the same ZooKeeper cluster that your Kafka cluster is using. Connecting to ZooKeeper nodes with TLS encryption is not supported. -
STRIMZI_NAMESPACEto the OpenShift namespace in which you want the operator to watch forKafkaUserresources. -
STRIMZI_LABELSto the label selector used to identify theKafkaUserresources managed by the operator. -
STRIMZI_FULL_RECONCILIATION_INTERVAL_MSto specify the interval between periodic reconciliations, in milliseconds. -
STRIMZI_ZOOKEEPER_SESSION_TIMEOUT_MSto the ZooKeeper session timeout, in milliseconds. For example,10000. Default20000(20 seconds). -
STRIMZI_CA_CERT_NAMEto point to an OpenShiftSecretthat contains the public key of the Certificate Authority for signing new user certificates for TLS client authentication. TheSecretmust contain the public key of the Certificate Authority under the keyca.crt. -
STRIMZI_CA_KEY_NAMEto point to an OpenShiftSecretthat contains the private key of the Certificate Authority for signing new user certificates for TLS client authentication. TheSecretmust contain the private key of the Certificate Authority under the keyca.key. -
STRIMZI_CLUSTER_CA_CERT_SECRET_NAMEto point to an OpenShiftSecretcontaining the public key of the Certificate Authority used for signing Kafka brokers certificates for enabling TLS-based communication. TheSecretmust contain the public key of the Certificate Authority under the keyca.crt. This environment variable is optional and should be set only if the communication with the Kafka cluster is TLS based. -
STRIMZI_EO_KEY_SECRET_NAMEto point to an OpenShiftSecretcontaining the private key and related certificate for TLS client authentication against the Kafka cluster. TheSecretmust contain the keystore with the private key and certificate under the keyentity-operator.p12, and the related password under the keyentity-operator.password. This environment variable is optional and should be set only if TLS client authentication is needed when the communication with the Kafka cluster is TLS based. -
STRIMZI_CA_VALIDITYthe validity period for the Certificate Authority. Default is365days. -
STRIMZI_CA_RENEWALthe renewal period for the Certificate Authority. -
STRIMZI_LOG_LEVELto the level for printing logging messages. The value can be set to:ERROR,WARNING,INFO,DEBUG, andTRACE. DefaultINFO. -
STRIMZI_GC_LOG_ENABLEDto enable garbage collection (GC) logging. Defaulttrue. Default is30days to initiate certificate renewal before the old certificates expire. -
STRIMZI_JAVA_OPTS(optional) to the Java options used for the JVM running User Operator. An example is-Xmx=512M -Xms=256M. -
STRIMZI_JAVA_SYSTEM_PROPERTIES(optional) to list the-Doptions which are set to the User Operator. An example is-Djavax.net.debug=verbose -DpropertyName=value.
-
Deploy the User Operator:
oc apply -f install/user-operator
oc apply -f install/user-operatorCopy to Clipboard Copied! Toggle word wrap Toggle overflow Verify that the User Operator has been deployed successfully:
oc describe deployment strimzi-user-operator
oc describe deployment strimzi-user-operatorCopy to Clipboard Copied! Toggle word wrap Toggle overflow The User Operator is deployed when the
Replicas:entry shows1 available.NoteYou may experience a delay with the deployment if you have a slow connection to the OpenShift cluster and the images have not been downloaded before.
2.3. Deploy Kafka Connect Copy linkLink copied to clipboard!
Kafka Connect is a tool for streaming data between Apache Kafka and external systems.
In AMQ Streams, Kafka Connect is deployed in distributed mode. Kafka Connect can also work in standalone mode, but this is not supported by AMQ Streams.
Using the concept of connectors, Kafka Connect provides a framework for moving large amounts of data into and out of your Kafka cluster while maintaining scalability and reliability.
Kafka Connect is typically used to integrate Kafka with external databases and storage and messaging systems.
The procedures in this section show how to:
The term connector is used interchangeably to mean a connector instance running within a Kafka Connect cluster, or a connector class. In this guide, the term connector is used when the meaning is clear from the context.
2.3.1. Deploying Kafka Connect to your OpenShift cluster Copy linkLink copied to clipboard!
This procedure shows how to deploy a Kafka Connect cluster to your OpenShift cluster using the Cluster Operator.
A Kafka Connect cluster is implemented as a Deployment with a configurable number of nodes (also called workers) that distribute the workload of connectors as tasks so that the message flow is highly scalable and reliable.
The deployment uses a YAML file to provide the specification to create a KafkaConnect resource.
In this procedure, we use the example file provided with AMQ Streams:
-
examples/connect/kafka-connect.yaml
For more information about configuring the KafkaConnect resource, see:
Prerequisites
Procedure
Deploy Kafka Connect to your OpenShift cluster.
oc apply -f examples/connect/kafka-connect.yaml
oc apply -f examples/connect/kafka-connect.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow Verify that Kafka Connect was successfully deployed:
oc get deployments
oc get deploymentsCopy to Clipboard Copied! Toggle word wrap Toggle overflow
2.3.2. Extending Kafka Connect with connector plug-ins Copy linkLink copied to clipboard!
The AMQ Streams container images for Kafka Connect include two built-in file connectors for moving file-based data into and out of your Kafka cluster.
| File Connector | Description |
|---|---|
|
| Transfers data to your Kafka cluster from a file (the source). |
|
| Transfers data from your Kafka cluster to a file (the sink). |
The Cluster Operator can also use images that you have created to deploy a Kafka Connect cluster to your OpenShift cluster.
The procedures in this section show how to add your own connector classes to connector images by:
You create the configuration for connectors directly using the Kafka Connect REST API or KafkaConnector custom resources.
2.3.2.1. Creating a Docker image from the Kafka Connect base image Copy linkLink copied to clipboard!
This procedure shows how to create a custom image and add it to the /opt/kafka/plugins directory.
You can use the Kafka container image on Red Hat Ecosystem Catalog as a base image for creating your own custom image with additional connector plug-ins.
At startup, the AMQ Streams version of Kafka Connect loads any third-party connector plug-ins contained in the /opt/kafka/plugins directory.
Prerequisites
Procedure
Create a new
Dockerfileusingregistry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0as the base image:FROM registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0 USER root:root COPY ./my-plugins/ /opt/kafka/plugins/ USER 1001
FROM registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0 USER root:root COPY ./my-plugins/ /opt/kafka/plugins/ USER 1001Copy to Clipboard Copied! Toggle word wrap Toggle overflow Example plug-in file
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Build the container image.
- Push your custom image to your container registry.
Point to the new container image.
You can either:
Edit the
KafkaConnect.spec.imageproperty of theKafkaConnectcustom resource.If set, this property overrides the
STRIMZI_KAFKA_CONNECT_IMAGESvariable in the Cluster Operator.Copy to Clipboard Copied! Toggle word wrap Toggle overflow or
-
In the
install/cluster-operator/050-Deployment-strimzi-cluster-operator.yamlfile, edit theSTRIMZI_KAFKA_CONNECT_IMAGESvariable to point to the new container image, and then reinstall the Cluster Operator.
Additional resources
-
For more information on the
KafkaConnect.spec.image property, see Container images. -
For more information on the
STRIMZI_KAFKA_CONNECT_IMAGESvariable, see Cluster Operator Configuration.
2.3.2.2. Creating a container image using OpenShift builds and Source-to-Image Copy linkLink copied to clipboard!
This procedure shows how to use OpenShift builds and the Source-to-Image (S2I) framework to create a new container image.
An OpenShift build takes a builder image with S2I support, together with source code and binaries provided by the user, and uses them to build a new container image. Once built, container images are stored in OpenShift’s local container image repository and are available for use in deployments.
A Kafka Connect builder image with S2I support is provided on the Red Hat Ecosystem Catalog as part of the registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0 image. This S2I image takes your binaries (with plug-ins and connectors) and stores them in the /tmp/kafka-plugins/s2i directory. It creates a new Kafka Connect image from this directory, which can then be used with the Kafka Connect deployment. When started using the enhanced image, Kafka Connect loads any third-party plug-ins from the /tmp/kafka-plugins/s2i directory.
Procedure
On the command line, use the
oc applycommand to create and deploy a Kafka Connect S2I cluster:oc apply -f examples/connect/kafka-connect-s2i.yaml
oc apply -f examples/connect/kafka-connect-s2i.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow Create a directory with Kafka Connect plug-ins:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Use the
oc start-buildcommand to start a new build of the image using the prepared directory:oc start-build my-connect-cluster-connect --from-dir ./my-plugins/
oc start-build my-connect-cluster-connect --from-dir ./my-plugins/Copy to Clipboard Copied! Toggle word wrap Toggle overflow NoteThe name of the build is the same as the name of the deployed Kafka Connect cluster.
- When the build has finished, the new image is used automatically by the Kafka Connect deployment.
2.3.3. Creating and managing connectors Copy linkLink copied to clipboard!
When you have created a container image for your connector plug-in, you need to create a connector instance in your Kafka Connect cluster. You can then configure, monitor, and manage a running connector instance.
A connector is an instance of a particular connector class that knows how to communicate with the relevant external system in terms of messages. Connectors are available for many external systems, or you can create your own.
You can create source and sink types of connector.
- Source connector
- A source connector is a runtime entity that fetches data from an external system and feeds it to Kafka as messages.
- Sink connector
- A sink connector is a runtime entity that fetches messages from Kafka topics and feeds them to an external system.
AMQ Streams provides two APIs for creating and managing connectors:
-
KafkaConnectorresources (referred to asKafkaConnectors) - Kafka Connect REST API
Using the APIs, you can:
- Check the status of a connector instance
- Reconfigure a running connector
- Increase or decrease the number of tasks for a connector instance
-
Restart failed tasks (not supported by
KafkaConnectorresource) - Pause a connector instance
- Resume a previously paused connector instance
- Delete a connector instance
2.3.3.1. KafkaConnector resources Copy linkLink copied to clipboard!
KafkaConnectors allow you to create and manage connector instances for Kafka Connect in an OpenShift-native way, so an HTTP client such as cURL is not required. Like other Kafka resources, you declare a connector’s desired state in a KafkaConnector YAML file that is deployed to your OpenShift cluster to create the connector instance.
You manage a running connector instance by updating its corresponding KafkaConnector, and then applying the updates. You remove a connector by deleting its corresponding KafkaConnector.
To ensure compatibility with earlier versions of AMQ Streams, KafkaConnectors are disabled by default. To enable them for a Kafka Connect cluster, you must use annotations on the KafkaConnect resource. For instructions, see Enabling KafkaConnector resources.
When KafkaConnectors are enabled, the Cluster Operator begins to watch for them. It updates the configurations of running connector instances to match the configurations defined in their KafkaConnectors.
AMQ Streams includes an example KafkaConnector, named examples/connect/source-connector.yaml. You can use this example to create and manage a FileStreamSourceConnector.
2.3.3.2. Availability of the Kafka Connect REST API Copy linkLink copied to clipboard!
The Kafka Connect REST API is available on port 8083 as the <connect-cluster-name>-connect-api service.
If KafkaConnectors are enabled, manual changes made directly using the Kafka Connect REST API are reverted by the Cluster Operator.
The operations supported by the REST API are described in the Apache Kafka documentation.
2.3.4. Deploying a KafkaConnector resource to Kafka Connect Copy linkLink copied to clipboard!
This procedure describes how to deploy the example KafkaConnector to a Kafka Connect cluster.
The example YAML will create a FileStreamSourceConnector to send each line of the license file to Kafka as a message in a topic named my-topic.
Prerequisites
-
A Kafka Connect deployment in which
KafkaConnectorsare enabled - A running Cluster Operator
Procedure
Edit the
examples/connect/source-connector.yamlfile:Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Enter a name for the
KafkaConnectorresource. This will be used as the name of the connector within Kafka Connect. You can choose any name that is valid for an OpenShift resource. - 2
- Enter the name of the Kafka Connect cluster in which to create the connector.
- 3
- The name or alias of the connector class. This should be present in the image being used by the Kafka Connect cluster.
- 4
- The maximum number of tasks that the connector can create.
- 5
- Configuration settings for the connector. Available configuration options depend on the connector class.
Create the
KafkaConnectorin your OpenShift cluster:oc apply -f examples/connect/source-connector.yaml
oc apply -f examples/connect/source-connector.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow Check that the resource was created:
oc get kctr --selector strimzi.io/cluster=my-connect-cluster -o name
oc get kctr --selector strimzi.io/cluster=my-connect-cluster -o nameCopy to Clipboard Copied! Toggle word wrap Toggle overflow
2.4. Deploy Kafka MirrorMaker Copy linkLink copied to clipboard!
The Cluster Operator deploys one or more Kafka MirrorMaker replicas to replicate data between Kafka clusters. This process is called mirroring to avoid confusion with the Kafka partitions replication concept. MirrorMaker consumes messages from the source cluster and republishes those messages to the target cluster.
2.4.1. Deploying Kafka MirrorMaker to your OpenShift cluster Copy linkLink copied to clipboard!
This procedure shows how to deploy a Kafka MirrorMaker cluster to your OpenShift cluster using the Cluster Operator.
The deployment uses a YAML file to provide the specification to create a KafkaMirrorMaker or KafkaMirrorMaker2 resource depending on the version of MirrorMaker deployed.
In this procedure, we use the example files provided with AMQ Streams:
-
examples/mirror-maker/kafka-mirror-maker.yaml -
examples/mirror-maker/kafka-mirror-maker-2.yaml
For information about configuring KafkaMirrorMaker or KafkaMirrorMaker2 resources, see Kafka MirrorMaker configuration.
Prerequisites
Procedure
Deploy Kafka MirrorMaker to your OpenShift cluster:
For MirrorMaker:
oc apply -f examples/mirror-maker/kafka-mirror-maker.yaml
oc apply -f examples/mirror-maker/kafka-mirror-maker.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow For MirrorMaker 2.0:
oc apply -f examples/mirror-maker/kafka-mirror-maker-2.yaml
oc apply -f examples/mirror-maker/kafka-mirror-maker-2.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow Verify that MirrorMaker was successfully deployed:
oc get deployments
oc get deploymentsCopy to Clipboard Copied! Toggle word wrap Toggle overflow
2.5. Deploy Kafka Bridge Copy linkLink copied to clipboard!
The Cluster Operator deploys one or more Kafka bridge replicas to send data between Kafka clusters and clients via HTTP API.
2.5.1. Deploying Kafka Bridge to your OpenShift cluster Copy linkLink copied to clipboard!
This procedure shows how to deploy a Kafka Bridge cluster to your OpenShift cluster using the Cluster Operator.
The deployment uses a YAML file to provide the specification to create a KafkaBridge resource.
In this procedure, we use the example file provided with AMQ Streams:
-
examples/bridge/kafka-bridge.yaml
For information about configuring the KafkaBridge resource, see Kafka Bridge configuration.
Prerequisites
Procedure
Deploy Kafka Bridge to your OpenShift cluster:
oc apply -f examples/bridge/kafka-bridge.yaml
oc apply -f examples/bridge/kafka-bridge.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow Verify that Kafka Bridge was successfully deployed:
oc get deployments
oc get deploymentsCopy to Clipboard Copied! Toggle word wrap Toggle overflow
2.6. Deploying example clients Copy linkLink copied to clipboard!
This procedure shows how to deploy example producer and consumer clients that use the Kafka cluster you created to send and receive messages.
Prerequisites
- The Kafka cluster is available for the clients.
Procedure
Deploy a Kafka producer.
oc run kafka-producer -ti --image=registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0 --rm=true --restart=Never -- bin/kafka-console-producer.sh --broker-list cluster-name-kafka-bootstrap:9092 --topic my-topic
oc run kafka-producer -ti --image=registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0 --rm=true --restart=Never -- bin/kafka-console-producer.sh --broker-list cluster-name-kafka-bootstrap:9092 --topic my-topicCopy to Clipboard Copied! Toggle word wrap Toggle overflow - Type a message into the console where the producer is running.
- Press Enter to send the message.
Deploy a Kafka consumer.
oc run kafka-consumer -ti --image=registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0 --rm=true --restart=Never -- bin/kafka-console-consumer.sh --bootstrap-server cluster-name-kafka-bootstrap:9092 --topic my-topic --from-beginning
oc run kafka-consumer -ti --image=registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0 --rm=true --restart=Never -- bin/kafka-console-consumer.sh --bootstrap-server cluster-name-kafka-bootstrap:9092 --topic my-topic --from-beginningCopy to Clipboard Copied! Toggle word wrap Toggle overflow - Confirm that you see the incoming messages in the consumer console.
Chapter 3. Deployment configuration Copy linkLink copied to clipboard!
This chapter describes how to configure different aspects of the supported deployments:
- Kafka clusters
- Kafka Connect clusters
- Kafka Connect clusters with Source2Image support
- Kafka Mirror Maker
- Kafka Bridge
- OAuth 2.0 token-based authentication
- OAuth 2.0 token-based authorization
3.1. Kafka cluster configuration Copy linkLink copied to clipboard!
The full schema of the Kafka resource is described in the Section B.1, “Kafka schema reference”. All labels that are applied to the desired Kafka resource will also be applied to the OpenShift resources making up the Kafka cluster. This provides a convenient mechanism for resources to be labeled as required.
3.1.1. Sample Kafka YAML configuration Copy linkLink copied to clipboard!
For help in understanding the configuration options available for your Kafka deployment, refer to sample YAML file provided here.
The sample shows only some of the possible configuration options, but those that are particularly important include:
- Resource requests (CPU / Memory)
- JVM options for maximum and minimum memory allocation
- Listeners (and authentication)
- Authentication
- Storage
- Rack awareness
- Metrics
- 1
- Replicas specifies the number of broker nodes.
- 2
- Kafka version, which can be changed by following the upgrade procedure.
- 3
- Resource requests specify the resources to reserve for a given container.
- 4
- Resource limits specify the maximum resources that can be consumed by a container.
- 5
- 6
- Listeners configure how clients connect to the Kafka cluster via bootstrap addresses. Listeners are configured as
plain(without encryption),tlsorexternal. - 7
- Listener authentication mechanisms may be configured for each listener, and specified as mutual TLS or SCRAM-SHA.
- 8
- External listener configuration specifies how the Kafka cluster is exposed outside OpenShift, such as through a
route,loadbalancerornodeport. - 9
- Optional configuration for a Kafka listener certificate managed by an external Certificate Authority. The
brokerCertChainAndKeyproperty specifies aSecretthat holds a server certificate and a private key. Kafka listener certificates can also be configured for TLS listeners. - 10
- 11
- Config specifies the broker configuration. Standard Apache Kafka configuration may be provided, restricted to those properties not managed directly by AMQ Streams.
- 12
- 13
- 14
- Storage size for persistent volumes may be increased and additional volumes may be added to JBOD storage.
- 15
- Persistent storage has additional configuration options, such as a storage
idandclassfor dynamic volume provisioning. - 16
- Rack awareness is configured to spread replicas across different racks. A
topologykey must match the label of a cluster node. - 17
- 18
- Kafka rules for exporting metrics to a Grafana dashboard through the JMX Exporter. A set of rules provided with AMQ Streams may be copied to your Kafka resource configuration.
- 19
- ZooKeeper-specific configuration, which contains properties similar to the Kafka configuration.
- 20
- Entity Operator configuration, which specifies the configuration for the Topic Operator and User Operator.
- 21
- Kafka Exporter configuration, which is used to expose data as Prometheus metrics.
- 22
- Cruise Control configuration, which is used to rebalance the Kafka cluster.
3.1.2. Data storage considerations Copy linkLink copied to clipboard!
An efficient data storage infrastructure is essential to the optimal performance of AMQ Streams.
Block storage is required. File storage, such as NFS, does not work with Kafka.
For your block storage, you can choose, for example:
- Cloud-based block storage solutions, such as Amazon Elastic Block Store (EBS)
- Local persistent volumes
- Storage Area Network (SAN) volumes accessed by a protocol such as Fibre Channel or iSCSI
AMQ Streams does not require OpenShift raw block volumes.
3.1.2.1. File systems Copy linkLink copied to clipboard!
It is recommended that you configure your storage system to use the XFS file system. AMQ Streams is also compatible with the ext4 file system, but this might require additional configuration for best results.
3.1.2.2. Apache Kafka and ZooKeeper storage Copy linkLink copied to clipboard!
Use separate disks for Apache Kafka and ZooKeeper.
Three types of data storage are supported:
- Ephemeral (Recommended for development only)
- Persistent
- JBOD (Just a Bunch of Disks, suitable for Kafka only)
For more information, see Kafka and ZooKeeper storage.
Solid-state drives (SSDs), though not essential, can improve the performance of Kafka in large clusters where data is sent to and received from multiple topics asynchronously. SSDs are particularly effective with ZooKeeper, which requires fast, low latency data access.
You do not need to provision replicated storage because Kafka and ZooKeeper both have built-in data replication.
3.1.3. Kafka and ZooKeeper storage types Copy linkLink copied to clipboard!
As stateful applications, Kafka and ZooKeeper need to store data on disk. AMQ Streams supports three storage types for this data:
- Ephemeral
- Persistent
- JBOD storage
JBOD storage is supported only for Kafka, not for ZooKeeper.
When configuring a Kafka resource, you can specify the type of storage used by the Kafka broker and its corresponding ZooKeeper node. You configure the storage type using the storage property in the following resources:
-
Kafka.spec.kafka -
Kafka.spec.zookeeper
The storage type is configured in the type field.
The storage type cannot be changed after a Kafka cluster is deployed.
Additional resources
- For more information about ephemeral storage, see ephemeral storage schema reference.
- For more information about persistent storage, see persistent storage schema reference.
- For more information about JBOD storage, see JBOD schema reference.
-
For more information about the schema for
Kafka, seeKafkaschema reference.
3.1.3.1. Ephemeral storage Copy linkLink copied to clipboard!
Ephemeral storage uses the `emptyDir` volumes volumes to store data. To use ephemeral storage, the type field should be set to ephemeral.
emptyDir volumes are not persistent and the data stored in them will be lost when the Pod is restarted. After the new pod is started, it has to recover all data from other nodes of the cluster. Ephemeral storage is not suitable for use with single node ZooKeeper clusters and for Kafka topics with replication factor 1, because it will lead to data loss.
An example of Ephemeral storage
3.1.3.1.1. Log directories Copy linkLink copied to clipboard!
The ephemeral volume will be used by the Kafka brokers as log directories mounted into the following path:
/var/lib/kafka/data/kafka-log_idx_-
Where
idxis the Kafka broker pod index. For example/var/lib/kafka/data/kafka-log0.
3.1.3.2. Persistent storage Copy linkLink copied to clipboard!
Persistent storage uses Persistent Volume Claims to provision persistent volumes for storing data. Persistent Volume Claims can be used to provision volumes of many different types, depending on the Storage Class which will provision the volume. The data types which can be used with persistent volume claims include many types of SAN storage as well as Local persistent volumes.
To use persistent storage, the type has to be set to persistent-claim. Persistent storage supports additional configuration options:
id(optional)-
Storage identification number. This option is mandatory for storage volumes defined in a JBOD storage declaration. Default is
0. size(required)- Defines the size of the persistent volume claim, for example, "1000Gi".
class(optional)- The OpenShift Storage Class to use for dynamic volume provisioning.
selector(optional)- Allows selecting a specific persistent volume to use. It contains key:value pairs representing labels for selecting such a volume.
deleteClaim(optional)-
Boolean value which specifies if the Persistent Volume Claim has to be deleted when the cluster is undeployed. Default is
false.
Increasing the size of persistent volumes in an existing AMQ Streams cluster is only supported in OpenShift versions that support persistent volume resizing. The persistent volume to be resized must use a storage class that supports volume expansion. For other versions of OpenShift and storage classes which do not support volume expansion, you must decide the necessary storage size before deploying the cluster. Decreasing the size of existing persistent volumes is not possible.
Example fragment of persistent storage configuration with 1000Gi size
# ... storage: type: persistent-claim size: 1000Gi # ...
# ...
storage:
type: persistent-claim
size: 1000Gi
# ...
The following example demonstrates the use of a storage class.
Example fragment of persistent storage configuration with specific Storage Class
Finally, a selector can be used to select a specific labeled persistent volume to provide needed features such as an SSD.
Example fragment of persistent storage configuration with selector
3.1.3.2.1. Storage class overrides Copy linkLink copied to clipboard!
You can specify a different storage class for one or more Kafka brokers, instead of using the default storage class. This is useful if, for example, storage classes are restricted to different availability zones or data centers. You can use the overrides field for this purpose.
In this example, the default storage class is named my-storage-class:
Example AMQ Streams cluster using storage class overrides
As a result of the configured overrides property, the broker volumes use the following storage classes:
-
The persistent volumes of broker 0 will use
my-storage-class-zone-1a. -
The persistent volumes of broker 1 will use
my-storage-class-zone-1b. -
The persistent volumes of broker 2 will use
my-storage-class-zone-1c.
The overrides property is currently used only to override storage class configurations. Overriding other storage configuration fields is not currently supported. Other fields from the storage configuration are currently not supported.
3.1.3.2.2. Persistent Volume Claim naming Copy linkLink copied to clipboard!
When persistent storage is used, it creates Persistent Volume Claims with the following names:
data-cluster-name-kafka-idx-
Persistent Volume Claim for the volume used for storing data for the Kafka broker pod
idx. data-cluster-name-zookeeper-idx-
Persistent Volume Claim for the volume used for storing data for the ZooKeeper node pod
idx.
3.1.3.2.3. Log directories Copy linkLink copied to clipboard!
The persistent volume will be used by the Kafka brokers as log directories mounted into the following path:
/var/lib/kafka/data/kafka-log_idx_-
Where
idxis the Kafka broker pod index. For example/var/lib/kafka/data/kafka-log0.
3.1.3.3. Resizing persistent volumes Copy linkLink copied to clipboard!
You can provision increased storage capacity by increasing the size of the persistent volumes used by an existing AMQ Streams cluster. Resizing persistent volumes is supported in clusters that use either a single persistent volume or multiple persistent volumes in a JBOD storage configuration.
You can increase but not decrease the size of persistent volumes. Decreasing the size of persistent volumes is not currently supported in OpenShift.
Prerequisites
- An OpenShift cluster with support for volume resizing.
- The Cluster Operator is running.
- A Kafka cluster using persistent volumes created using a storage class that supports volume expansion.
Procedure
In a
Kafkaresource, increase the size of the persistent volume allocated to the Kafka cluster, the ZooKeeper cluster, or both.-
To increase the volume size allocated to the Kafka cluster, edit the
spec.kafka.storageproperty. To increase the volume size allocated to the ZooKeeper cluster, edit the
spec.zookeeper.storageproperty.For example, to increase the volume size from
1000Gito2000Gi:Copy to Clipboard Copied! Toggle word wrap Toggle overflow
-
To increase the volume size allocated to the Kafka cluster, edit the
Create or update the resource.
Use
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow OpenShift increases the capacity of the selected persistent volumes in response to a request from the Cluster Operator. When the resizing is complete, the Cluster Operator restarts all pods that use the resized persistent volumes. This happens automatically.
Additional resources
For more information about resizing persistent volumes in OpenShift, see Resizing Persistent Volumes using Kubernetes.
3.1.3.4. JBOD storage overview Copy linkLink copied to clipboard!
You can configure AMQ Streams to use JBOD, a data storage configuration of multiple disks or volumes. JBOD is one approach to providing increased data storage for Kafka brokers. It can also improve performance.
A JBOD configuration is described by one or more volumes, each of which can be either ephemeral or persistent. The rules and constraints for JBOD volume declarations are the same as those for ephemeral and persistent storage. For example, you cannot change the size of a persistent storage volume after it has been provisioned.
3.1.3.4.1. JBOD configuration Copy linkLink copied to clipboard!
To use JBOD with AMQ Streams, the storage type must be set to jbod. The volumes property allows you to describe the disks that make up your JBOD storage array or configuration. The following fragment shows an example JBOD configuration:
The ids cannot be changed once the JBOD volumes are created.
Users can add or remove volumes from the JBOD configuration.
3.1.3.4.2. JBOD and Persistent Volume Claims Copy linkLink copied to clipboard!
When persistent storage is used to declare JBOD volumes, the naming scheme of the resulting Persistent Volume Claims is as follows:
data-id-cluster-name-kafka-idx-
Where
idis the ID of the volume used for storing data for Kafka broker podidx.
3.1.3.4.3. Log directories Copy linkLink copied to clipboard!
The JBOD volumes will be used by the Kafka brokers as log directories mounted into the following path:
/var/lib/kafka/data-id/kafka-log_idx_-
Where
idis the ID of the volume used for storing data for Kafka broker podidx. For example/var/lib/kafka/data-0/kafka-log0.
3.1.3.5. Adding volumes to JBOD storage Copy linkLink copied to clipboard!
This procedure describes how to add volumes to a Kafka cluster configured to use JBOD storage. It cannot be applied to Kafka clusters configured to use any other storage type.
When adding a new volume under an id which was already used in the past and removed, you have to make sure that the previously used PersistentVolumeClaims have been deleted.
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
- A Kafka cluster with JBOD storage
Procedure
Edit the
spec.kafka.storage.volumesproperty in theKafkaresource. Add the new volumes to thevolumesarray. For example, add the new volume with id2:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow - Create new topics or reassign existing partitions to the new disks.
Additional resources
For more information about reassigning topics, see Section 3.1.25.2, “Partition reassignment”.
3.1.3.6. Removing volumes from JBOD storage Copy linkLink copied to clipboard!
This procedure describes how to remove volumes from Kafka cluster configured to use JBOD storage. It cannot be applied to Kafka clusters configured to use any other storage type. The JBOD storage always has to contain at least one volume.
To avoid data loss, you have to move all partitions before removing the volumes.
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
- A Kafka cluster with JBOD storage with two or more volumes
Procedure
- Reassign all partitions from the disks which are you going to remove. Any data in partitions still assigned to the disks which are going to be removed might be lost.
Edit the
spec.kafka.storage.volumesproperty in theKafkaresource. Remove one or more volumes from thevolumesarray. For example, remove the volumes with ids1and2:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
For more information about reassigning topics, see Section 3.1.25.2, “Partition reassignment”.
3.1.4. Kafka broker replicas Copy linkLink copied to clipboard!
A Kafka cluster can run with many brokers. You can configure the number of brokers used for the Kafka cluster in Kafka.spec.kafka.replicas. The best number of brokers for your cluster has to be determined based on your specific use case.
3.1.4.1. Configuring the number of broker nodes Copy linkLink copied to clipboard!
This procedure describes how to configure the number of Kafka broker nodes in a new cluster. It only applies to new clusters with no partitions. If your cluster already has topics defined, see Section 3.1.25, “Scaling clusters”.
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
- A Kafka cluster with no topics defined yet
Procedure
Edit the
replicasproperty in theKafkaresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
If your cluster already has topics defined, see Section 3.1.25, “Scaling clusters”.
3.1.5. Kafka broker configuration Copy linkLink copied to clipboard!
AMQ Streams allows you to customize the configuration of the Kafka brokers in your Kafka cluster. You can specify and configure most of the options listed in the "Broker Configs" section of the Apache Kafka documentation. You cannot configure options that are related to the following areas:
- Security (Encryption, Authentication, and Authorization)
- Listener configuration
- Broker ID configuration
- Configuration of log data directories
- Inter-broker communication
- ZooKeeper connectivity
These options are automatically configured by AMQ Streams.
3.1.5.1. Kafka broker configuration Copy linkLink copied to clipboard!
The config property in Kafka.spec.kafka contains Kafka broker configuration options as keys with values in one of the following JSON types:
- String
- Number
- Boolean
You can specify and configure all of the options in the "Broker Configs" section of the Apache Kafka documentation apart from those managed directly by AMQ Streams. Specifically, you are prevented from modifying all configuration options with keys equal to or starting with one of the following strings:
-
listeners -
advertised. -
broker. -
listener. -
host.name -
port -
inter.broker.listener.name -
sasl. -
ssl. -
security. -
password. -
principal.builder.class -
log.dir -
zookeeper.connect -
zookeeper.set.acl -
authorizer. -
super.user
If the config property specifies a restricted option, it is ignored and a warning message is printed to the Cluster Operator log file. All other supported options are passed to Kafka.
Use the three allowed ssl configuration options to run external listeners with a specific cipher suite for a TLS version. A cipher suite combines algorithms for secure connection and data transfer.
Example Kafka broker configuration
- 1
- The cipher suite for TLS using a combination of
ECDHEkey exchange mechanism,RSAauthentication algorithm,AESbulk encyption algorithm andSHA384MAC algorithm. - 2
- The SSl protocol
TLSv1.2is enabled. - 3
- Specifies the
TLSv1.2protocol to generate the SSL context. Allowed values areTLSv1.1andTLSv1.2.
3.1.5.2. Configuring Kafka brokers Copy linkLink copied to clipboard!
You can configure an existing Kafka broker, or create a new Kafka broker with a specified configuration.
Prerequisites
- An OpenShift cluster is available.
- The Cluster Operator is running.
Procedure
-
Open the YAML configuration file that contains the
Kafkaresource specifying the cluster deployment. In the
spec.kafka.configproperty in theKafkaresource, enter one or more Kafka configuration settings. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Apply the new configuration to create or update the resource.
Use
oc apply:oc apply -f kafka.yaml
oc apply -f kafka.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow where
kafka.yamlis the YAML configuration file for the resource that you want to configure; for example,kafka-persistent.yaml.
3.1.6. Kafka broker listeners Copy linkLink copied to clipboard!
You can configure the listeners enabled in Kafka brokers. The following types of listeners are supported:
- Plain listener on port 9092 (without TLS encryption)
- TLS listener on port 9093 (with TLS encryption)
- External listener on port 9094 for access from outside of OpenShift
OAuth 2.0
If you are using OAuth 2.0 token-based authentication, you can configure the listeners to connect to your authorization server. For more information, see Using OAuth 2.0 token-based authentication.
Listener certificates
You can provide your own server certificates, called Kafka listener certificates, for TLS listeners or external listeners which have TLS encryption enabled. For more information, see Section 12.8, “Kafka listener certificates”.
3.1.6.1. Kafka listeners Copy linkLink copied to clipboard!
You can configure Kafka broker listeners using the listeners property in the Kafka.spec.kafka resource. The listeners property contains three sub-properties:
-
plain -
tls -
external
Each listener will only be defined when the listeners object has the given property.
An example of listeners property with all listeners enabled
An example of listeners property with only the plain listener enabled
# ...
listeners:
plain: {}
# ...
# ...
listeners:
plain: {}
# ...
3.1.6.2. Configuring Kafka listeners Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
listenersproperty in theKafka.spec.kafkaresource.An example configuration of the plain (unencrypted) listener without authentication:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
-
For more information about the schema, see
KafkaListenersschema reference.
3.1.6.3. Listener authentication Copy linkLink copied to clipboard!
The listener authentication property is used to specify an authentication mechanism specific to that listener:
- Mutual TLS authentication (only on the listeners with TLS encryption)
- SCRAM-SHA authentication
If no authentication property is specified then the listener does not authenticate clients which connect through that listener.
Authentication must be configured when using the User Operator to manage KafkaUsers.
3.1.6.3.1. Authentication configuration for a listener Copy linkLink copied to clipboard!
The following example shows:
-
A
plainlistener configured for SCRAM-SHA authentication -
A
tlslistener with mutual TLS authentication -
An
externallistener with mutual TLS authentication
An example showing listener authentication configuration
3.1.6.3.2. Mutual TLS authentication Copy linkLink copied to clipboard!
Mutual TLS authentication is always used for the communication between Kafka brokers and ZooKeeper pods.
Mutual authentication or two-way authentication is when both the server and the client present certificates. AMQ Streams can configure Kafka to use TLS (Transport Layer Security) to provide encrypted communication between Kafka brokers and clients either with or without mutual authentication. When you configure mutual authentication, the broker authenticates the client and the client authenticates the broker.
TLS authentication is more commonly one-way, with one party authenticating the identity of another. For example, when HTTPS is used between a web browser and a web server, the server obtains proof of the identity of the browser.
3.1.6.3.2.1. When to use mutual TLS authentication for clients Copy linkLink copied to clipboard!
Mutual TLS authentication is recommended for authenticating Kafka clients when:
- The client supports authentication using mutual TLS authentication
- It is necessary to use the TLS certificates rather than passwords
- You can reconfigure and restart client applications periodically so that they do not use expired certificates.
3.1.6.3.3. SCRAM-SHA authentication Copy linkLink copied to clipboard!
SCRAM (Salted Challenge Response Authentication Mechanism) is an authentication protocol that can establish mutual authentication using passwords. AMQ Streams can configure Kafka to use SASL (Simple Authentication and Security Layer) SCRAM-SHA-512 to provide authentication on both unencrypted and TLS-encrypted client connections. TLS authentication is always used internally between Kafka brokers and ZooKeeper nodes. When used with a TLS client connection, the TLS protocol provides encryption, but is not used for authentication.
The following properties of SCRAM make it safe to use SCRAM-SHA even on unencrypted connections:
- The passwords are not sent in the clear over the communication channel. Instead the client and the server are each challenged by the other to offer proof that they know the password of the authenticating user.
- The server and client each generate a new challenge for each authentication exchange. This means that the exchange is resilient against replay attacks.
3.1.6.3.3.1. Supported SCRAM credentials Copy linkLink copied to clipboard!
AMQ Streams supports SCRAM-SHA-512 only. When a KafkaUser.spec.authentication.type is configured with scram-sha-512 the User Operator will generate a random 12 character password consisting of upper and lowercase ASCII letters and numbers.
3.1.6.3.3.2. When to use SCRAM-SHA authentication for clients Copy linkLink copied to clipboard!
SCRAM-SHA is recommended for authenticating Kafka clients when:
- The client supports authentication using SCRAM-SHA-512
- It is necessary to use passwords rather than the TLS certificates
- Authentication for unencrypted communication is required
3.1.6.4. External listeners Copy linkLink copied to clipboard!
Use an external listener to expose your AMQ Streams Kafka cluster to a client outside an OpenShift environment.
Additional resources
3.1.6.4.1. Customizing advertised addresses on external listeners Copy linkLink copied to clipboard!
By default, AMQ Streams tries to automatically determine the hostnames and ports that your Kafka cluster advertises to its clients. This is not sufficient in all situations, because the infrastructure on which AMQ Streams is running might not provide the right hostname or port through which Kafka can be accessed. You can customize the advertised hostname and port in the overrides property of the external listener. AMQ Streams will then automatically configure the advertised address in the Kafka brokers and add it to the broker certificates so it can be used for TLS hostname verification. Overriding the advertised host and ports is available for all types of external listeners.
Example of an external listener configured with overrides for advertised addresses
Additionally, you can specify the name of the bootstrap service. This name will be added to the broker certificates and can be used for TLS hostname verification. Adding the additional bootstrap address is available for all types of external listeners.
Example of an external listener configured with an additional bootstrap address
3.1.6.4.2. Route external listeners Copy linkLink copied to clipboard!
An external listener of type route exposes Kafka using OpenShift Routes and the HAProxy router.
route is only supported on OpenShift
3.1.6.4.2.1. Exposing Kafka using OpenShift Routes Copy linkLink copied to clipboard!
When exposing Kafka using OpenShift Routes and the HAProxy router, a dedicated Route is created for every Kafka broker pod. An additional Route is created to serve as a Kafka bootstrap address. Kafka clients can use these Routes to connect to Kafka on port 443.
TLS encryption is always used with Routes.
By default, the route hosts are automatically assigned by OpenShift. However, you can override the assigned route hosts by specifying the requested hosts in the overrides property. AMQ Streams will not perform any validation that the requested hosts are available; you must ensure that they are free and can be used.
Example of an external listener of type routes configured with overrides for OpenShift route hosts
For more information on using Routes to access Kafka, see Section 3.1.6.4.2.2, “Accessing Kafka using OpenShift routes”.
3.1.6.4.2.2. Accessing Kafka using OpenShift routes Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Deploy Kafka cluster with an external listener enabled and configured to the type
route.An example configuration with an external listener configured to use
Routes:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow Find the address of the bootstrap
Route.oc get routes CLUSTER-NAME-kafka-bootstrap -o=jsonpath='{.status.ingress[0].host}{"\n"}'oc get routes CLUSTER-NAME-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 get secret CLUSTER-NAME-cluster-ca-cert -o jsonpath='{.data.ca\.crt}' | base64 -d > ca.crtoc get secret CLUSTER-NAME-cluster-ca-cert -o jsonpath='{.data.ca\.crt}' | base64 -d > ca.crtCopy to Clipboard Copied! Toggle word wrap Toggle overflow Use the extracted certificate in your Kafka client to configure TLS connection. If you enabled any authentication, you will also need to configure SASL or TLS authentication.
Additional resources
-
For more information about the schema, see
KafkaListenersschema reference.
3.1.6.4.3. Loadbalancer external listeners Copy linkLink copied to clipboard!
External listeners of type loadbalancer expose Kafka by using Loadbalancer type Services.
3.1.6.4.3.1. Exposing Kafka using loadbalancers Copy linkLink copied to clipboard!
When exposing Kafka using Loadbalancer type Services, a new loadbalancer service is created for every Kafka broker pod. An additional loadbalancer is created to serve as a Kafka bootstrap address. Loadbalancers listen to connections on port 9094.
By default, TLS encryption is enabled. To disable it, set the tls field to false.
Example of an external listener of type loadbalancer
For more information on using loadbalancers to access Kafka, see Section 3.1.6.4.3.4, “Accessing Kafka using loadbalancers”.
3.1.6.4.3.2. Customizing the DNS names of external loadbalancer listeners Copy linkLink copied to clipboard!
On loadbalancer listeners, you can use the dnsAnnotations property to add additional annotations to the loadbalancer services. You can use these annotations to instrument DNS tooling such as External DNS, which automatically assigns DNS names to the loadbalancer services.
Example of an external listener of type loadbalancer using dnsAnnotations
3.1.6.4.3.3. Customizing the loadbalancer IP addresses Copy linkLink copied to clipboard!
On loadbalancer listeners, you can use the loadBalancerIP property to request a specific IP address when creating a loadbalancer. Use this property when you need to use a loadbalancer with a specific IP address. The loadBalancerIP field is ignored if the cloud provider does not support the feature.
Example of an external listener of type loadbalancer with specific loadbalancer IP address requests
3.1.6.4.3.4. Accessing Kafka using loadbalancers Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Deploy Kafka cluster with an external listener enabled and configured to the type
loadbalancer.An example configuration with an external listener configured to use loadbalancers:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow Find the hostname of the bootstrap loadbalancer.
This can be done using
oc get:oc get service cluster-name-kafka-external-bootstrap -o=jsonpath='{.status.loadBalancer.ingress[0].hostname}{"\n"}'oc get service cluster-name-kafka-external-bootstrap -o=jsonpath='{.status.loadBalancer.ingress[0].hostname}{"\n"}'Copy to Clipboard Copied! Toggle word wrap Toggle overflow If no hostname was found (nothing was returned by the command), use the loadbalancer IP address.
This can be done using
oc get:oc get service cluster-name-kafka-external-bootstrap -o=jsonpath='{.status.loadBalancer.ingress[0].ip}{"\n"}'oc get service cluster-name-kafka-external-bootstrap -o=jsonpath='{.status.loadBalancer.ingress[0].ip}{"\n"}'Copy to Clipboard Copied! Toggle word wrap Toggle overflow Use the hostname or IP address together with port 9094 in your Kafka client as the bootstrap address.
Unless TLS encryption was disabled, extract the public certificate of the broker certification authority.
This can be done using
oc get:oc get secret cluster-name-cluster-ca-cert -o jsonpath='{.data.ca\.crt}' | base64 -d > ca.crtoc get secret cluster-name-cluster-ca-cert -o jsonpath='{.data.ca\.crt}' | base64 -d > ca.crtCopy to Clipboard Copied! Toggle word wrap Toggle overflow Use the extracted certificate in your Kafka client to configure TLS connection. If you enabled any authentication, you will also need to configure SASL or TLS authentication.
Additional resources
-
For more information about the schema, see
KafkaListenersschema reference.
3.1.6.4.4. Node Port external listeners Copy linkLink copied to clipboard!
External listeners of type nodeport expose Kafka by using NodePort type Services.
3.1.6.4.4.1. Exposing Kafka using node ports Copy linkLink copied to clipboard!
When exposing Kafka using NodePort type Services, Kafka clients connect directly to the nodes of OpenShift. You must enable access to the ports on the OpenShift nodes for each client (for example, in firewalls or security groups). Each Kafka broker pod is then accessible on a separate port.
An additional NodePort type of service is created to serve as a Kafka bootstrap address.
When configuring the advertised addresses for the Kafka broker pods, AMQ Streams uses the address of the node on which the given pod is running. Nodes often have multiple addresses. The address type used is based on the first type found in the following order of priority:
- ExternalDNS
- ExternalIP
- Hostname
- InternalDNS
- InternalIP
You can use the preferredAddressType property in your listener configuration to specify the first address type checked as the node address. This property is useful, for example, if your deployment does not have DNS support, or you only want to expose a broker internally through an internal DNS or IP address. If an address of this type is found, it is used. If the preferred address type is not found, AMQ Streams proceeds through the types in the standard order of priority.
Example of an external listener configured with a preferred address type
By default, TLS encryption is enabled. To disable it, set the tls field to false.
TLS hostname verification is not currently supported when exposing Kafka clusters using node ports.
By default, the port numbers used for the bootstrap and broker services are automatically assigned by OpenShift. However, you can override the assigned node ports by specifying the requested port numbers in the overrides property. AMQ Streams does not perform any validation on the requested ports; you must ensure that they are free and available for use.
Example of an external listener configured with overrides for node ports
For more information on using node ports to access Kafka, see Section 3.1.6.4.4.3, “Accessing Kafka using node ports”.
3.1.6.4.4.2. Customizing the DNS names of external node port listeners Copy linkLink copied to clipboard!
On nodeport listeners, you can use the dnsAnnotations property to add additional annotations to the nodeport services. You can use these annotations to instrument DNS tooling such as External DNS, which automatically assigns DNS names to the cluster nodes.
Example of an external listener of type nodeport using dnsAnnotations
3.1.6.4.4.3. Accessing Kafka using node ports Copy linkLink copied to clipboard!
This procedure describes how to access a AMQ Streams Kafka cluster from an external client using node ports.
To connect to a broker, you need the hostname (advertised address) and port number for the Kafka bootstrap address, as well as the certificate used for authentication.
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Deploy the Kafka cluster with an external listener enabled and configured to the type
nodeport.For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Optional configuration for a Kafka listener certificate managed by an external Certificate Authority. The
brokerCertChainAndKeyproperty specifies aSecretthat holds a server certificate and a private key. Kafka listener certificates can also be configured for TLS listeners. - 2
- Optional configuration to specify a preference for the first address type used by AMQ Streams as the node address.
Create or update the resource.
oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow Find the port number of the bootstrap service.
oc get service cluster-name-kafka-external-bootstrap -o=jsonpath='{.spec.ports[0].nodePort}{"\n"}'oc get service cluster-name-kafka-external-bootstrap -o=jsonpath='{.spec.ports[0].nodePort}{"\n"}'Copy to Clipboard Copied! Toggle word wrap Toggle overflow The port is used in the Kafka bootstrap address.
Find the address of the OpenShift node.
oc get node node-name -o=jsonpath='{range .status.addresses[*]}{.type}{"\t"}{.address}{"\n"}'oc get node node-name -o=jsonpath='{range .status.addresses[*]}{.type}{"\t"}{.address}{"\n"}'Copy to Clipboard Copied! Toggle word wrap Toggle overflow If several different addresses are returned, select the address type you want based on the following order:
- ExternalDNS
- ExternalIP
- Hostname
- InternalDNS
- InternalIP
Use the address with the port found in the previous step in the Kafka bootstrap address.
Unless TLS encryption was disabled, extract the public certificate of the broker certification authority.
oc get secret cluster-name-cluster-ca-cert -o jsonpath='{.data.ca\.crt}' | base64 -d > ca.crtoc get secret cluster-name-cluster-ca-cert -o jsonpath='{.data.ca\.crt}' | base64 -d > ca.crtCopy to Clipboard Copied! Toggle word wrap Toggle overflow Use the extracted certificate in your Kafka client to configure TLS connection. If you enabled any authentication, you will also need to configure SASL or TLS authentication.
Additional resources
-
For more information about the schema, see
KafkaListenersschema reference.
3.1.6.4.5. OpenShift Ingress external listeners Copy linkLink copied to clipboard!
External listeners of type ingress exposes Kafka by using Kubernetes Ingress and the NGINX Ingress Controller for Kubernetes.
3.1.6.4.5.1. Exposing Kafka using Kubernetes Ingress Copy linkLink copied to clipboard!
When exposing Kafka using using Kubernetes Ingress and the NGINX Ingress Controller for Kubernetes, a dedicated Ingress resource is created for every Kafka broker pod. An additional Ingress resource is created to serve as a Kafka bootstrap address. Kafka clients can use these Ingress resources to connect to Kafka on port 443.
External listeners using Ingress have been currently tested only with the NGINX Ingress Controller for Kubernetes.
Kafka uses a binary protocol over TCP, but the NGINX Ingress Controller for Kubernetes is designed to work with the HTTP protocol. To be able to pass the Kafka connections through the Ingress, AMQ Streams uses the TLS passthrough feature of the NGINX Ingress Controller for Kubernetes. Make sure TLS passthrough is enabled in your NGINX Ingress Controller for Kubernetes deployment. For more information about enabling TLS passthrough see TLS passthrough documentation. Because it is using the TLS passthrough functionality, TLS encryption cannot be disabled when exposing Kafka using Ingress.
The Ingress controller does not assign any hostnames automatically. You have to specify the hostnames which should be used by the bootstrap and per-broker services in the spec.kafka.listeners.external.configuration section. You also have to make sure that the hostnames resolve to the Ingress endpoints. AMQ Streams will not perform any validation that the requested hosts are available and properly routed to the Ingress endpoints.
Example of an external listener of type ingress
For more information on using Ingress to access Kafka, see Section 3.1.6.4.5.4, “Accessing Kafka using ingress”.
3.1.6.4.5.2. Configuring the Ingress class Copy linkLink copied to clipboard!
By default, the Ingress class is set to nginx. You can change the Ingress class using the class property.
Example of an external listener of type ingress using Ingress class nginx-internal
3.1.6.4.5.3. Customizing the DNS names of external ingress listeners Copy linkLink copied to clipboard!
On ingress listeners, you can use the dnsAnnotations property to add additional annotations to the ingress resources. You can use these annotations to instrument DNS tooling such as External DNS, which automatically assigns DNS names to the ingress resources.
Example of an external listener of type ingress using dnsAnnotations
3.1.6.4.5.4. Accessing Kafka using ingress Copy linkLink copied to clipboard!
This procedure shows how to access AMQ Streams Kafka clusters from outside of OpenShift using Ingress.
Prerequisites
- An OpenShift cluster
- Deployed NGINX Ingress Controller for Kubernetes with TLS passthrough enabled
- A running Cluster Operator
Procedure
Deploy Kafka cluster with an external listener enabled and configured to the type
ingress.An example configuration with an external listener configured to use
Ingress:Copy to Clipboard Copied! Toggle word wrap Toggle overflow -
Make sure the hosts in the
configurationsection properly resolve to the Ingress endpoints. Create or update the resource.
oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow Extract the public certificate of the broker certificate authority
oc get secret cluster-name-cluster-ca-cert -o jsonpath='{.data.ca\.crt}' | base64 -d > ca.crtoc get secret cluster-name-cluster-ca-cert -o jsonpath='{.data.ca\.crt}' | base64 -d > ca.crtCopy to Clipboard Copied! Toggle word wrap Toggle overflow - Use the extracted certificate in your Kafka client to configure the TLS connection. If you enabled any authentication, you will also need to configure SASL or TLS authentication. Connect with your client to the host you specified in the configuration on port 443.
Additional resources
-
For more information about the schema, see
KafkaListenersschema reference.
3.1.6.5. Network policies Copy linkLink copied to clipboard!
AMQ Streams automatically creates a NetworkPolicy resource for every listener that is enabled on a Kafka broker. By default, a NetworkPolicy grants access to a listener to all applications and namespaces.
If you want to restrict access to a listener at the network level to only selected applications or namespaces, use the networkPolicyPeers field.
Use network policies in conjunction with authentication and authorization.
Each listener can have a different networkPolicyPeers configuration.
3.1.6.5.1. Network policy configuration for a listener Copy linkLink copied to clipboard!
The following example shows a networkPolicyPeers configuration for a plain and a tls listener:
In the example:
-
Only application pods matching the labels
app: kafka-sasl-consumerandapp: kafka-sasl-producercan connect to theplainlistener. The application pods must be running in the same namespace as the Kafka broker. -
Only application pods running in namespaces matching the labels
project: myprojectandproject: myproject2can connect to thetlslistener.
The syntax of the networkPolicyPeers field is the same as the from field in NetworkPolicy resources. For more information about the schema, see NetworkPolicyPeer API reference and the KafkaListeners schema reference.
Your configuration of OpenShift must support ingress NetworkPolicies in order to use network policies in AMQ Streams.
3.1.6.5.2. Restricting access to Kafka listeners using networkPolicyPeers Copy linkLink copied to clipboard!
You can restrict access to a listener to only selected applications by using the networkPolicyPeers field.
Prerequisites
- An OpenShift cluster with support for Ingress NetworkPolicies.
- The Cluster Operator is running.
Procedure
-
Open the
Kafkaresource. In the
networkPolicyPeersfield, define the application pods or namespaces that will be allowed to access the Kafka cluster.For example, to configure a
tlslistener to allow connections only from application pods with the labelappset tokafka-client:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
Use
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
-
For more information about the schema, see NetworkPolicyPeer API reference and the
KafkaListenersschema reference.
3.1.7. Authentication and Authorization Copy linkLink copied to clipboard!
AMQ Streams supports authentication and authorization. Authentication can be configured independently for each listener. Authorization is always configured for the whole Kafka cluster.
3.1.7.1. Authentication Copy linkLink copied to clipboard!
Authentication is configured as part of the listener configuration in the authentication property. The authentication mechanism is defined by the type field.
When the authentication property is missing, no authentication is enabled on a given listener. The listener will accept all connections without authentication.
Supported authentication mechanisms:
- TLS client authentication
- SASL SCRAM-SHA-512
- OAuth 2.0 token based authentication
3.1.7.1.1. TLS client authentication Copy linkLink copied to clipboard!
TLS Client authentication is enabled by specifying the type as tls. The TLS client authentication is supported only on the tls listener.
An example of authentication with type tls
# ... authentication: type: tls # ...
# ...
authentication:
type: tls
# ...
3.1.7.2. Configuring authentication in Kafka brokers Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster is available.
- The Cluster Operator is running.
Procedure
-
Open the YAML configuration file that contains the
Kafkaresource specifying the cluster deployment. In the
spec.kafka.listenersproperty in theKafkaresource, add theauthenticationfield to the listeners for which you want to enable authentication. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Apply the new configuration to create or update the resource.
Use
oc apply:oc apply -f kafka.yaml
oc apply -f kafka.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow where
kafka.yamlis the YAML configuration file for the resource that you want to configure; for example,kafka-persistent.yaml.
Additional resources
- For more information about the supported authentication mechanisms, see authentication reference.
-
For more information about the schema for
Kafka, seeKafkaschema reference.
3.1.7.3. Authorization Copy linkLink copied to clipboard!
You can configure authorization for Kafka brokers using the authorization property in the Kafka.spec.kafka resource. If the authorization property is missing, no authorization is enabled. When enabled, authorization is applied to all enabled listeners. The authorization method is defined in the type field.
You can configure:
- Simple authorization
- OAuth 2.0 authorization (if you are using OAuth 2.0 token based authentication)
- Open Policy Agent authorization
3.1.7.3.1. Simple authorization Copy linkLink copied to clipboard!
Simple authorization in AMQ Streams uses the SimpleAclAuthorizer plugin, the default Access Control Lists (ACLs) authorization plugin provided with Apache Kafka. ACLs allow you to define which users have access to which resources at a granular level. To enable simple authorization, set the type field to simple.
An example of Simple authorization
# ... authorization: type: simple # ...
# ...
authorization:
type: simple
# ...
Access rules for users are defined using Access Control Lists (ACLs). You can optionally designate a list of super users in the superUsers field.
3.1.7.3.2. Super users Copy linkLink copied to clipboard!
Super users can access all resources in your Kafka cluster regardless of any access restrictions defined in ACLs. To designate super users for a Kafka cluster, enter a list of user principals in the superUsers field. If a user uses TLS Client Authentication, the username will be the common name from their certificate subject prefixed with CN=.
An example of designating super users
The super.user configuration option in the config property in Kafka.spec.kafka is ignored. Designate super users in the authorization property instead. For more information, see Kafka broker configuration.
3.1.7.4. Configuring authorization in Kafka brokers Copy linkLink copied to clipboard!
Configure authorization and designate super users for a particular Kafka broker.
Prerequisites
- An OpenShift cluster
- The Cluster Operator is running
Procedure
Add or edit the
authorizationproperty in theKafka.spec.kafkaresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
- For more information about the supported authorization methods, see authorization reference.
-
For more information about the schema for
Kafka, seeKafkaschema reference. - For more information about configuring user authentication, see Kafka User resource.
3.1.8. ZooKeeper replicas Copy linkLink copied to clipboard!
ZooKeeper clusters or ensembles usually run with an odd number of nodes, typically three, five, or seven.
The majority of nodes must be available in order to maintain an effective quorum. If the ZooKeeper cluster loses its quorum, it will stop responding to clients and the Kafka brokers will stop working. Having a stable and highly available ZooKeeper cluster is crucial for AMQ Streams.
- Three-node cluster
- A three-node ZooKeeper cluster requires at least two nodes to be up and running in order to maintain the quorum. It can tolerate only one node being unavailable.
- Five-node cluster
- A five-node ZooKeeper cluster requires at least three nodes to be up and running in order to maintain the quorum. It can tolerate two nodes being unavailable.
- Seven-node cluster
- A seven-node ZooKeeper cluster requires at least four nodes to be up and running in order to maintain the quorum. It can tolerate three nodes being unavailable.
For development purposes, it is also possible to run ZooKeeper with a single node.
Having more nodes does not necessarily mean better performance, as the costs to maintain the quorum will rise with the number of nodes in the cluster. Depending on your availability requirements, you can decide for the number of nodes to use.
3.1.8.1. Number of ZooKeeper nodes Copy linkLink copied to clipboard!
The number of ZooKeeper nodes can be configured using the replicas property in Kafka.spec.zookeeper.
An example showing replicas configuration
3.1.8.2. Changing the number of ZooKeeper replicas Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster is available.
- The Cluster Operator is running.
Procedure
-
Open the YAML configuration file that contains the
Kafkaresource specifying the cluster deployment. In the
spec.zookeeper.replicasproperty in theKafkaresource, enter the number of replicated ZooKeeper servers. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Apply the new configuration to create or update the resource.
Use
oc apply:oc apply -f kafka.yaml
oc apply -f kafka.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow where
kafka.yamlis the YAML configuration file for the resource that you want to configure; for example,kafka-persistent.yaml.
3.1.9. ZooKeeper configuration Copy linkLink copied to clipboard!
AMQ Streams allows you to customize the configuration of Apache ZooKeeper nodes. You can specify and configure most of the options listed in the ZooKeeper documentation.
Options which cannot be configured are those related to the following areas:
- Security (Encryption, Authentication, and Authorization)
- Listener configuration
- Configuration of data directories
- ZooKeeper cluster composition
These options are automatically configured by AMQ Streams.
3.1.9.1. ZooKeeper configuration Copy linkLink copied to clipboard!
ZooKeeper nodes are configured using the config property in Kafka.spec.zookeeper. This property contains the ZooKeeper configuration options as keys. The values can be described using one of the following JSON types:
- String
- Number
- Boolean
Users can specify and configure the options listed in ZooKeeper documentation with the exception of those options which are managed directly by AMQ Streams. Specifically, all configuration options with keys equal to or starting with one of the following strings are forbidden:
-
server. -
dataDir -
dataLogDir -
clientPort -
authProvider -
quorum.auth -
requireClientAuthScheme
When one of the forbidden options is present in the config property, it is ignored and a warning message is printed to the Cluster Operator log file. All other options are passed to ZooKeeper.
The Cluster Operator does not validate keys or values in the provided config object. When invalid configuration is provided, the ZooKeeper cluster might not start or might become unstable. In such cases, the configuration in the Kafka.spec.zookeeper.config object should be fixed and the Cluster Operator will roll out the new configuration to all ZooKeeper nodes.
Selected options have default values:
-
timeTickwith default value2000 -
initLimitwith default value5 -
syncLimitwith default value2 -
autopurge.purgeIntervalwith default value1
These options will be automatically configured when they are not present in the Kafka.spec.zookeeper.config property.
Use the three allowed ssl configuration options to run external listeners with a specific cipher suite for a TLS version. A cipher suite combines algorithms for secure connection and data transfer.
Example ZooKeeper configuration
- 1
- The cipher suite for TLS using a combination of
ECDHEkey exchange mechanism,RSAauthentication algorithm,AESbulk encyption algorithm andSHA384MAC algorithm. - 2
- The SSl protocol
TLSv1.2is enabled. - 3
- Specifies the
TLSv1.2protocol to generate the SSL context. Allowed values areTLSv1.1andTLSv1.2.
3.1.9.2. Configuring ZooKeeper Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster is available.
- The Cluster Operator is running.
Procedure
-
Open the YAML configuration file that contains the
Kafkaresource specifying the cluster deployment. In the
spec.zookeeper.configproperty in theKafkaresource, enter one or more ZooKeeper configuration settings. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Apply the new configuration to create or update the resource.
Use
oc apply:oc apply -f kafka.yaml
oc apply -f kafka.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow where
kafka.yamlis the YAML configuration file for the resource that you want to configure; for example,kafka-persistent.yaml.
3.1.10. ZooKeeper connection Copy linkLink copied to clipboard!
ZooKeeper services are secured with encryption and authentication and are not intended to be used by external applications that are not part of AMQ Streams.
However, if you want to use Kafka CLI tools that require a connection to ZooKeeper, such as the kafka-topics tool, you can use a terminal inside a Kafka container and connect to the local end of the TLS tunnel to ZooKeeper by using localhost:2181 as the ZooKeeper address.
3.1.10.1. Connecting to ZooKeeper from a terminal Copy linkLink copied to clipboard!
Open a terminal inside a Kafka container to use Kafka CLI tools that require a ZooKeeper connection.
Prerequisites
- An OpenShift cluster is available.
- A kafka cluster is running.
- The Cluster Operator is running.
Procedure
Open the terminal using the OpenShift console or run the
execcommand from your CLI.For example:
oc exec -it my-cluster-kafka-0 -- bin/kafka-topics.sh --list --zookeeper localhost:2181
oc exec -it my-cluster-kafka-0 -- bin/kafka-topics.sh --list --zookeeper localhost:2181Copy to Clipboard Copied! Toggle word wrap Toggle overflow Be sure to use
localhost:2181.You can now run Kafka commands to ZooKeeper.
3.1.11. Entity Operator Copy linkLink copied to clipboard!
The Entity Operator is responsible for managing Kafka-related entities in a running Kafka cluster.
The Entity Operator comprises the:
- Topic Operator to manage Kafka topics
- User Operator to manage Kafka users
Through Kafka resource configuration, the Cluster Operator can deploy the Entity Operator, including one or both operators, when deploying a Kafka cluster.
When deployed, the Entity Operator contains the operators according to the deployment configuration.
The operators are automatically configured to manage the topics and users of the Kafka cluster.
3.1.11.1. Entity Operator configuration properties Copy linkLink copied to clipboard!
Use the entityOperator property in Kafka.spec to configure the Entity Operator.
The entityOperator property supports several sub-properties:
-
tlsSidecar -
topicOperator -
userOperator -
template
The tlsSidecar property contains the configuration of the TLS sidecar container, which is used to communicate with ZooKeeper. For more information on configuring the TLS sidecar, see Section 3.1.20, “TLS sidecar”.
The template property contains the configuration of the Entity Operator pod, such as labels, annotations, affinity, and tolerations. For more information on configuring templates, see Section 3.9.1, “Template properties”.
The topicOperator property contains the configuration of the Topic Operator. When this option is missing, the Entity Operator is deployed without the Topic Operator.
The userOperator property contains the configuration of the User Operator. When this option is missing, the Entity Operator is deployed without the User Operator.
For more information on the properties to configure the Entity Operator, see the EntityUserOperatorSpec schema reference.
Example of basic configuration enabling both operators
If an empty object ({}) is used for the topicOperator and userOperator, all properties use their default values.
When both topicOperator and userOperator properties are missing, the Entity Operator is not deployed.
3.1.11.2. Topic Operator configuration properties Copy linkLink copied to clipboard!
Topic Operator deployment can be configured using additional options inside the topicOperator object. The following properties are supported:
watchedNamespace-
The OpenShift namespace in which the topic operator watches for
KafkaTopics. Default is the namespace where the Kafka cluster is deployed. reconciliationIntervalSeconds-
The interval between periodic reconciliations in seconds. Default
90. zookeeperSessionTimeoutSeconds-
The ZooKeeper session timeout in seconds. Default
20. topicMetadataMaxAttempts-
The number of attempts at getting topic metadata from Kafka. The time between each attempt is defined as an exponential back-off. Consider increasing this value when topic creation could take more time due to the number of partitions or replicas. Default
6. image-
The
imageproperty can be used to configure the container image which will be used. For more details about configuring custom container images, see Section 3.1.19, “Container images”. resources-
The
resourcesproperty configures the amount of resources allocated to the Topic Operator. For more details about resource request and limit configuration, see Section 3.1.12, “CPU and memory resources”. logging-
The
loggingproperty configures the logging of the Topic Operator. For more details, see Section 3.1.11.4, “Operator loggers”.
Example of Topic Operator configuration
3.1.11.3. User Operator configuration properties Copy linkLink copied to clipboard!
User Operator deployment can be configured using additional options inside the userOperator object. The following properties are supported:
watchedNamespace-
The OpenShift namespace in which the user operator watches for
KafkaUsers. Default is the namespace where the Kafka cluster is deployed. reconciliationIntervalSeconds-
The interval between periodic reconciliations in seconds. Default
120. zookeeperSessionTimeoutSeconds-
The ZooKeeper session timeout in seconds. Default
6. image-
The
imageproperty can be used to configure the container image which will be used. For more details about configuring custom container images, see Section 3.1.19, “Container images”. resources-
The
resourcesproperty configures the amount of resources allocated to the User Operator. For more details about resource request and limit configuration, see Section 3.1.12, “CPU and memory resources”. logging-
The
loggingproperty configures the logging of the User Operator. For more details, see Section 3.1.11.4, “Operator loggers”.
Example of User Operator configuration
3.1.11.4. Operator loggers Copy linkLink copied to clipboard!
The Topic Operator and User Operator have a configurable logger:
-
rootLogger.level
The operators use the Apache log4j2 logger implementation.
Use the logging property in the Kafka resource to configure loggers and logger levels.
You can set the log levels by specifying the logger and level directly (inline) or use a custom (external) ConfigMap. If a ConfigMap is used, you set logging.name property to the name of the ConfigMap containing the external logging configuration. Inside the ConfigMap, the logging configuration is described using log4j2.properties.
Here we see examples of inline and external logging.
Inline logging
External logging
Additional resources
- Garbage collector (GC) logging can also be enabled (or disabled). For more information about GC logging, see Section 3.1.18.1, “JVM configuration”
- For more information about log levels, see Apache logging services.
3.1.11.5. Configuring the Entity Operator Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
entityOperatorproperty in theKafkaresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.1.12. CPU and memory resources Copy linkLink copied to clipboard!
For every deployed container, AMQ Streams allows you to request specific resources and define the maximum consumption of those resources.
AMQ Streams supports two types of resources:
- CPU
- Memory
AMQ Streams uses the OpenShift syntax for specifying CPU and memory resources.
3.1.12.1. Resource limits and requests Copy linkLink copied to clipboard!
Resource limits and requests are configured using the resources property in the following resources:
-
Kafka.spec.kafka -
Kafka.spec.kafka.tlsSidecar -
Kafka.spec.zookeeper -
Kafka.spec.entityOperator.topicOperator -
Kafka.spec.entityOperator.userOperator -
Kafka.spec.entityOperator.tlsSidecar -
Kafka.spec.KafkaExporter -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaBridge.spec
Additional resources
- For more information about managing computing resources on OpenShift, see Managing Compute Resources for Containers.
3.1.12.1.1. Resource requests Copy linkLink copied to clipboard!
Requests specify the resources to reserve for a given container. Reserving the resources ensures that they are always available.
If the resource request is for more than the available free resources in the OpenShift cluster, the pod is not scheduled.
Resources requests are specified in the requests property. Resources requests currently supported by AMQ Streams:
-
cpu -
memory
A request may be configured for one or more supported resources.
Example resource request configuration with all resources
3.1.12.1.2. Resource limits Copy linkLink copied to clipboard!
Limits specify the maximum resources that can be consumed by a given container. The limit is not reserved and might not always be available. A container can use the resources up to the limit only when they are available. Resource limits should be always higher than the resource requests.
Resource limits are specified in the limits property. Resource limits currently supported by AMQ Streams:
-
cpu -
memory
A resource may be configured for one or more supported limits.
Example resource limits configuration
3.1.12.1.3. Supported CPU formats Copy linkLink copied to clipboard!
CPU requests and limits are supported in the following formats:
-
Number of CPU cores as integer (
5CPU core) or decimal (2.5CPU core). -
Number or millicpus / millicores (
100m) where 1000 millicores is the same1CPU core.
Example CPU units
The computing power of 1 CPU core may differ depending on the platform where OpenShift is deployed.
Additional resources
- For more information on CPU specification, see the Meaning of CPU.
3.1.12.1.4. Supported memory formats Copy linkLink copied to clipboard!
Memory requests and limits are specified in megabytes, gigabytes, mebibytes, and gibibytes.
-
To specify memory in megabytes, use the
Msuffix. For example1000M. -
To specify memory in gigabytes, use the
Gsuffix. For example1G. -
To specify memory in mebibytes, use the
Misuffix. For example1000Mi. -
To specify memory in gibibytes, use the
Gisuffix. For example1Gi.
An example of using different memory units
Additional resources
- For more details about memory specification and additional supported units, see Meaning of memory.
3.1.12.2. Configuring resource requests and limits Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
resourcesproperty in the resource specifying the cluster deployment. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
- For more information about the schema, see {K8sResourceRequirementsAPI}.
3.1.13. Kafka loggers Copy linkLink copied to clipboard!
Kafka has its own configurable loggers:
-
kafka.root.logger.level -
log4j.logger.org.I0Itec.zkclient.ZkClient -
log4j.logger.org.apache.zookeeper -
log4j.logger.kafka -
log4j.logger.org.apache.kafka -
log4j.logger.kafka.request.logger -
log4j.logger.kafka.network.Processor -
log4j.logger.kafka.server.KafkaApis -
log4j.logger.kafka.network.RequestChannel$ -
log4j.logger.kafka.controller -
log4j.logger.kafka.log.LogCleaner -
log4j.logger.state.change.logger -
log4j.logger.kafka.authorizer.logger
ZooKeeper also has a configurable logger:
-
zookeeper.root.logger
Kafka and ZooKeeper use the Apache log4j logger implementation.
Use the logging property to configure loggers and logger levels.
You can set the log levels by specifying the logger and level directly (inline) or use a custom (external) ConfigMap. If a ConfigMap is used, you set logging.name property to the name of the ConfigMap containing the external logging configuration. Inside the ConfigMap, the logging configuration is described using log4j.properties.
Here we see examples of inline and external logging.
Inline logging
External logging
Operators use the Apache log4j2 logger implementation, so the logging configuration is described inside the ConfigMap using log4j2.properties. For more information, see Section 3.1.11.4, “Operator loggers”.
Additional resources
- Garbage collector (GC) logging can also be enabled (or disabled). For more information on garbage collection, see Section 3.1.18.1, “JVM configuration”
- For more information about log levels, see Apache logging services.
3.1.14. Kafka rack awareness Copy linkLink copied to clipboard!
The rack awareness feature in AMQ Streams helps to spread the Kafka broker pods and Kafka topic replicas across different racks. Enabling rack awareness helps to improve availability of Kafka brokers and the topics they are hosting.
"Rack" might represent an availability zone, data center, or an actual rack in your data center.
3.1.14.1. Configuring rack awareness in Kafka brokers Copy linkLink copied to clipboard!
Kafka rack awareness can be configured in the rack property of Kafka.spec.kafka. The rack object has one mandatory field named topologyKey. This key needs to match one of the labels assigned to the OpenShift cluster nodes. The label is used by OpenShift when scheduling the Kafka broker pods to nodes. If the OpenShift cluster is running on a cloud provider platform, that label should represent the availability zone where the node is running. Usually, the nodes are labeled with failure-domain.beta.kubernetes.io/zone that can be easily used as the topologyKey value. This has the effect of spreading the broker pods across zones, and also setting the brokers' broker.rack configuration parameter inside Kafka broker.
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
- Consult your OpenShift administrator regarding the node label that represents the zone / rack into which the node is deployed.
Edit the
rackproperty in theKafkaresource using the label as the topology key.Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
- For information about Configuring init container image for Kafka rack awareness, see Section 3.1.19, “Container images”.
3.1.15. Healthchecks Copy linkLink copied to clipboard!
Healthchecks are periodical tests which verify the health of an application. When a Healthcheck probe fails, OpenShift assumes that the application is not healthy and attempts to fix it.
OpenShift supports two types of Healthcheck probes:
- Liveness probes
- Readiness probes
For more details about the probes, see Configure Liveness and Readiness Probes. Both types of probes are used in AMQ Streams components.
Users can configure selected options for liveness and readiness probes.
3.1.15.1. Healthcheck configurations Copy linkLink copied to clipboard!
Liveness and readiness probes can be configured using the livenessProbe and readinessProbe properties in following resources:
-
Kafka.spec.kafka -
Kafka.spec.kafka.tlsSidecar -
Kafka.spec.zookeeper -
Kafka.spec.entityOperator.tlsSidecar -
Kafka.spec.entityOperator.topicOperator -
Kafka.spec.entityOperator.userOperator -
Kafka.spec.KafkaExporter -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaMirrorMaker.spec -
KafkaBridge.spec
Both livenessProbe and readinessProbe support the following options:
-
initialDelaySeconds -
timeoutSeconds -
periodSeconds -
successThreshold -
failureThreshold
For more information about the livenessProbe and readinessProbe options, see Section B.40, “Probe schema reference”.
An example of liveness and readiness probe configuration
3.1.15.2. Configuring healthchecks Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
livenessProbeorreadinessProbeproperty in theKafka,KafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.1.16. Prometheus metrics Copy linkLink copied to clipboard!
AMQ Streams supports Prometheus metrics using Prometheus JMX exporter to convert the JMX metrics supported by Apache Kafka and ZooKeeper to Prometheus metrics. When metrics are enabled, they are exposed on port 9404.
For more information about setting up and deploying Prometheus and Grafana, see Introducing Metrics to Kafka.
3.1.16.1. Metrics configuration Copy linkLink copied to clipboard!
Prometheus metrics are enabled by configuring the metrics property in following resources:
-
Kafka.spec.kafka -
Kafka.spec.zookeeper -
KafkaConnect.spec -
KafkaConnectS2I.spec
When the metrics property is not defined in the resource, the Prometheus metrics will be disabled. To enable Prometheus metrics export without any further configuration, you can set it to an empty object ({}).
Example of enabling metrics without any further configuration
The metrics property might contain additional configuration for the Prometheus JMX exporter.
Example of enabling metrics with additional Prometheus JMX Exporter configuration
3.1.16.2. Configuring Prometheus metrics Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
metricsproperty in theKafka,KafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.1.17. JMX Options Copy linkLink copied to clipboard!
AMQ Streams supports obtaining JMX metrics from the Kafka brokers by opening a JMX port on 9999. You can obtain various metrics about each Kafka broker, for example, usage data such as the BytesPerSecond value or the request rate of the network of the broker. AMQ Streams supports opening a password and username protected JMX port or a non-protected JMX port.
3.1.17.1. Configuring JMX options Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
You can configure JMX options by using the jmxOptions property in the following resources:
-
Kafka.spec.kafka
You can configure username and password protection for the JMX port that is opened on the Kafka brokers.
Securing the JMX Port
You can secure the JMX port to prevent unauthorized pods from accessing the port. Currently the JMX port can only be secured using a username and password. To enable security for the JMX port, set the type parameter in the authentication field to password.:
This allows you to deploy a pod internally into a cluster and obtain JMX metrics by using the headless service and specifying which broker you want to address. To get JMX metrics from broker 0 we address the headless service appending broker 0 in front of the headless service:
"<cluster-name>-kafka-0-<cluster-name>-<headless-service-name>"
"<cluster-name>-kafka-0-<cluster-name>-<headless-service-name>"
If the JMX port is secured, you can get the username and password by referencing them from the JMX secret in the deployment of your pod.
Using an open JMX port
To disable security for the JMX port, do not fill in the authentication field
This will just open the JMX Port on the headless service and you can follow a similar approach as described above to deploy a pod into the cluster. The only difference is that any pod will be able to read from the JMX port.
3.1.18. JVM Options Copy linkLink copied to clipboard!
The following components of AMQ Streams run inside a Virtual Machine (VM):
- Apache Kafka
- Apache ZooKeeper
- Apache Kafka Connect
- Apache Kafka MirrorMaker
- AMQ Streams Kafka Bridge
JVM configuration options optimize the performance for different platforms and architectures. AMQ Streams allows you to configure some of these options.
3.1.18.1. JVM configuration Copy linkLink copied to clipboard!
JVM options can be configured using the jvmOptions property in following resources:
-
Kafka.spec.kafka -
Kafka.spec.zookeeper -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaMirrorMaker.spec -
KafkaBridge.spec
Only a selected subset of available JVM options can be configured. The following options are supported:
-Xms and -Xmx
-Xms configures the minimum initial allocation heap size when the JVM starts. -Xmx configures the maximum heap size.
The units accepted by JVM settings such as -Xmx and -Xms are those accepted by the JDK java binary in the corresponding image. Accordingly, 1g or 1G means 1,073,741,824 bytes, and Gi is not a valid unit suffix. This is in contrast to the units used for memory requests and limits, which follow the OpenShift convention where 1G means 1,000,000,000 bytes, and 1Gi means 1,073,741,824 bytes
The default values used for -Xms and -Xmx depends on whether there is a memory request limit configured for the container:
- If there is a memory limit then the JVM’s minimum and maximum memory will be set to a value corresponding to the limit.
-
If there is no memory limit then the JVM’s minimum memory will be set to
128Mand the JVM’s maximum memory will not be defined. This allows for the JVM’s memory to grow as-needed, which is ideal for single node environments in test and development.
Setting -Xmx explicitly requires some care:
-
The JVM’s overall memory usage will be approximately 4 × the maximum heap, as configured by
-Xmx. -
If
-Xmxis set without also setting an appropriate OpenShift memory limit, it is possible that the container will be killed should the OpenShift node experience memory pressure (from other Pods running on it). -
If
-Xmxis set without also setting an appropriate OpenShift memory request, it is possible that the container will be scheduled to a node with insufficient memory. In this case, the container will not start but crash (immediately if-Xmsis set to-Xmx, or some later time if not).
When setting -Xmx explicitly, it is recommended to:
- set the memory request and the memory limit to the same value,
-
use a memory request that is at least 4.5 × the
-Xmx, -
consider setting
-Xmsto the same value as-Xmx.
Containers doing lots of disk I/O (such as Kafka broker containers) will need to leave some memory available for use as operating system page cache. On such containers, the requested memory should be significantly higher than the memory used by the JVM.
Example fragment configuring -Xmx and -Xms
# ... jvmOptions: "-Xmx": "2g" "-Xms": "2g" # ...
# ...
jvmOptions:
"-Xmx": "2g"
"-Xms": "2g"
# ...
In the above example, the JVM will use 2 GiB (=2,147,483,648 bytes) for its heap. Its total memory usage will be approximately 8GiB.
Setting the same value for initial (-Xms) and maximum (-Xmx) heap sizes avoids the JVM having to allocate memory after startup, at the cost of possibly allocating more heap than is really needed. For Kafka and ZooKeeper pods such allocation could cause unwanted latency. For Kafka Connect avoiding over allocation may be the most important concern, especially in distributed mode where the effects of over-allocation will be multiplied by the number of consumers.
-server
-server enables the server JVM. This option can be set to true or false.
Example fragment configuring -server
# ... jvmOptions: "-server": true # ...
# ...
jvmOptions:
"-server": true
# ...
When neither of the two options (-server and -XX) is specified, the default Apache Kafka configuration of KAFKA_JVM_PERFORMANCE_OPTS will be used.
-XX
-XX object can be used for configuring advanced runtime options of a JVM. The -server and -XX options are used to configure the KAFKA_JVM_PERFORMANCE_OPTS option of Apache Kafka.
Example showing the use of the -XX object
The example configuration above will result in the following JVM options:
-XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:-UseParNewGC
-XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:-UseParNewGC
When neither of the two options (-server and -XX) is specified, the default Apache Kafka configuration of KAFKA_JVM_PERFORMANCE_OPTS will be used.
3.1.18.1.1. Garbage collector logging Copy linkLink copied to clipboard!
The jvmOptions section also allows you to enable and disable garbage collector (GC) logging. GC logging is disabled by default. To enable it, set the gcLoggingEnabled property as follows:
Example of enabling GC logging
# ... jvmOptions: gcLoggingEnabled: true # ...
# ...
jvmOptions:
gcLoggingEnabled: true
# ...
3.1.18.2. Configuring JVM options Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
jvmOptionsproperty in theKafka,KafkaConnect,KafkaConnectS2I,KafkaMirrorMaker, orKafkaBridgeresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.1.19. Container images Copy linkLink copied to clipboard!
AMQ Streams allows you to configure container images which will be used for its components. Overriding container images is recommended only in special situations, where you need to use a different container registry. For example, because your network does not allow access to the container repository used by AMQ Streams. In such a case, you should either copy the AMQ Streams images or build them from the source. If the configured image is not compatible with AMQ Streams images, it might not work properly.
3.1.19.1. Container image configurations Copy linkLink copied to clipboard!
You can specify which container image to use for each component using the image property in the following resources:
-
Kafka.spec.kafka -
Kafka.spec.kafka.tlsSidecar -
Kafka.spec.zookeeper -
Kafka.spec.entityOperator.topicOperator -
Kafka.spec.entityOperator.userOperator -
Kafka.spec.entityOperator.tlsSidecar -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaBridge.spec
3.1.19.1.1. Configuring the image property for Kafka, Kafka Connect, and Kafka MirrorMaker Copy linkLink copied to clipboard!
Kafka, Kafka Connect (including Kafka Connect with S2I support), and Kafka MirrorMaker support multiple versions of Kafka. Each component requires its own image. The default images for the different Kafka versions are configured in the following environment variables:
-
STRIMZI_KAFKA_IMAGES -
STRIMZI_KAFKA_CONNECT_IMAGES -
STRIMZI_KAFKA_CONNECT_S2I_IMAGES -
STRIMZI_KAFKA_MIRROR_MAKER_IMAGES
These environment variables contain mappings between the Kafka versions and their corresponding images. The mappings are used together with the image and version properties:
-
If neither
imagenorversionare given in the custom resource then theversionwill default to the Cluster Operator’s default Kafka version, and the image will be the one corresponding to this version in the environment variable. -
If
imageis given butversionis not, then the given image is used and theversionis assumed to be the Cluster Operator’s default Kafka version. -
If
versionis given butimageis not, then the image that corresponds to the given version in the environment variable is used. -
If both
versionandimageare given, then the given image is used. The image is assumed to contain a Kafka image with the given version.
The image and version for the different components can be configured in the following properties:
-
For Kafka in
spec.kafka.imageandspec.kafka.version. -
For Kafka Connect, Kafka Connect S2I, and Kafka MirrorMaker in
spec.imageandspec.version.
It is recommended to provide only the version and leave the image property unspecified. This reduces the chance of making a mistake when configuring the custom resource. If you need to change the images used for different versions of Kafka, it is preferable to configure the Cluster Operator’s environment variables.
3.1.19.1.2. Configuring the image property in other resources Copy linkLink copied to clipboard!
For the image property in the other custom resources, the given value will be used during deployment. If the image property is missing, the image specified in the Cluster Operator configuration will be used. If the image name is not defined in the Cluster Operator configuration, then the default value will be used.
For Kafka broker TLS sidecar:
-
Container image specified in the
STRIMZI_DEFAULT_TLS_SIDECAR_KAFKA_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0container image.
-
Container image specified in the
For Topic Operator:
-
Container image specified in the
STRIMZI_DEFAULT_TOPIC_OPERATOR_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0container image.
-
Container image specified in the
For User Operator:
-
Container image specified in the
STRIMZI_DEFAULT_USER_OPERATOR_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0container image.
-
Container image specified in the
For Entity Operator TLS sidecar:
-
Container image specified in the
STRIMZI_DEFAULT_TLS_SIDECAR_ENTITY_OPERATOR_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0container image.
-
Container image specified in the
For Kafka Exporter:
-
Container image specified in the
STRIMZI_DEFAULT_KAFKA_EXPORTER_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0container image.
-
Container image specified in the
For Kafka Bridge:
-
Container image specified in the
STRIMZI_DEFAULT_KAFKA_BRIDGE_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-bridge-rhel7:1.5.0container image.
-
Container image specified in the
For Kafka broker initializer:
-
Container image specified in the
STRIMZI_DEFAULT_KAFKA_INIT_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0container image.
-
Container image specified in the
Overriding container images is recommended only in special situations, where you need to use a different container registry. For example, because your network does not allow access to the container repository used by AMQ Streams. In such case, you should either copy the AMQ Streams images or build them from source. In case the configured image is not compatible with AMQ Streams images, it might not work properly.
Example of container image configuration
3.1.19.2. Configuring container images Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
imageproperty in theKafka,KafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.1.20. TLS sidecar Copy linkLink copied to clipboard!
A sidecar is a container that runs in a pod but serves a supporting purpose. In AMQ Streams, the TLS sidecar uses TLS to encrypt and decrypt all communication between the various components and ZooKeeper. ZooKeeper does not have native TLS support.
The TLS sidecar is used in:
- Kafka brokers
- ZooKeeper nodes
- Entity Operator
3.1.20.1. TLS sidecar configuration Copy linkLink copied to clipboard!
The TLS sidecar can be configured using the tlsSidecar property in:
-
Kafka.spec.kafka -
Kafka.spec.zookeeper -
Kafka.spec.entityOperator
The TLS sidecar supports the following additional options:
-
image -
resources -
logLevel -
readinessProbe -
livenessProbe
The resources property can be used to specify the memory and CPU resources allocated for the TLS sidecar.
The image property can be used to configure the container image which will be used. For more details about configuring custom container images, see Section 3.1.19, “Container images”.
The logLevel property is used to specify the logging level. Following logging levels are supported:
- emerg
- alert
- crit
- err
- warning
- notice
- info
- debug
The default value is notice.
For more information about configuring the readinessProbe and livenessProbe properties for the healthchecks, see Section 3.1.15.1, “Healthcheck configurations”.
Example of TLS sidecar configuration
3.1.20.2. Configuring TLS sidecar Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
tlsSidecarproperty in theKafkaresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.1.21. Configuring pod scheduling Copy linkLink copied to clipboard!
When two applications are scheduled to the same OpenShift node, both applications might use the same resources like disk I/O and impact performance. That can lead to performance degradation. Scheduling Kafka pods in a way that avoids sharing nodes with other critical workloads, using the right nodes or dedicated a set of nodes only for Kafka are the best ways how to avoid such problems.
3.1.21.1. Scheduling pods based on other applications Copy linkLink copied to clipboard!
3.1.21.1.1. Avoid critical applications to share the node Copy linkLink copied to clipboard!
Pod anti-affinity can be used to ensure that critical applications are never scheduled on the same disk. When running Kafka cluster, it is recommended to use pod anti-affinity to ensure that the Kafka brokers do not share the nodes with other workloads like databases.
3.1.21.1.2. Affinity Copy linkLink copied to clipboard!
Affinity can be configured using the affinity property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The affinity configuration can include different types of affinity:
- Pod affinity and anti-affinity
- Node affinity
The format of the affinity property follows the OpenShift specification. For more details, see the Kubernetes node and pod affinity documentation.
3.1.21.1.3. Configuring pod anti-affinity in Kafka components Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
affinityproperty in the resource specifying the cluster deployment. Use labels to specify the pods which should not be scheduled on the same nodes. ThetopologyKeyshould be set tokubernetes.io/hostnameto specify that the selected pods should not be scheduled on nodes with the same hostname. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.1.21.2. Scheduling pods to specific nodes Copy linkLink copied to clipboard!
3.1.21.2.1. Node scheduling Copy linkLink copied to clipboard!
The OpenShift cluster usually consists of many different types of worker nodes. Some are optimized for CPU heavy workloads, some for memory, while other might be optimized for storage (fast local SSDs) or network. Using different nodes helps to optimize both costs and performance. To achieve the best possible performance, it is important to allow scheduling of AMQ Streams components to use the right nodes.
OpenShift uses node affinity to schedule workloads onto specific nodes. Node affinity allows you to create a scheduling constraint for the node on which the pod will be scheduled. The constraint is specified as a label selector. You can specify the label using either the built-in node label like beta.kubernetes.io/instance-type or custom labels to select the right node.
3.1.21.2.2. Affinity Copy linkLink copied to clipboard!
Affinity can be configured using the affinity property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The affinity configuration can include different types of affinity:
- Pod affinity and anti-affinity
- Node affinity
The format of the affinity property follows the OpenShift specification. For more details, see the Kubernetes node and pod affinity documentation.
3.1.21.2.3. Configuring node affinity in Kafka components Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Label the nodes where AMQ Streams components should be scheduled.
This can be done using
oc label:oc label node your-node node-type=fast-network
oc label node your-node node-type=fast-networkCopy to Clipboard Copied! Toggle word wrap Toggle overflow Alternatively, some of the existing labels might be reused.
Edit the
affinityproperty in the resource specifying the cluster deployment. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.1.21.3. Using dedicated nodes Copy linkLink copied to clipboard!
3.1.21.3.1. Dedicated nodes Copy linkLink copied to clipboard!
Cluster administrators can mark selected OpenShift nodes as tainted. Nodes with taints are excluded from regular scheduling and normal pods will not be scheduled to run on them. Only services which can tolerate the taint set on the node can be scheduled on it. The only other services running on such nodes will be system services such as log collectors or software defined networks.
Taints can be used to create dedicated nodes. Running Kafka and its components on dedicated nodes can have many advantages. There will be no other applications running on the same nodes which could cause disturbance or consume the resources needed for Kafka. That can lead to improved performance and stability.
To schedule Kafka pods on the dedicated nodes, configure node affinity and tolerations.
3.1.21.3.2. Affinity Copy linkLink copied to clipboard!
Affinity can be configured using the affinity property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The affinity configuration can include different types of affinity:
- Pod affinity and anti-affinity
- Node affinity
The format of the affinity property follows the OpenShift specification. For more details, see the Kubernetes node and pod affinity documentation.
3.1.21.3.3. Tolerations Copy linkLink copied to clipboard!
Tolerations can be configured using the tolerations property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The format of the tolerations property follows the OpenShift specification. For more details, see the Kubernetes taints and tolerations.
3.1.21.3.4. Setting up dedicated nodes and scheduling pods on them Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
- Select the nodes which should be used as dedicated.
- Make sure there are no workloads scheduled on these nodes.
Set the taints on the selected nodes:
This can be done using
oc adm taint:oc adm taint node your-node dedicated=Kafka:NoSchedule
oc adm taint node your-node dedicated=Kafka:NoScheduleCopy to Clipboard Copied! Toggle word wrap Toggle overflow Additionally, add a label to the selected nodes as well.
This can be done using
oc label:oc label node your-node dedicated=Kafka
oc label node your-node dedicated=KafkaCopy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
affinityandtolerationsproperties in the resource specifying the cluster deployment. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.1.22. Kafka Exporter Copy linkLink copied to clipboard!
You can configure the Kafka resource to automatically deploy Kafka Exporter in your cluster.
Kafka Exporter extracts data for analysis as Prometheus metrics, primarily data relating to offsets, consumer groups, consumer lag and topics.
For information on Kafka Exporter and why it is important to monitor consumer lag for performance, see Kafka Exporter.
3.1.22.1. Configuring Kafka Exporter Copy linkLink copied to clipboard!
This procedure shows how to configure Kafka Exporter in the Kafka resource through KafkaExporter properties.
For more information about configuring the Kafka resource, see the sample Kafka YAML configuration.
The properties relevant to the Kafka Exporter configuration are shown in this procedure.
You can configure these properties as part of a deployment or redeployment of the Kafka cluster.
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
KafkaExporterproperties for theKafkaresource.The properties you can configure are shown in this example configuration:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- ADVANCED OPTION: Container image configuration, which is recommended only in special situations.
- 2
- A regular expression to specify the consumer groups to include in the metrics.
- 3
- A regular expression to specify the topics to include in the metrics.
- 4
- 5
- Logging configuration, to log messages with a given severity (debug, info, warn, error, fatal) or above.
- 6
- Boolean to enable Sarama logging, a Go client library used by Kafka Exporter.
- 7
- 8
- 9
Create or update the resource:
oc apply -f kafka.yaml
oc apply -f kafka.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow
What to do next
After configuring and deploying Kafka Exporter, you can enable Grafana to present the Kafka Exporter dashboards.
Additional resources
3.1.23. Performing a rolling update of a Kafka cluster Copy linkLink copied to clipboard!
This procedure describes how to manually trigger a rolling update of an existing Kafka cluster by using an OpenShift annotation.
Prerequisites
- A running Kafka cluster.
- A running Cluster Operator.
Procedure
Find the name of the
StatefulSetthat controls the Kafka pods you want to manually update.For example, if your Kafka cluster is named my-cluster, the corresponding
StatefulSetis named my-cluster-kafka.Annotate the
StatefulSetresource in OpenShift. For example, usingoc annotate:oc annotate statefulset cluster-name-kafka strimzi.io/manual-rolling-update=true
oc annotate statefulset cluster-name-kafka strimzi.io/manual-rolling-update=trueCopy to Clipboard Copied! Toggle word wrap Toggle overflow -
Wait for the next reconciliation to occur (every two minutes by default). A rolling update of all pods within the annotated
StatefulSetis triggered, as long as the annotation was detected by the reconciliation process. When the rolling update of all the pods is complete, the annotation is removed from theStatefulSet.
Additional resources
- For more information about deploying the Cluster Operator, see Section 2.2.1, “Deploying the Cluster Operator”.
- For more information about deploying the Kafka cluster, see Section 2.2.2.1, “Deploying the Kafka cluster”.
3.1.24. Performing a rolling update of a ZooKeeper cluster Copy linkLink copied to clipboard!
This procedure describes how to manually trigger a rolling update of an existing ZooKeeper cluster by using an OpenShift annotation.
Prerequisites
- A running ZooKeeper cluster.
- A running Cluster Operator.
Procedure
Find the name of the
StatefulSetthat controls the ZooKeeper pods you want to manually update.For example, if your Kafka cluster is named my-cluster, the corresponding
StatefulSetis named my-cluster-zookeeper.Annotate the
StatefulSetresource in OpenShift. For example, usingoc annotate:oc annotate statefulset cluster-name-zookeeper strimzi.io/manual-rolling-update=true
oc annotate statefulset cluster-name-zookeeper strimzi.io/manual-rolling-update=trueCopy to Clipboard Copied! Toggle word wrap Toggle overflow -
Wait for the next reconciliation to occur (every two minutes by default). A rolling update of all pods within the annotated
StatefulSetis triggered, as long as the annotation was detected by the reconciliation process. When the rolling update of all the pods is complete, the annotation is removed from theStatefulSet.
Additional resources
- For more information about deploying the Cluster Operator, see Section 2.2.1, “Deploying the Cluster Operator”.
- For more information about deploying the ZooKeeper cluster, see Section 2.2.2.1, “Deploying the Kafka cluster”.
3.1.25. Scaling clusters Copy linkLink copied to clipboard!
3.1.25.1. Scaling Kafka clusters Copy linkLink copied to clipboard!
3.1.25.1.1. Adding brokers to a cluster Copy linkLink copied to clipboard!
The primary way of increasing throughput for a topic is to increase the number of partitions for that topic. That works because the extra partitions allow the load of the topic to be shared between the different brokers in the cluster. However, in situations where every broker is constrained by a particular resource (typically I/O) using more partitions will not result in increased throughput. Instead, you need to add brokers to the cluster.
When you add an extra broker to the cluster, Kafka does not assign any partitions to it automatically. You must decide which partitions to move from the existing brokers to the new broker.
Once the partitions have been redistributed between all the brokers, the resource utilization of each broker should be reduced.
3.1.25.1.2. Removing brokers from a cluster Copy linkLink copied to clipboard!
Because AMQ Streams uses StatefulSets to manage broker pods, you cannot remove any pod from the cluster. You can only remove one or more of the highest numbered pods from the cluster. For example, in a cluster of 12 brokers the pods are named cluster-name-kafka-0 up to cluster-name-kafka-11. If you decide to scale down by one broker, the cluster-name-kafka-11 will be removed.
Before you remove a broker from a cluster, ensure that it is not assigned to any partitions. You should also decide which of the remaining brokers will be responsible for each of the partitions on the broker being decommissioned. Once the broker has no assigned partitions, you can scale the cluster down safely.
3.1.25.2. Partition reassignment Copy linkLink copied to clipboard!
The Topic Operator does not currently support reassigning replicas to different brokers, so it is necessary to connect directly to broker pods to reassign replicas to brokers.
Within a broker pod, the kafka-reassign-partitions.sh utility allows you to reassign partitions to different brokers.
It has three different modes:
--generate- Takes a set of topics and brokers and generates a reassignment JSON file which will result in the partitions of those topics being assigned to those brokers. Because this operates on whole topics, it cannot be used when you just need to reassign some of the partitions of some topics.
--execute- Takes a reassignment JSON file and applies it to the partitions and brokers in the cluster. Brokers that gain partitions as a result become followers of the partition leader. For a given partition, once the new broker has caught up and joined the ISR (in-sync replicas) the old broker will stop being a follower and will delete its replica.
--verify-
Using the same reassignment JSON file as the
--executestep,--verifychecks whether all of the partitions in the file have been moved to their intended brokers. If the reassignment is complete, --verify also removes any throttles that are in effect. Unless removed, throttles will continue to affect the cluster even after the reassignment has finished.
It is only possible to have one reassignment running in a cluster at any given time, and it is not possible to cancel a running reassignment. If you need to cancel a reassignment, wait for it to complete and then perform another reassignment to revert the effects of the first reassignment. The kafka-reassign-partitions.sh will print the reassignment JSON for this reversion as part of its output. Very large reassignments should be broken down into a number of smaller reassignments in case there is a need to stop in-progress reassignment.
3.1.25.2.1. Reassignment JSON file Copy linkLink copied to clipboard!
The reassignment JSON file has a specific structure:
Where <PartitionObjects> is a comma-separated list of objects like:
{
"topic": <TopicName>,
"partition": <Partition>,
"replicas": [ <AssignedBrokerIds> ]
}
{
"topic": <TopicName>,
"partition": <Partition>,
"replicas": [ <AssignedBrokerIds> ]
}
Although Kafka also supports a "log_dirs" property this should not be used in AMQ Streams.
The following is an example reassignment JSON file that assigns topic topic-a, partition 4 to brokers 2, 4 and 7, and topic topic-b partition 2 to brokers 1, 5 and 7:
Partitions not included in the JSON are not changed.
3.1.25.2.2. Reassigning partitions between JBOD volumes Copy linkLink copied to clipboard!
When using JBOD storage in your Kafka cluster, you can choose to reassign the partitions between specific volumes and their log directories (each volume has a single log directory). To reassign a partition to a specific volume, add the log_dirs option to <PartitionObjects> in the reassignment JSON file.
The log_dirs object should contain the same number of log directories as the number of replicas specified in the replicas object. The value should be either an absolute path to the log directory, or the any keyword.
For example:
3.1.25.3. Generating reassignment JSON files Copy linkLink copied to clipboard!
This procedure describes how to generate a reassignment JSON file that reassigns all the partitions for a given set of topics using the kafka-reassign-partitions.sh tool.
Prerequisites
- A running Cluster Operator
-
A
Kafkaresource - A set of topics to reassign the partitions of
Procedure
Prepare a JSON file named
topics.jsonthat lists the topics to move. It must have the following structure:Copy to Clipboard Copied! Toggle word wrap Toggle overflow where <TopicObjects> is a comma-separated list of objects like:
{ "topic": <TopicName> }{ "topic": <TopicName> }Copy to Clipboard Copied! Toggle word wrap Toggle overflow For example if you want to reassign all the partitions of
topic-aandtopic-b, you would need to prepare atopics.jsonfile like this:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Copy the
topics.jsonfile to one of the broker pods:cat topics.json | oc exec -c kafka <BrokerPod> -i -- \ /bin/bash -c \ 'cat > /tmp/topics.json'
cat topics.json | oc exec -c kafka <BrokerPod> -i -- \ /bin/bash -c \ 'cat > /tmp/topics.json'Copy to Clipboard Copied! Toggle word wrap Toggle overflow Use the
kafka-reassign-partitions.shcommand to generate the reassignment JSON.oc exec <BrokerPod> -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --topics-to-move-json-file /tmp/topics.json \ --broker-list <BrokerList> \ --generate
oc exec <BrokerPod> -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --topics-to-move-json-file /tmp/topics.json \ --broker-list <BrokerList> \ --generateCopy to Clipboard Copied! Toggle word wrap Toggle overflow For example, to move all the partitions of
topic-aandtopic-bto brokers4and7oc exec <BrokerPod> -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --topics-to-move-json-file /tmp/topics.json \ --broker-list 4,7 \ --generate
oc exec <BrokerPod> -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --topics-to-move-json-file /tmp/topics.json \ --broker-list 4,7 \ --generateCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.1.25.4. Creating reassignment JSON files manually Copy linkLink copied to clipboard!
You can manually create the reassignment JSON file if you want to move specific partitions.
3.1.25.5. Reassignment throttles Copy linkLink copied to clipboard!
Partition reassignment can be a slow process because it involves transferring large amounts of data between brokers. To avoid a detrimental impact on clients, you can throttle the reassignment process. This might cause the reassignment to take longer to complete.
- If the throttle is too low then the newly assigned brokers will not be able to keep up with records being published and the reassignment will never complete.
- If the throttle is too high then clients will be impacted.
For example, for producers, this could manifest as higher than normal latency waiting for acknowledgement. For consumers, this could manifest as a drop in throughput caused by higher latency between polls.
3.1.25.6. Scaling up a Kafka cluster Copy linkLink copied to clipboard!
This procedure describes how to increase the number of brokers in a Kafka cluster.
Prerequisites
- An existing Kafka cluster.
-
A reassignment JSON file named
reassignment.jsonthat describes how partitions should be reassigned to brokers in the enlarged cluster.
Procedure
-
Add as many new brokers as you need by increasing the
Kafka.spec.kafka.replicasconfiguration option. - Verify that the new broker pods have started.
Copy the
reassignment.jsonfile to the broker pod on which you will later execute the commands:cat reassignment.json | \ oc exec broker-pod -c kafka -i -- /bin/bash -c \ 'cat > /tmp/reassignment.json'
cat reassignment.json | \ oc exec broker-pod -c kafka -i -- /bin/bash -c \ 'cat > /tmp/reassignment.json'Copy to Clipboard Copied! Toggle word wrap Toggle overflow For example:
cat reassignment.json | \ oc exec my-cluster-kafka-0 -c kafka -i -- /bin/bash -c \ 'cat > /tmp/reassignment.json'
cat reassignment.json | \ oc exec my-cluster-kafka-0 -c kafka -i -- /bin/bash -c \ 'cat > /tmp/reassignment.json'Copy to Clipboard Copied! Toggle word wrap Toggle overflow Execute the partition reassignment using the
kafka-reassign-partitions.shcommand line tool from the same broker pod.oc exec broker-pod -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --execute
oc exec broker-pod -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --executeCopy to Clipboard Copied! Toggle word wrap Toggle overflow If you are going to throttle replication you can also pass the
--throttleoption with an inter-broker throttled rate in bytes per second. For example:oc exec my-cluster-kafka-0 -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --throttle 5000000 \ --execute
oc exec my-cluster-kafka-0 -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --throttle 5000000 \ --executeCopy to Clipboard Copied! Toggle word wrap Toggle overflow This command will print out two reassignment JSON objects. The first records the current assignment for the partitions being moved. You should save this to a local file (not a file in the pod) in case you need to revert the reassignment later on. The second JSON object is the target reassignment you have passed in your reassignment JSON file.
If you need to change the throttle during reassignment you can use the same command line with a different throttled rate. For example:
oc exec my-cluster-kafka-0 -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --throttle 10000000 \ --execute
oc exec my-cluster-kafka-0 -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --throttle 10000000 \ --executeCopy to Clipboard Copied! Toggle word wrap Toggle overflow Periodically verify whether the reassignment has completed using the
kafka-reassign-partitions.shcommand line tool from any of the broker pods. This is the same command as the previous step but with the--verifyoption instead of the--executeoption.oc exec broker-pod -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --verify
oc exec broker-pod -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --verifyCopy to Clipboard Copied! Toggle word wrap Toggle overflow For example,
oc exec my-cluster-kafka-0 -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --verify
oc exec my-cluster-kafka-0 -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --verifyCopy to Clipboard Copied! Toggle word wrap Toggle overflow -
The reassignment has finished when the
--verifycommand reports each of the partitions being moved as completed successfully. This final--verifywill also have the effect of removing any reassignment throttles. You can now delete the revert file if you saved the JSON for reverting the assignment to their original brokers.
3.1.25.7. Scaling down a Kafka cluster Copy linkLink copied to clipboard!
Additional resources
This procedure describes how to decrease the number of brokers in a Kafka cluster.
Prerequisites
- An existing Kafka cluster.
-
A reassignment JSON file named
reassignment.jsondescribing how partitions should be reassigned to brokers in the cluster once the broker(s) in the highest numberedPod(s)have been removed.
Procedure
Copy the
reassignment.jsonfile to the broker pod on which you will later execute the commands:cat reassignment.json | \ oc exec broker-pod -c kafka -i -- /bin/bash -c \ 'cat > /tmp/reassignment.json'
cat reassignment.json | \ oc exec broker-pod -c kafka -i -- /bin/bash -c \ 'cat > /tmp/reassignment.json'Copy to Clipboard Copied! Toggle word wrap Toggle overflow For example:
cat reassignment.json | \ oc exec my-cluster-kafka-0 -c kafka -i -- /bin/bash -c \ 'cat > /tmp/reassignment.json'
cat reassignment.json | \ oc exec my-cluster-kafka-0 -c kafka -i -- /bin/bash -c \ 'cat > /tmp/reassignment.json'Copy to Clipboard Copied! Toggle word wrap Toggle overflow Execute the partition reassignment using the
kafka-reassign-partitions.shcommand line tool from the same broker pod.oc exec broker-pod -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --execute
oc exec broker-pod -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --executeCopy to Clipboard Copied! Toggle word wrap Toggle overflow If you are going to throttle replication you can also pass the
--throttleoption with an inter-broker throttled rate in bytes per second. For example:oc exec my-cluster-kafka-0 -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --throttle 5000000 \ --execute
oc exec my-cluster-kafka-0 -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --throttle 5000000 \ --executeCopy to Clipboard Copied! Toggle word wrap Toggle overflow This command will print out two reassignment JSON objects. The first records the current assignment for the partitions being moved. You should save this to a local file (not a file in the pod) in case you need to revert the reassignment later on. The second JSON object is the target reassignment you have passed in your reassignment JSON file.
If you need to change the throttle during reassignment you can use the same command line with a different throttled rate. For example:
oc exec my-cluster-kafka-0 -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --throttle 10000000 \ --execute
oc exec my-cluster-kafka-0 -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --throttle 10000000 \ --executeCopy to Clipboard Copied! Toggle word wrap Toggle overflow Periodically verify whether the reassignment has completed using the
kafka-reassign-partitions.shcommand line tool from any of the broker pods. This is the same command as the previous step but with the--verifyoption instead of the--executeoption.oc exec broker-pod -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --verify
oc exec broker-pod -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --verifyCopy to Clipboard Copied! Toggle word wrap Toggle overflow For example,
oc exec my-cluster-kafka-0 -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --verify
oc exec my-cluster-kafka-0 -c kafka -it -- \ bin/kafka-reassign-partitions.sh --zookeeper localhost:2181 \ --reassignment-json-file /tmp/reassignment.json \ --verifyCopy to Clipboard Copied! Toggle word wrap Toggle overflow -
The reassignment has finished when the
--verifycommand reports each of the partitions being moved as completed successfully. This final--verifywill also have the effect of removing any reassignment throttles. You can now delete the revert file if you saved the JSON for reverting the assignment to their original brokers. Once all the partition reassignments have finished, the broker(s) being removed should not have responsibility for any of the partitions in the cluster. You can verify this by checking that the broker’s data log directory does not contain any live partition logs. If the log directory on the broker contains a directory that does not match the extended regular expression
\.[a-z0-9]-delete$then the broker still has live partitions and it should not be stopped.You can check this by executing the command:
oc exec my-cluster-kafka-0 -c kafka -it -- \ /bin/bash -c \ "ls -l /var/lib/kafka/kafka-log_<N>_ | grep -E '^d' | grep -vE '[a-zA-Z0-9.-]+\.[a-z0-9]+-delete$'"
oc exec my-cluster-kafka-0 -c kafka -it -- \ /bin/bash -c \ "ls -l /var/lib/kafka/kafka-log_<N>_ | grep -E '^d' | grep -vE '[a-zA-Z0-9.-]+\.[a-z0-9]+-delete$'"Copy to Clipboard Copied! Toggle word wrap Toggle overflow where N is the number of the
Pod(s)being deleted.If the above command prints any output then the broker still has live partitions. In this case, either the reassignment has not finished, or the reassignment JSON file was incorrect.
-
Once you have confirmed that the broker has no live partitions you can edit the
Kafka.spec.kafka.replicasof yourKafkaresource, which will scale down theStatefulSet, deleting the highest numbered brokerPod(s).
3.1.26. Deleting Kafka nodes manually Copy linkLink copied to clipboard!
Additional resources
This procedure describes how to delete an existing Kafka node by using an OpenShift annotation. Deleting a Kafka node consists of deleting both the Pod on which the Kafka broker is running and the related PersistentVolumeClaim (if the cluster was deployed with persistent storage). After deletion, the Pod and its related PersistentVolumeClaim are recreated automatically.
Deleting a PersistentVolumeClaim can cause permanent data loss. The following procedure should only be performed if you have encountered storage issues.
Prerequisites
- A running Kafka cluster.
- A running Cluster Operator.
Procedure
Find the name of the
Podthat you want to delete.For example, if the cluster is named cluster-name, the pods are named cluster-name-kafka-index, where index starts at zero and ends at the total number of replicas.
Annotate the
Podresource in OpenShift.Use
oc annotate:oc annotate pod cluster-name-kafka-index strimzi.io/delete-pod-and-pvc=true
oc annotate pod cluster-name-kafka-index strimzi.io/delete-pod-and-pvc=trueCopy to Clipboard Copied! Toggle word wrap Toggle overflow - Wait for the next reconciliation, when the annotated pod with the underlying persistent volume claim will be deleted and then recreated.
Additional resources
- For more information about deploying the Cluster Operator, see Section 2.2.1, “Deploying the Cluster Operator”.
- For more information about deploying the Kafka cluster, see Section 2.2.2.1, “Deploying the Kafka cluster”.
3.1.27. Deleting ZooKeeper nodes manually Copy linkLink copied to clipboard!
This procedure describes how to delete an existing ZooKeeper node by using an OpenShift annotation. Deleting a ZooKeeper node consists of deleting both the Pod on which ZooKeeper is running and the related PersistentVolumeClaim (if the cluster was deployed with persistent storage). After deletion, the Pod and its related PersistentVolumeClaim are recreated automatically.
Deleting a PersistentVolumeClaim can cause permanent data loss. The following procedure should only be performed if you have encountered storage issues.
Prerequisites
- A running ZooKeeper cluster.
- A running Cluster Operator.
Procedure
Find the name of the
Podthat you want to delete.For example, if the cluster is named cluster-name, the pods are named cluster-name-zookeeper-index, where index starts at zero and ends at the total number of replicas.
Annotate the
Podresource in OpenShift.Use
oc annotate:oc annotate pod cluster-name-zookeeper-index strimzi.io/delete-pod-and-pvc=true
oc annotate pod cluster-name-zookeeper-index strimzi.io/delete-pod-and-pvc=trueCopy to Clipboard Copied! Toggle word wrap Toggle overflow - Wait for the next reconciliation, when the annotated pod with the underlying persistent volume claim will be deleted and then recreated.
Additional resources
- For more information about deploying the Cluster Operator, see Section 2.2.1, “Deploying the Cluster Operator”.
- For more information about deploying the ZooKeeper cluster, see Section 2.2.2.1, “Deploying the Kafka cluster”.
3.1.28. Maintenance time windows for rolling updates Copy linkLink copied to clipboard!
Maintenance time windows allow you to schedule certain rolling updates of your Kafka and ZooKeeper clusters to start at a convenient time.
3.1.28.1. Maintenance time windows overview Copy linkLink copied to clipboard!
In most cases, the Cluster Operator only updates your Kafka or ZooKeeper clusters in response to changes to the corresponding Kafka resource. This enables you to plan when to apply changes to a Kafka resource to minimize the impact on Kafka client applications.
However, some updates to your Kafka and ZooKeeper clusters can happen without any corresponding change to the Kafka resource. For example, the Cluster Operator will need to perform a rolling restart if a CA (Certificate Authority) certificate that it manages is close to expiry.
While a rolling restart of the pods should not affect availability of the service (assuming correct broker and topic configurations), it could affect performance of the Kafka client applications. Maintenance time windows allow you to schedule such spontaneous rolling updates of your Kafka and ZooKeeper clusters to start at a convenient time. If maintenance time windows are not configured for a cluster then it is possible that such spontaneous rolling updates will happen at an inconvenient time, such as during a predictable period of high load.
3.1.28.2. Maintenance time window definition Copy linkLink copied to clipboard!
You configure maintenance time windows by entering an array of strings in the Kafka.spec.maintenanceTimeWindows property. Each string is a cron expression interpreted as being in UTC (Coordinated Universal Time, which for practical purposes is the same as Greenwich Mean Time).
The following example configures a single maintenance time window that starts at midnight and ends at 01:59am (UTC), on Sundays, Mondays, Tuesdays, Wednesdays, and Thursdays:
# ... maintenanceTimeWindows: - "* * 0-1 ? * SUN,MON,TUE,WED,THU *" # ...
# ...
maintenanceTimeWindows:
- "* * 0-1 ? * SUN,MON,TUE,WED,THU *"
# ...
In practice, maintenance windows should be set in conjunction with the Kafka.spec.clusterCa.renewalDays and Kafka.spec.clientsCa.renewalDays properties of the Kafka resource, to ensure that the necessary CA certificate renewal can be completed in the configured maintenance time windows.
AMQ Streams does not schedule maintenance operations exactly according to the given windows. Instead, for each reconciliation, it checks whether a maintenance window is currently "open". This means that the start of maintenance operations within a given time window can be delayed by up to the Cluster Operator reconciliation interval. Maintenance time windows must therefore be at least this long.
Additional resources
- For more information about the Cluster Operator configuration, see Section 4.1.3, “Cluster Operator Configuration”.
3.1.28.3. Configuring a maintenance time window Copy linkLink copied to clipboard!
You can configure a maintenance time window for rolling updates triggered by supported processes.
Prerequisites
- An OpenShift cluster.
- The Cluster Operator is running.
Procedure
Add or edit the
maintenanceTimeWindowsproperty in theKafkaresource. For example to allow maintenance between 0800 and 1059 and between 1400 and 1559 you would set themaintenanceTimeWindowsas shown below:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
- Performing a rolling update of a Kafka cluster, see Section 3.1.23, “Performing a rolling update of a Kafka cluster”
- Performing a rolling update of a ZooKeeper cluster, see Section 3.1.24, “Performing a rolling update of a ZooKeeper cluster”
3.1.29. Renewing CA certificates manually Copy linkLink copied to clipboard!
Unless the Kafka.spec.clusterCa.generateCertificateAuthority and Kafka.spec.clientsCa.generateCertificateAuthority objects are set to false, the cluster and clients CA certificates will auto-renew at the start of their respective certificate renewal periods. You can manually renew one or both of these certificates before the certificate renewal period starts, if required for security reasons. A renewed certificate uses the same private key as the old certificate.
Prerequisites
- The Cluster Operator is running.
- A Kafka cluster in which CA certificates and private keys are installed.
Procedure
Apply the
strimzi.io/force-renewannotation to theSecretthat contains the CA certificate that you want to renew.Expand Certificate Secret Annotate command Cluster CA
<cluster-name>-cluster-ca-cert
oc annotate secret <cluster-name>-cluster-ca-cert strimzi.io/force-renew=trueClients CA
<cluster-name>-clients-ca-cert
oc annotate secret <cluster-name>-clients-ca-cert strimzi.io/force-renew=true
At the next reconciliation the Cluster Operator will generate a new CA certificate for the Secret that you annotated. If maintenance time windows are configured, the Cluster Operator will generate the new CA certificate at the first reconciliation within the next maintenance time window.
Client applications must reload the cluster and clients CA certificates that were renewed by the Cluster Operator.
3.1.30. Replacing private keys Copy linkLink copied to clipboard!
You can replace the private keys used by the cluster CA and clients CA certificates. When a private key is replaced, the Cluster Operator generates a new CA certificate for the new private key.
Prerequisites
- The Cluster Operator is running.
- A Kafka cluster in which CA certificates and private keys are installed.
Procedure
Apply the
strimzi.io/force-replaceannotation to theSecretthat contains the private key that you want to renew.Expand Private key for Secret Annotate command Cluster CA
<cluster-name>-cluster-ca
oc annotate secret <cluster-name>-cluster-ca strimzi.io/force-replace=trueClients CA
<cluster-name>-clients-ca
oc annotate secret <cluster-name>-clients-ca strimzi.io/force-replace=true
At the next reconciliation the Cluster Operator will:
-
Generate a new private key for the
Secretthat you annotated - Generate a new CA certificate
If maintenance time windows are configured, the Cluster Operator will generate the new private key and CA certificate at the first reconciliation within the next maintenance time window.
Client applications must reload the cluster and clients CA certificates that were renewed by the Cluster Operator.
Additional resources
3.1.31. List of resources created as part of Kafka cluster Copy linkLink copied to clipboard!
The following resources will created by the Cluster Operator in the OpenShift cluster:
cluster-name-kafka- StatefulSet which is in charge of managing the Kafka broker pods.
cluster-name-kafka-brokers- Service needed to have DNS resolve the Kafka broker pods IP addresses directly.
cluster-name-kafka-bootstrap- Service can be used as bootstrap servers for Kafka clients.
cluster-name-kafka-external-bootstrap- Bootstrap service for clients connecting from outside of the OpenShift cluster. This resource will be created only when external listener is enabled.
cluster-name-kafka-pod-id- Service used to route traffic from outside of the OpenShift cluster to individual pods. This resource will be created only when external listener is enabled.
cluster-name-kafka-external-bootstrap-
Bootstrap route for clients connecting from outside of the OpenShift cluster. This resource will be created only when external listener is enabled and set to type
route. cluster-name-kafka-pod-id-
Route for traffic from outside of the OpenShift cluster to individual pods. This resource will be created only when external listener is enabled and set to type
route. cluster-name-kafka-config- ConfigMap which contains the Kafka ancillary configuration and is mounted as a volume by the Kafka broker pods.
cluster-name-kafka-brokers- Secret with Kafka broker keys.
cluster-name-kafka- Service account used by the Kafka brokers.
cluster-name-kafka- Pod Disruption Budget configured for the Kafka brokers.
strimzi-namespace-name-cluster-name-kafka-init- Cluster role binding used by the Kafka brokers.
cluster-name-zookeeper- StatefulSet which is in charge of managing the ZooKeeper node pods.
cluster-name-zookeeper-nodes- Service needed to have DNS resolve the ZooKeeper pods IP addresses directly.
cluster-name-zookeeper-client- Service used by Kafka brokers to connect to ZooKeeper nodes as clients.
cluster-name-zookeeper-config- ConfigMap which contains the ZooKeeper ancillary configuration and is mounted as a volume by the ZooKeeper node pods.
cluster-name-zookeeper-nodes- Secret with ZooKeeper node keys.
cluster-name-zookeeper- Pod Disruption Budget configured for the ZooKeeper nodes.
cluster-name-entity-operator- Deployment with Topic and User Operators. This resource will be created only if Cluster Operator deployed Entity Operator.
cluster-name-entity-topic-operator-config- Configmap with ancillary configuration for Topic Operators. This resource will be created only if Cluster Operator deployed Entity Operator.
cluster-name-entity-user-operator-config- Configmap with ancillary configuration for User Operators. This resource will be created only if Cluster Operator deployed Entity Operator.
cluster-name-entity-operator-certs- Secret with Entity operators keys for communication with Kafka and ZooKeeper. This resource will be created only if Cluster Operator deployed Entity Operator.
cluster-name-entity-operator- Service account used by the Entity Operator.
strimzi-cluster-name-topic-operator- Role binding used by the Entity Operator.
strimzi-cluster-name-user-operator- Role binding used by the Entity Operator.
cluster-name-cluster-ca- Secret with the Cluster CA used to encrypt the cluster communication.
cluster-name-cluster-ca-cert- Secret with the Cluster CA public key. This key can be used to verify the identity of the Kafka brokers.
cluster-name-clients-ca- Secret with the Clients CA used to encrypt the communication between Kafka brokers and Kafka clients.
cluster-name-clients-ca-cert- Secret with the Clients CA public key. This key can be used to verify the identity of the Kafka brokers.
cluster-name-cluster-operator-certs- Secret with Cluster operators keys for communication with Kafka and ZooKeeper.
data-cluster-name-kafka-idx-
Persistent Volume Claim for the volume used for storing data for the Kafka broker pod
idx. This resource will be created only if persistent storage is selected for provisioning persistent volumes to store data. data-id-cluster-name-kafka-idx-
Persistent Volume Claim for the volume
idused for storing data for the Kafka broker podidx. This resource is only created if persistent storage is selected for JBOD volumes when provisioning persistent volumes to store data. data-cluster-name-zookeeper-idx-
Persistent Volume Claim for the volume used for storing data for the ZooKeeper node pod
idx. This resource will be created only if persistent storage is selected for provisioning persistent volumes to store data. cluster-name-jmx- Secret with JMX username and password used to secure the Kafka broker port.
3.2. Kafka Connect cluster configuration Copy linkLink copied to clipboard!
The full schema of the KafkaConnect resource is described in the Section B.74, “KafkaConnect schema reference”. All labels that are applied to the desired KafkaConnect resource will also be applied to the OpenShift resources making up the Kafka Connect cluster. This provides a convenient mechanism for resources to be labeled as required.
3.2.1. Replicas Copy linkLink copied to clipboard!
Kafka Connect clusters can consist of one or more nodes. The number of nodes is defined in the KafkaConnect and KafkaConnectS2I resources. Running a Kafka Connect cluster with multiple nodes can provide better availability and scalability. However, when running Kafka Connect on OpenShift it is not necessary to run multiple nodes of Kafka Connect for high availability. If a node where Kafka Connect is deployed to crashes, OpenShift will automatically reschedule the Kafka Connect pod to a different node. However, running Kafka Connect with multiple nodes can provide faster failover times, because the other nodes will be up and running already.
3.2.1.1. Configuring the number of nodes Copy linkLink copied to clipboard!
The number of Kafka Connect nodes is configured using the replicas property in KafkaConnect.spec and KafkaConnectS2I.spec.
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
replicasproperty in theKafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.2. Bootstrap servers Copy linkLink copied to clipboard!
A Kafka Connect cluster always works in combination with a Kafka cluster. A Kafka cluster is specified as a list of bootstrap servers. On OpenShift, the list must ideally contain the Kafka cluster bootstrap service named cluster-name-kafka-bootstrap, and a port of 9092 for plain traffic or 9093 for encrypted traffic.
The list of bootstrap servers is configured in the bootstrapServers property in KafkaConnect.spec and KafkaConnectS2I.spec. The servers must be defined as a comma-separated list specifying one or more Kafka brokers, or a service pointing to Kafka brokers specified as a hostname:_port_ pairs.
When using Kafka Connect with a Kafka cluster not managed by AMQ Streams, you can specify the bootstrap servers list according to the configuration of the cluster.
3.2.2.1. Configuring bootstrap servers Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
bootstrapServersproperty in theKafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.3. Connecting to Kafka brokers using TLS Copy linkLink copied to clipboard!
By default, Kafka Connect tries to connect to Kafka brokers using a plain text connection. If you prefer to use TLS, additional configuration is required.
3.2.3.1. TLS support in Kafka Connect Copy linkLink copied to clipboard!
TLS support is configured in the tls property in KafkaConnect.spec and KafkaConnectS2I.spec. The tls property contains a list of secrets with key names under which the certificates are stored. The certificates must be stored in X509 format.
An example showing TLS configuration with multiple certificates
When multiple certificates are stored in the same secret, it can be listed multiple times.
An example showing TLS configuration with multiple certificates from the same secret
3.2.3.2. Configuring TLS in Kafka Connect Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
-
If they exist, the name of the
Secretfor the certificate used for TLS Server Authentication, and the key under which the certificate is stored in theSecret
Procedure
(Optional) If they do not already exist, prepare the TLS certificate used in authentication in a file and create a
Secret.NoteThe secrets created by the Cluster Operator for Kafka cluster may be used directly.
This can be done using
oc create:oc create secret generic my-secret --from-file=my-file.crt
oc create secret generic my-secret --from-file=my-file.crtCopy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
tlsproperty in theKafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.4. Connecting to Kafka brokers with Authentication Copy linkLink copied to clipboard!
By default, Kafka Connect will try to connect to Kafka brokers without authentication. Authentication is enabled through the KafkaConnect and KafkaConnectS2I resources.
3.2.4.1. Authentication support in Kafka Connect Copy linkLink copied to clipboard!
Authentication is configured through the authentication property in KafkaConnect.spec and KafkaConnectS2I.spec. The authentication property specifies the type of the authentication mechanisms which should be used and additional configuration details depending on the mechanism. The supported authentication types are:
- TLS client authentication
- SASL-based authentication using the SCRAM-SHA-512 mechanism
- SASL-based authentication using the PLAIN mechanism
- OAuth 2.0 token based authentication
3.2.4.1.1. TLS Client Authentication Copy linkLink copied to clipboard!
To use TLS client authentication, set the type property to the value tls. TLS client authentication uses a TLS certificate to authenticate. The certificate is specified in the certificateAndKey property and is always loaded from an OpenShift secret. In the secret, the certificate must be stored in X509 format under two different keys: public and private.
TLS client authentication can be used only with TLS connections. For more details about TLS configuration in Kafka Connect see Section 3.2.3, “Connecting to Kafka brokers using TLS”.
An example TLS client authentication configuration
3.2.4.1.2. SASL based SCRAM-SHA-512 authentication Copy linkLink copied to clipboard!
To configure Kafka Connect to use SASL-based SCRAM-SHA-512 authentication, set the type property to scram-sha-512. This authentication mechanism requires a username and password.
-
Specify the username in the
usernameproperty. -
In the
passwordSecretproperty, specify a link to aSecretcontaining the password. ThesecretNameproperty contains the name of theSecretand thepasswordproperty contains the name of the key under which the password is stored inside theSecret.
Do not specify the actual password in the password field.
An example SASL based SCRAM-SHA-512 client authentication configuration
3.2.4.1.3. SASL based PLAIN authentication Copy linkLink copied to clipboard!
To configure Kafka Connect to use SASL-based PLAIN authentication, set the type property to plain. This authentication mechanism requires a username and password.
The SASL PLAIN mechanism will transfer the username and password across the network in cleartext. Only use SASL PLAIN authentication if TLS encryption is enabled.
-
Specify the username in the
usernameproperty. -
In the
passwordSecretproperty, specify a link to aSecretcontaining the password. ThesecretNameproperty contains the name of such aSecretand thepasswordproperty contains the name of the key under which the password is stored inside theSecret.
Do not specify the actual password in the password field.
An example showing SASL based PLAIN client authentication configuration
3.2.4.2. Configuring TLS client authentication in Kafka Connect Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
-
If they exist, the name of the
Secretwith the public and private keys used for TLS Client Authentication, and the keys under which they are stored in theSecret
Procedure
(Optional) If they do not already exist, prepare the keys used for authentication in a file and create the
Secret.NoteSecrets created by the User Operator may be used.
This can be done using
oc create:oc create secret generic my-secret --from-file=my-public.crt --from-file=my-private.key
oc create secret generic my-secret --from-file=my-public.crt --from-file=my-private.keyCopy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
authenticationproperty in theKafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.4.3. Configuring SCRAM-SHA-512 authentication in Kafka Connect Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
- Username of the user which should be used for authentication
-
If they exist, the name of the
Secretwith the password used for authentication and the key under which the password is stored in theSecret
Procedure
(Optional) If they do not already exist, prepare a file with the password used in authentication and create the
Secret.NoteSecrets created by the User Operator may be used.
This can be done using
oc create:echo -n '<password>' > <my-password.txt> oc create secret generic <my-secret> --from-file=<my-password.txt>
echo -n '<password>' > <my-password.txt> oc create secret generic <my-secret> --from-file=<my-password.txt>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
authenticationproperty in theKafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
On OpenShift this can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.5. Kafka Connect configuration Copy linkLink copied to clipboard!
AMQ Streams allows you to customize the configuration of Apache Kafka Connect nodes by editing certain options listed in Apache Kafka documentation.
Configuration options that cannot be configured relate to:
- Kafka cluster bootstrap address
- Security (Encryption, Authentication, and Authorization)
- Listener / REST interface configuration
- Plugin path configuration
These options are automatically configured by AMQ Streams.
3.2.5.1. Kafka Connect configuration Copy linkLink copied to clipboard!
Kafka Connect is configured using the config property in KafkaConnect.spec and KafkaConnectS2I.spec. This property contains the Kafka Connect configuration options as keys. The values can be one of the following JSON types:
- String
- Number
- Boolean
You can specify and configure the options listed in the Apache Kafka documentation with the exception of those options that are managed directly by AMQ Streams. Specifically, configuration options with keys equal to or starting with one of the following strings are forbidden:
-
ssl. -
sasl. -
security. -
listeners -
plugin.path -
rest. -
bootstrap.servers
When a forbidden option is present in the config property, it is ignored and a warning message is printed to the Cluster Operator log file. All other options are passed to Kafka Connect.
The Cluster Operator does not validate keys or values in the config object provided. When an invalid configuration is provided, the Kafka Connect cluster might not start or might become unstable. In this circumstance, fix the configuration in the KafkaConnect.spec.config or KafkaConnectS2I.spec.config object, then the Cluster Operator can roll out the new configuration to all Kafka Connect nodes.
Certain options have default values:
-
group.idwith default valueconnect-cluster -
offset.storage.topicwith default valueconnect-cluster-offsets -
config.storage.topicwith default valueconnect-cluster-configs -
status.storage.topicwith default valueconnect-cluster-status -
key.converterwith default valueorg.apache.kafka.connect.json.JsonConverter -
value.converterwith default valueorg.apache.kafka.connect.json.JsonConverter
These options are automatically configured in case they are not present in the KafkaConnect.spec.config or KafkaConnectS2I.spec.config properties.
Use the three allowed ssl configuration options to run external listeners with a specific cipher suite for a TLS version. A cipher suite combines algorithms for secure connection and data transfer.
Example Kafka Connect configuration
- 1
- The cipher suite for TLS using a combination of
ECDHEkey exchange mechanism,RSAauthentication algorithm,AESbulk encyption algorithm andSHA384MAC algorithm. - 2
- The SSl protocol
TLSv1.2is enabled. - 3
- Specifies the
TLSv1.2protocol to generate the SSL context. Allowed values areTLSv1.1andTLSv1.2.
3.2.5.2. Kafka Connect configuration for multiple instances Copy linkLink copied to clipboard!
If you are running multiple instances of Kafka Connect, you have to change the default configuration of the following config properties:
Values for the three topics must be the same for all Kafka Connect instances with the same group.id.
Unless you change the default settings, each Kafka Connect instance connecting to the same Kafka cluster is deployed with the same values. What happens, in effect, is all instances are coupled to run in a cluster and use the same topics.
If multiple Kafka Connect clusters try to use the same topics, Kafka Connect will not work as expected and generate errors.
If you wish to run multiple Kafka Connect instances, change the values of these properties for each instance.
3.2.5.3. Configuring Kafka Connect Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
configproperty in theKafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow - If authorization is enabled for Kafka Connect, configure the Kafka Connect user to enable access to the Kafka Connect consumer group and topics.
3.2.6. Kafka Connect user authorization Copy linkLink copied to clipboard!
If authorization is enabled for Kafka Connect, the Kafka Connect user must be configured to provide read/write access rights to the Kafka Connect consumer group and internal topics.
The properties for the consumer group and internal topics are automatically configured by AMQ Streams, or they can be specified explicitly in the spec for the KafkaConnect or KafkaConnectS2I configuration.
The following example shows the configuration of the properties in the KafkaConnect resource, which need to be represented in the Kafka Connect user configuration.
3.2.6.1. Configuring Kafka Connect user authorization Copy linkLink copied to clipboard!
This procedure describes how to authorize user access to Kafka Connect.
When any type of authorization is being used in Kafka, a Kafka Connect user requires access rights to the consumer group and the internal topics of Kafka Connect.
This procedure shows how access is provided when simple authorization is being used.
Simple authorization uses ACL rules, handled by the Kafka SimpleAclAuthorizer plugin, to provide the right level of access. For more information on configuring a KafkaUser resource to use simple authorization, see Kafka User resource.
The default values for the consumer group and topics will differ when running multiple instances.
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
authorizationproperty in theKafkaUserresource to provide access rights to the user.In the following example, access rights are configured for the Kafka Connect topics and consumer group using
literalname values:Expand Property Name offset.storage.topicconnect-cluster-offsetsstatus.storage.topicconnect-cluster-statusconfig.storage.topicconnect-cluster-configsgroupconnect-clusterCopy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.7. CPU and memory resources Copy linkLink copied to clipboard!
For every deployed container, AMQ Streams allows you to request specific resources and define the maximum consumption of those resources.
AMQ Streams supports two types of resources:
- CPU
- Memory
AMQ Streams uses the OpenShift syntax for specifying CPU and memory resources.
3.2.7.1. Resource limits and requests Copy linkLink copied to clipboard!
Resource limits and requests are configured using the resources property in the following resources:
-
Kafka.spec.kafka -
Kafka.spec.kafka.tlsSidecar -
Kafka.spec.zookeeper -
Kafka.spec.entityOperator.topicOperator -
Kafka.spec.entityOperator.userOperator -
Kafka.spec.entityOperator.tlsSidecar -
Kafka.spec.KafkaExporter -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaBridge.spec
Additional resources
- For more information about managing computing resources on OpenShift, see Managing Compute Resources for Containers.
3.2.7.1.1. Resource requests Copy linkLink copied to clipboard!
Requests specify the resources to reserve for a given container. Reserving the resources ensures that they are always available.
If the resource request is for more than the available free resources in the OpenShift cluster, the pod is not scheduled.
Resources requests are specified in the requests property. Resources requests currently supported by AMQ Streams:
-
cpu -
memory
A request may be configured for one or more supported resources.
Example resource request configuration with all resources
3.2.7.1.2. Resource limits Copy linkLink copied to clipboard!
Limits specify the maximum resources that can be consumed by a given container. The limit is not reserved and might not always be available. A container can use the resources up to the limit only when they are available. Resource limits should be always higher than the resource requests.
Resource limits are specified in the limits property. Resource limits currently supported by AMQ Streams:
-
cpu -
memory
A resource may be configured for one or more supported limits.
Example resource limits configuration
3.2.7.1.3. Supported CPU formats Copy linkLink copied to clipboard!
CPU requests and limits are supported in the following formats:
-
Number of CPU cores as integer (
5CPU core) or decimal (2.5CPU core). -
Number or millicpus / millicores (
100m) where 1000 millicores is the same1CPU core.
Example CPU units
The computing power of 1 CPU core may differ depending on the platform where OpenShift is deployed.
Additional resources
- For more information on CPU specification, see the Meaning of CPU.
3.2.7.1.4. Supported memory formats Copy linkLink copied to clipboard!
Memory requests and limits are specified in megabytes, gigabytes, mebibytes, and gibibytes.
-
To specify memory in megabytes, use the
Msuffix. For example1000M. -
To specify memory in gigabytes, use the
Gsuffix. For example1G. -
To specify memory in mebibytes, use the
Misuffix. For example1000Mi. -
To specify memory in gibibytes, use the
Gisuffix. For example1Gi.
An example of using different memory units
Additional resources
- For more details about memory specification and additional supported units, see Meaning of memory.
3.2.7.2. Configuring resource requests and limits Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
resourcesproperty in the resource specifying the cluster deployment. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
- For more information about the schema, see {K8sResourceRequirementsAPI}.
3.2.8. Kafka Connect loggers Copy linkLink copied to clipboard!
Kafka Connect has its own configurable loggers:
-
connect.root.logger.level -
log4j.logger.org.reflections
Kafka Connect uses the Apache log4j logger implementation.
Use the logging property to configure loggers and logger levels.
You can set the log levels by specifying the logger and level directly (inline) or use a custom (external) ConfigMap. If a ConfigMap is used, you set logging.name property to the name of the ConfigMap containing the external logging configuration. Inside the ConfigMap, the logging configuration is described using log4j.properties.
Here we see examples of inline and external logging.
Inline logging
External logging
Additional resources
- Garbage collector (GC) logging can also be enabled (or disabled). For more information about GC logging, see Section 3.1.18.1, “JVM configuration”
- For more information about log levels, see Apache logging services.
3.2.9. Healthchecks Copy linkLink copied to clipboard!
Healthchecks are periodical tests which verify the health of an application. When a Healthcheck probe fails, OpenShift assumes that the application is not healthy and attempts to fix it.
OpenShift supports two types of Healthcheck probes:
- Liveness probes
- Readiness probes
For more details about the probes, see Configure Liveness and Readiness Probes. Both types of probes are used in AMQ Streams components.
Users can configure selected options for liveness and readiness probes.
3.2.9.1. Healthcheck configurations Copy linkLink copied to clipboard!
Liveness and readiness probes can be configured using the livenessProbe and readinessProbe properties in following resources:
-
Kafka.spec.kafka -
Kafka.spec.kafka.tlsSidecar -
Kafka.spec.zookeeper -
Kafka.spec.entityOperator.tlsSidecar -
Kafka.spec.entityOperator.topicOperator -
Kafka.spec.entityOperator.userOperator -
Kafka.spec.KafkaExporter -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaMirrorMaker.spec -
KafkaBridge.spec
Both livenessProbe and readinessProbe support the following options:
-
initialDelaySeconds -
timeoutSeconds -
periodSeconds -
successThreshold -
failureThreshold
For more information about the livenessProbe and readinessProbe options, see Section B.40, “Probe schema reference”.
An example of liveness and readiness probe configuration
3.2.9.2. Configuring healthchecks Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
livenessProbeorreadinessProbeproperty in theKafka,KafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.10. Prometheus metrics Copy linkLink copied to clipboard!
AMQ Streams supports Prometheus metrics using Prometheus JMX exporter to convert the JMX metrics supported by Apache Kafka and ZooKeeper to Prometheus metrics. When metrics are enabled, they are exposed on port 9404.
For more information about setting up and deploying Prometheus and Grafana, see Introducing Metrics to Kafka.
3.2.10.1. Metrics configuration Copy linkLink copied to clipboard!
Prometheus metrics are enabled by configuring the metrics property in following resources:
-
Kafka.spec.kafka -
Kafka.spec.zookeeper -
KafkaConnect.spec -
KafkaConnectS2I.spec
When the metrics property is not defined in the resource, the Prometheus metrics will be disabled. To enable Prometheus metrics export without any further configuration, you can set it to an empty object ({}).
Example of enabling metrics without any further configuration
The metrics property might contain additional configuration for the Prometheus JMX exporter.
Example of enabling metrics with additional Prometheus JMX Exporter configuration
3.2.10.2. Configuring Prometheus metrics Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
metricsproperty in theKafka,KafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.11. JVM Options Copy linkLink copied to clipboard!
The following components of AMQ Streams run inside a Virtual Machine (VM):
- Apache Kafka
- Apache ZooKeeper
- Apache Kafka Connect
- Apache Kafka MirrorMaker
- AMQ Streams Kafka Bridge
JVM configuration options optimize the performance for different platforms and architectures. AMQ Streams allows you to configure some of these options.
3.2.11.1. JVM configuration Copy linkLink copied to clipboard!
JVM options can be configured using the jvmOptions property in following resources:
-
Kafka.spec.kafka -
Kafka.spec.zookeeper -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaMirrorMaker.spec -
KafkaBridge.spec
Only a selected subset of available JVM options can be configured. The following options are supported:
-Xms and -Xmx
-Xms configures the minimum initial allocation heap size when the JVM starts. -Xmx configures the maximum heap size.
The units accepted by JVM settings such as -Xmx and -Xms are those accepted by the JDK java binary in the corresponding image. Accordingly, 1g or 1G means 1,073,741,824 bytes, and Gi is not a valid unit suffix. This is in contrast to the units used for memory requests and limits, which follow the OpenShift convention where 1G means 1,000,000,000 bytes, and 1Gi means 1,073,741,824 bytes
The default values used for -Xms and -Xmx depends on whether there is a memory request limit configured for the container:
- If there is a memory limit then the JVM’s minimum and maximum memory will be set to a value corresponding to the limit.
-
If there is no memory limit then the JVM’s minimum memory will be set to
128Mand the JVM’s maximum memory will not be defined. This allows for the JVM’s memory to grow as-needed, which is ideal for single node environments in test and development.
Setting -Xmx explicitly requires some care:
-
The JVM’s overall memory usage will be approximately 4 × the maximum heap, as configured by
-Xmx. -
If
-Xmxis set without also setting an appropriate OpenShift memory limit, it is possible that the container will be killed should the OpenShift node experience memory pressure (from other Pods running on it). -
If
-Xmxis set without also setting an appropriate OpenShift memory request, it is possible that the container will be scheduled to a node with insufficient memory. In this case, the container will not start but crash (immediately if-Xmsis set to-Xmx, or some later time if not).
When setting -Xmx explicitly, it is recommended to:
- set the memory request and the memory limit to the same value,
-
use a memory request that is at least 4.5 × the
-Xmx, -
consider setting
-Xmsto the same value as-Xmx.
Containers doing lots of disk I/O (such as Kafka broker containers) will need to leave some memory available for use as operating system page cache. On such containers, the requested memory should be significantly higher than the memory used by the JVM.
Example fragment configuring -Xmx and -Xms
# ... jvmOptions: "-Xmx": "2g" "-Xms": "2g" # ...
# ...
jvmOptions:
"-Xmx": "2g"
"-Xms": "2g"
# ...
In the above example, the JVM will use 2 GiB (=2,147,483,648 bytes) for its heap. Its total memory usage will be approximately 8GiB.
Setting the same value for initial (-Xms) and maximum (-Xmx) heap sizes avoids the JVM having to allocate memory after startup, at the cost of possibly allocating more heap than is really needed. For Kafka and ZooKeeper pods such allocation could cause unwanted latency. For Kafka Connect avoiding over allocation may be the most important concern, especially in distributed mode where the effects of over-allocation will be multiplied by the number of consumers.
-server
-server enables the server JVM. This option can be set to true or false.
Example fragment configuring -server
# ... jvmOptions: "-server": true # ...
# ...
jvmOptions:
"-server": true
# ...
When neither of the two options (-server and -XX) is specified, the default Apache Kafka configuration of KAFKA_JVM_PERFORMANCE_OPTS will be used.
-XX
-XX object can be used for configuring advanced runtime options of a JVM. The -server and -XX options are used to configure the KAFKA_JVM_PERFORMANCE_OPTS option of Apache Kafka.
Example showing the use of the -XX object
The example configuration above will result in the following JVM options:
-XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:-UseParNewGC
-XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:-UseParNewGC
When neither of the two options (-server and -XX) is specified, the default Apache Kafka configuration of KAFKA_JVM_PERFORMANCE_OPTS will be used.
3.2.11.1.1. Garbage collector logging Copy linkLink copied to clipboard!
The jvmOptions section also allows you to enable and disable garbage collector (GC) logging. GC logging is disabled by default. To enable it, set the gcLoggingEnabled property as follows:
Example of enabling GC logging
# ... jvmOptions: gcLoggingEnabled: true # ...
# ...
jvmOptions:
gcLoggingEnabled: true
# ...
3.2.11.2. Configuring JVM options Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
jvmOptionsproperty in theKafka,KafkaConnect,KafkaConnectS2I,KafkaMirrorMaker, orKafkaBridgeresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.12. Container images Copy linkLink copied to clipboard!
AMQ Streams allows you to configure container images which will be used for its components. Overriding container images is recommended only in special situations, where you need to use a different container registry. For example, because your network does not allow access to the container repository used by AMQ Streams. In such a case, you should either copy the AMQ Streams images or build them from the source. If the configured image is not compatible with AMQ Streams images, it might not work properly.
3.2.12.1. Container image configurations Copy linkLink copied to clipboard!
You can specify which container image to use for each component using the image property in the following resources:
-
Kafka.spec.kafka -
Kafka.spec.kafka.tlsSidecar -
Kafka.spec.zookeeper -
Kafka.spec.entityOperator.topicOperator -
Kafka.spec.entityOperator.userOperator -
Kafka.spec.entityOperator.tlsSidecar -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaBridge.spec
3.2.12.1.1. Configuring the image property for Kafka, Kafka Connect, and Kafka MirrorMaker Copy linkLink copied to clipboard!
Kafka, Kafka Connect (including Kafka Connect with S2I support), and Kafka MirrorMaker support multiple versions of Kafka. Each component requires its own image. The default images for the different Kafka versions are configured in the following environment variables:
-
STRIMZI_KAFKA_IMAGES -
STRIMZI_KAFKA_CONNECT_IMAGES -
STRIMZI_KAFKA_CONNECT_S2I_IMAGES -
STRIMZI_KAFKA_MIRROR_MAKER_IMAGES
These environment variables contain mappings between the Kafka versions and their corresponding images. The mappings are used together with the image and version properties:
-
If neither
imagenorversionare given in the custom resource then theversionwill default to the Cluster Operator’s default Kafka version, and the image will be the one corresponding to this version in the environment variable. -
If
imageis given butversionis not, then the given image is used and theversionis assumed to be the Cluster Operator’s default Kafka version. -
If
versionis given butimageis not, then the image that corresponds to the given version in the environment variable is used. -
If both
versionandimageare given, then the given image is used. The image is assumed to contain a Kafka image with the given version.
The image and version for the different components can be configured in the following properties:
-
For Kafka in
spec.kafka.imageandspec.kafka.version. -
For Kafka Connect, Kafka Connect S2I, and Kafka MirrorMaker in
spec.imageandspec.version.
It is recommended to provide only the version and leave the image property unspecified. This reduces the chance of making a mistake when configuring the custom resource. If you need to change the images used for different versions of Kafka, it is preferable to configure the Cluster Operator’s environment variables.
3.2.12.1.2. Configuring the image property in other resources Copy linkLink copied to clipboard!
For the image property in the other custom resources, the given value will be used during deployment. If the image property is missing, the image specified in the Cluster Operator configuration will be used. If the image name is not defined in the Cluster Operator configuration, then the default value will be used.
For Kafka broker TLS sidecar:
-
Container image specified in the
STRIMZI_DEFAULT_TLS_SIDECAR_KAFKA_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0container image.
-
Container image specified in the
For Topic Operator:
-
Container image specified in the
STRIMZI_DEFAULT_TOPIC_OPERATOR_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0container image.
-
Container image specified in the
For User Operator:
-
Container image specified in the
STRIMZI_DEFAULT_USER_OPERATOR_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0container image.
-
Container image specified in the
For Entity Operator TLS sidecar:
-
Container image specified in the
STRIMZI_DEFAULT_TLS_SIDECAR_ENTITY_OPERATOR_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0container image.
-
Container image specified in the
For Kafka Exporter:
-
Container image specified in the
STRIMZI_DEFAULT_KAFKA_EXPORTER_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0container image.
-
Container image specified in the
For Kafka Bridge:
-
Container image specified in the
STRIMZI_DEFAULT_KAFKA_BRIDGE_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-bridge-rhel7:1.5.0container image.
-
Container image specified in the
For Kafka broker initializer:
-
Container image specified in the
STRIMZI_DEFAULT_KAFKA_INIT_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0container image.
-
Container image specified in the
Overriding container images is recommended only in special situations, where you need to use a different container registry. For example, because your network does not allow access to the container repository used by AMQ Streams. In such case, you should either copy the AMQ Streams images or build them from source. In case the configured image is not compatible with AMQ Streams images, it might not work properly.
Example of container image configuration
3.2.12.2. Configuring container images Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
imageproperty in theKafka,KafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.13. Configuring pod scheduling Copy linkLink copied to clipboard!
When two applications are scheduled to the same OpenShift node, both applications might use the same resources like disk I/O and impact performance. That can lead to performance degradation. Scheduling Kafka pods in a way that avoids sharing nodes with other critical workloads, using the right nodes or dedicated a set of nodes only for Kafka are the best ways how to avoid such problems.
3.2.13.1. Scheduling pods based on other applications Copy linkLink copied to clipboard!
3.2.13.1.1. Avoid critical applications to share the node Copy linkLink copied to clipboard!
Pod anti-affinity can be used to ensure that critical applications are never scheduled on the same disk. When running Kafka cluster, it is recommended to use pod anti-affinity to ensure that the Kafka brokers do not share the nodes with other workloads like databases.
3.2.13.1.2. Affinity Copy linkLink copied to clipboard!
Affinity can be configured using the affinity property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The affinity configuration can include different types of affinity:
- Pod affinity and anti-affinity
- Node affinity
The format of the affinity property follows the OpenShift specification. For more details, see the Kubernetes node and pod affinity documentation.
3.2.13.1.3. Configuring pod anti-affinity in Kafka components Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
affinityproperty in the resource specifying the cluster deployment. Use labels to specify the pods which should not be scheduled on the same nodes. ThetopologyKeyshould be set tokubernetes.io/hostnameto specify that the selected pods should not be scheduled on nodes with the same hostname. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.13.2. Scheduling pods to specific nodes Copy linkLink copied to clipboard!
3.2.13.2.1. Node scheduling Copy linkLink copied to clipboard!
The OpenShift cluster usually consists of many different types of worker nodes. Some are optimized for CPU heavy workloads, some for memory, while other might be optimized for storage (fast local SSDs) or network. Using different nodes helps to optimize both costs and performance. To achieve the best possible performance, it is important to allow scheduling of AMQ Streams components to use the right nodes.
OpenShift uses node affinity to schedule workloads onto specific nodes. Node affinity allows you to create a scheduling constraint for the node on which the pod will be scheduled. The constraint is specified as a label selector. You can specify the label using either the built-in node label like beta.kubernetes.io/instance-type or custom labels to select the right node.
3.2.13.2.2. Affinity Copy linkLink copied to clipboard!
Affinity can be configured using the affinity property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The affinity configuration can include different types of affinity:
- Pod affinity and anti-affinity
- Node affinity
The format of the affinity property follows the OpenShift specification. For more details, see the Kubernetes node and pod affinity documentation.
3.2.13.2.3. Configuring node affinity in Kafka components Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Label the nodes where AMQ Streams components should be scheduled.
This can be done using
oc label:oc label node your-node node-type=fast-network
oc label node your-node node-type=fast-networkCopy to Clipboard Copied! Toggle word wrap Toggle overflow Alternatively, some of the existing labels might be reused.
Edit the
affinityproperty in the resource specifying the cluster deployment. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.13.3. Using dedicated nodes Copy linkLink copied to clipboard!
3.2.13.3.1. Dedicated nodes Copy linkLink copied to clipboard!
Cluster administrators can mark selected OpenShift nodes as tainted. Nodes with taints are excluded from regular scheduling and normal pods will not be scheduled to run on them. Only services which can tolerate the taint set on the node can be scheduled on it. The only other services running on such nodes will be system services such as log collectors or software defined networks.
Taints can be used to create dedicated nodes. Running Kafka and its components on dedicated nodes can have many advantages. There will be no other applications running on the same nodes which could cause disturbance or consume the resources needed for Kafka. That can lead to improved performance and stability.
To schedule Kafka pods on the dedicated nodes, configure node affinity and tolerations.
3.2.13.3.2. Affinity Copy linkLink copied to clipboard!
Affinity can be configured using the affinity property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The affinity configuration can include different types of affinity:
- Pod affinity and anti-affinity
- Node affinity
The format of the affinity property follows the OpenShift specification. For more details, see the Kubernetes node and pod affinity documentation.
3.2.13.3.3. Tolerations Copy linkLink copied to clipboard!
Tolerations can be configured using the tolerations property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The format of the tolerations property follows the OpenShift specification. For more details, see the Kubernetes taints and tolerations.
3.2.13.3.4. Setting up dedicated nodes and scheduling pods on them Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
- Select the nodes which should be used as dedicated.
- Make sure there are no workloads scheduled on these nodes.
Set the taints on the selected nodes:
This can be done using
oc adm taint:oc adm taint node your-node dedicated=Kafka:NoSchedule
oc adm taint node your-node dedicated=Kafka:NoScheduleCopy to Clipboard Copied! Toggle word wrap Toggle overflow Additionally, add a label to the selected nodes as well.
This can be done using
oc label:oc label node your-node dedicated=Kafka
oc label node your-node dedicated=KafkaCopy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
affinityandtolerationsproperties in the resource specifying the cluster deployment. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.14. Using external configuration and secrets Copy linkLink copied to clipboard!
Connectors are created, reconfigured, and deleted using the Kafka Connect HTTP REST interface, or by using KafkaConnectors. For more information on these methods, see Section 2.3.3, “Creating and managing connectors”. The connector configuration is passed to Kafka Connect as part of an HTTP request and stored within Kafka itself.
ConfigMaps and Secrets are standard OpenShift resources used for storing configurations and confidential data. Whichever method you use to manage connectors, you can use ConfigMaps and Secrets to configure certain elements of a connector. You can then reference the configuration values in HTTP REST commands (this keeps the configuration separate and more secure, if needed). This method applies especially to confidential data, such as usernames, passwords, or certificates.
3.2.14.1. Storing connector configurations externally Copy linkLink copied to clipboard!
You can mount ConfigMaps or Secrets into a Kafka Connect pod as volumes or environment variables. Volumes and environment variables are configured in the externalConfiguration property in KafkaConnect.spec and KafkaConnectS2I.spec.
3.2.14.1.1. External configuration as environment variables Copy linkLink copied to clipboard!
The env property is used to specify one or more environment variables. These variables can contain a value from either a ConfigMap or a Secret.
The names of user-defined environment variables cannot start with KAFKA_ or STRIMZI_.
To mount a value from a Secret to an environment variable, use the valueFrom property and the secretKeyRef as shown in the following example.
Example of an environment variable set to a value from a Secret
A common use case for mounting Secrets to environment variables is when your connector needs to communicate with Amazon AWS and needs to read the AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY environment variables with credentials.
To mount a value from a ConfigMap to an environment variable, use configMapKeyRef in the valueFrom property as shown in the following example.
Example of an environment variable set to a value from a ConfigMap
3.2.14.1.2. External configuration as volumes Copy linkLink copied to clipboard!
You can also mount ConfigMaps or Secrets to a Kafka Connect pod as volumes. Using volumes instead of environment variables is useful in the following scenarios:
- Mounting truststores or keystores with TLS certificates
- Mounting a properties file that is used to configure Kafka Connect connectors
In the volumes property of the externalConfiguration resource, list the ConfigMaps or Secrets that will be mounted as volumes. Each volume must specify a name in the name property and a reference to ConfigMap or Secret.
Example of volumes with external configuration
The volumes will be mounted inside the Kafka Connect containers in the path /opt/kafka/external-configuration/<volume-name>. For example, the files from a volume named connector1 would appear in the directory /opt/kafka/external-configuration/connector1.
The FileConfigProvider has to be used to read the values from the mounted properties files in connector configurations.
3.2.14.2. Mounting Secrets as environment variables Copy linkLink copied to clipboard!
You can create an OpenShift Secret and mount it to Kafka Connect as an environment variable.
Prerequisites
- A running Cluster Operator.
Procedure
Create a secret containing the information that will be mounted as an environment variable. For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or edit the Kafka Connect resource. Configure the
externalConfigurationsection of theKafkaConnectorKafkaConnectS2Icustom resource to reference the secret. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Apply the changes to your Kafka Connect deployment.
Use
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
The environment variables are now available for use when developing your connectors.
Additional resources
-
For more information about external configuration in Kafka Connect, see Section B.84, “
ExternalConfigurationschema reference”.
3.2.14.3. Mounting Secrets as volumes Copy linkLink copied to clipboard!
You can create an OpenShift Secret, mount it as a volume to Kafka Connect, and then use it to configure a Kafka Connect connector.
Prerequisites
- A running Cluster Operator.
Procedure
Create a secret containing a properties file that defines the configuration options for your connector configuration. For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or edit the Kafka Connect resource. Configure the
FileConfigProviderin theconfigsection and theexternalConfigurationsection of theKafkaConnectorKafkaConnectS2Icustom resource to reference the secret. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Apply the changes to your Kafka Connect deployment.
Use
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow Configure your connector
If you are using the Kafka Connect HTTP REST interface, use the values from the mounted properties file in your JSON payload with connector configuration. For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow If you are using a
KafkaConnectorresource, use the values from the mounted properties file in thespec.configsection of your custom resource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
-
For more information about external configuration in Kafka Connect, see Section B.84, “
ExternalConfigurationschema reference”.
3.2.15. Enabling KafkaConnector resources Copy linkLink copied to clipboard!
To enable KafkaConnectors for a Kafka Connect cluster, add the strimzi.io/use-connector-resources annotation to the KafkaConnect or KafkaConnectS2I custom resource.
Prerequisites
- A running Cluster Operator
Procedure
Edit the
KafkaConnectorKafkaConnectS2Iresource. Add thestrimzi.io/use-connector-resourcesannotation. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource using
oc apply:oc apply -f kafka-connect.yaml
oc apply -f kafka-connect.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.2.16. List of resources created as part of Kafka Connect cluster Copy linkLink copied to clipboard!
The following resources will created by the Cluster Operator in the OpenShift cluster:
- connect-cluster-name-connect
- Deployment which is in charge to create the Kafka Connect worker node pods.
- connect-cluster-name-connect-api
- Service which exposes the REST interface for managing the Kafka Connect cluster.
- connect-cluster-name-config
- ConfigMap which contains the Kafka Connect ancillary configuration and is mounted as a volume by the Kafka broker pods.
- connect-cluster-name-connect
- Pod Disruption Budget configured for the Kafka Connect worker nodes.
3.3. Kafka Connect cluster configuration with Source2Image support Copy linkLink copied to clipboard!
The full schema of the KafkaConnectS2I resource is described in the Section B.90, “KafkaConnectS2I schema reference”. All labels that are applied to the desired KafkaConnectS2I resource will also be applied to the OpenShift resources making up the Kafka Connect cluster with Source2Image support. This provides a convenient mechanism for resources to be labeled as required.
3.3.1. Replicas Copy linkLink copied to clipboard!
Kafka Connect clusters can consist of one or more nodes. The number of nodes is defined in the KafkaConnect and KafkaConnectS2I resources. Running a Kafka Connect cluster with multiple nodes can provide better availability and scalability. However, when running Kafka Connect on OpenShift it is not necessary to run multiple nodes of Kafka Connect for high availability. If a node where Kafka Connect is deployed to crashes, OpenShift will automatically reschedule the Kafka Connect pod to a different node. However, running Kafka Connect with multiple nodes can provide faster failover times, because the other nodes will be up and running already.
3.3.1.1. Configuring the number of nodes Copy linkLink copied to clipboard!
The number of Kafka Connect nodes is configured using the replicas property in KafkaConnect.spec and KafkaConnectS2I.spec.
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
replicasproperty in theKafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.3.2. Bootstrap servers Copy linkLink copied to clipboard!
A Kafka Connect cluster always works in combination with a Kafka cluster. A Kafka cluster is specified as a list of bootstrap servers. On OpenShift, the list must ideally contain the Kafka cluster bootstrap service named cluster-name-kafka-bootstrap, and a port of 9092 for plain traffic or 9093 for encrypted traffic.
The list of bootstrap servers is configured in the bootstrapServers property in KafkaConnect.spec and KafkaConnectS2I.spec. The servers must be defined as a comma-separated list specifying one or more Kafka brokers, or a service pointing to Kafka brokers specified as a hostname:_port_ pairs.
When using Kafka Connect with a Kafka cluster not managed by AMQ Streams, you can specify the bootstrap servers list according to the configuration of the cluster.
3.3.2.1. Configuring bootstrap servers Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
bootstrapServersproperty in theKafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.3.3. Connecting to Kafka brokers using TLS Copy linkLink copied to clipboard!
By default, Kafka Connect tries to connect to Kafka brokers using a plain text connection. If you prefer to use TLS, additional configuration is required.
3.3.3.1. TLS support in Kafka Connect Copy linkLink copied to clipboard!
TLS support is configured in the tls property in KafkaConnect.spec and KafkaConnectS2I.spec. The tls property contains a list of secrets with key names under which the certificates are stored. The certificates must be stored in X509 format.
An example showing TLS configuration with multiple certificates
When multiple certificates are stored in the same secret, it can be listed multiple times.
An example showing TLS configuration with multiple certificates from the same secret
3.3.3.2. Configuring TLS in Kafka Connect Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
-
If they exist, the name of the
Secretfor the certificate used for TLS Server Authentication, and the key under which the certificate is stored in theSecret
Procedure
(Optional) If they do not already exist, prepare the TLS certificate used in authentication in a file and create a
Secret.NoteThe secrets created by the Cluster Operator for Kafka cluster may be used directly.
This can be done using
oc create:oc create secret generic my-secret --from-file=my-file.crt
oc create secret generic my-secret --from-file=my-file.crtCopy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
tlsproperty in theKafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.3.4. Connecting to Kafka brokers with Authentication Copy linkLink copied to clipboard!
By default, Kafka Connect will try to connect to Kafka brokers without authentication. Authentication is enabled through the KafkaConnect and KafkaConnectS2I resources.
3.3.4.1. Authentication support in Kafka Connect Copy linkLink copied to clipboard!
Authentication is configured through the authentication property in KafkaConnect.spec and KafkaConnectS2I.spec. The authentication property specifies the type of the authentication mechanisms which should be used and additional configuration details depending on the mechanism. The supported authentication types are:
- TLS client authentication
- SASL-based authentication using the SCRAM-SHA-512 mechanism
- SASL-based authentication using the PLAIN mechanism
- OAuth 2.0 token based authentication
3.3.4.1.1. TLS Client Authentication Copy linkLink copied to clipboard!
To use TLS client authentication, set the type property to the value tls. TLS client authentication uses a TLS certificate to authenticate. The certificate is specified in the certificateAndKey property and is always loaded from an OpenShift secret. In the secret, the certificate must be stored in X509 format under two different keys: public and private.
TLS client authentication can be used only with TLS connections. For more details about TLS configuration in Kafka Connect see Section 3.3.3, “Connecting to Kafka brokers using TLS”.
An example TLS client authentication configuration
3.3.4.1.2. SASL based SCRAM-SHA-512 authentication Copy linkLink copied to clipboard!
To configure Kafka Connect to use SASL-based SCRAM-SHA-512 authentication, set the type property to scram-sha-512. This authentication mechanism requires a username and password.
-
Specify the username in the
usernameproperty. -
In the
passwordSecretproperty, specify a link to aSecretcontaining the password. ThesecretNameproperty contains the name of theSecretand thepasswordproperty contains the name of the key under which the password is stored inside theSecret.
Do not specify the actual password in the password field.
An example SASL based SCRAM-SHA-512 client authentication configuration
3.3.4.1.3. SASL based PLAIN authentication Copy linkLink copied to clipboard!
To configure Kafka Connect to use SASL-based PLAIN authentication, set the type property to plain. This authentication mechanism requires a username and password.
The SASL PLAIN mechanism will transfer the username and password across the network in cleartext. Only use SASL PLAIN authentication if TLS encryption is enabled.
-
Specify the username in the
usernameproperty. -
In the
passwordSecretproperty, specify a link to aSecretcontaining the password. ThesecretNameproperty contains the name of such aSecretand thepasswordproperty contains the name of the key under which the password is stored inside theSecret.
Do not specify the actual password in the password field.
An example showing SASL based PLAIN client authentication configuration
3.3.4.2. Configuring TLS client authentication in Kafka Connect Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
-
If they exist, the name of the
Secretwith the public and private keys used for TLS Client Authentication, and the keys under which they are stored in theSecret
Procedure
(Optional) If they do not already exist, prepare the keys used for authentication in a file and create the
Secret.NoteSecrets created by the User Operator may be used.
This can be done using
oc create:oc create secret generic my-secret --from-file=my-public.crt --from-file=my-private.key
oc create secret generic my-secret --from-file=my-public.crt --from-file=my-private.keyCopy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
authenticationproperty in theKafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.3.4.3. Configuring SCRAM-SHA-512 authentication in Kafka Connect Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
- Username of the user which should be used for authentication
-
If they exist, the name of the
Secretwith the password used for authentication and the key under which the password is stored in theSecret
Procedure
(Optional) If they do not already exist, prepare a file with the password used in authentication and create the
Secret.NoteSecrets created by the User Operator may be used.
This can be done using
oc create:echo -n '<password>' > <my-password.txt> oc create secret generic <my-secret> --from-file=<my-password.txt>
echo -n '<password>' > <my-password.txt> oc create secret generic <my-secret> --from-file=<my-password.txt>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
authenticationproperty in theKafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
On OpenShift this can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.3.5. Kafka Connect configuration Copy linkLink copied to clipboard!
AMQ Streams allows you to customize the configuration of Apache Kafka Connect nodes by editing certain options listed in Apache Kafka documentation.
Configuration options that cannot be configured relate to:
- Kafka cluster bootstrap address
- Security (Encryption, Authentication, and Authorization)
- Listener / REST interface configuration
- Plugin path configuration
These options are automatically configured by AMQ Streams.
3.3.5.1. Kafka Connect configuration Copy linkLink copied to clipboard!
Kafka Connect is configured using the config property in KafkaConnect.spec and KafkaConnectS2I.spec. This property contains the Kafka Connect configuration options as keys. The values can be one of the following JSON types:
- String
- Number
- Boolean
You can specify and configure the options listed in the Apache Kafka documentation with the exception of those options that are managed directly by AMQ Streams. Specifically, configuration options with keys equal to or starting with one of the following strings are forbidden:
-
ssl. -
sasl. -
security. -
listeners -
plugin.path -
rest. -
bootstrap.servers
When a forbidden option is present in the config property, it is ignored and a warning message is printed to the Cluster Operator log file. All other options are passed to Kafka Connect.
The Cluster Operator does not validate keys or values in the config object provided. When an invalid configuration is provided, the Kafka Connect cluster might not start or might become unstable. In this circumstance, fix the configuration in the KafkaConnect.spec.config or KafkaConnectS2I.spec.config object, then the Cluster Operator can roll out the new configuration to all Kafka Connect nodes.
Certain options have default values:
-
group.idwith default valueconnect-cluster -
offset.storage.topicwith default valueconnect-cluster-offsets -
config.storage.topicwith default valueconnect-cluster-configs -
status.storage.topicwith default valueconnect-cluster-status -
key.converterwith default valueorg.apache.kafka.connect.json.JsonConverter -
value.converterwith default valueorg.apache.kafka.connect.json.JsonConverter
These options are automatically configured in case they are not present in the KafkaConnect.spec.config or KafkaConnectS2I.spec.config properties.
Use the three allowed ssl configuration options to run external listeners with a specific cipher suite for a TLS version. A cipher suite combines algorithms for secure connection and data transfer.
Example Kafka Connect configuration
- 1
- The cipher suite for TLS using a combination of
ECDHEkey exchange mechanism,RSAauthentication algorithm,AESbulk encyption algorithm andSHA384MAC algorithm. - 2
- The SSl protocol
TLSv1.2is enabled. - 3
- Specifies the
TLSv1.2protocol to generate the SSL context. Allowed values areTLSv1.1andTLSv1.2.
3.3.5.2. Kafka Connect configuration for multiple instances Copy linkLink copied to clipboard!
If you are running multiple instances of Kafka Connect, you have to change the default configuration of the following config properties:
Values for the three topics must be the same for all Kafka Connect instances with the same group.id.
Unless you change the default settings, each Kafka Connect instance connecting to the same Kafka cluster is deployed with the same values. What happens, in effect, is all instances are coupled to run in a cluster and use the same topics.
If multiple Kafka Connect clusters try to use the same topics, Kafka Connect will not work as expected and generate errors.
If you wish to run multiple Kafka Connect instances, change the values of these properties for each instance.
3.3.5.3. Configuring Kafka Connect Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
configproperty in theKafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow - If authorization is enabled for Kafka Connect, configure the Kafka Connect user to enable access to the Kafka Connect consumer group and topics.
3.3.6. Kafka Connect user authorization Copy linkLink copied to clipboard!
If authorization is enabled for Kafka Connect, the Kafka Connect user must be configured to provide read/write access rights to the Kafka Connect consumer group and internal topics.
The properties for the consumer group and internal topics are automatically configured by AMQ Streams, or they can be specified explicitly in the spec for the KafkaConnect or KafkaConnectS2I configuration.
The following example shows the configuration of the properties in the KafkaConnect resource, which need to be represented in the Kafka Connect user configuration.
3.3.6.1. Configuring Kafka Connect user authorization Copy linkLink copied to clipboard!
This procedure describes how to authorize user access to Kafka Connect.
When any type of authorization is being used in Kafka, a Kafka Connect user requires access rights to the consumer group and the internal topics of Kafka Connect.
This procedure shows how access is provided when simple authorization is being used.
Simple authorization uses ACL rules, handled by the Kafka SimpleAclAuthorizer plugin, to provide the right level of access. For more information on configuring a KafkaUser resource to use simple authorization, see Kafka User resource.
The default values for the consumer group and topics will differ when running multiple instances.
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
authorizationproperty in theKafkaUserresource to provide access rights to the user.In the following example, access rights are configured for the Kafka Connect topics and consumer group using
literalname values:Expand Property Name offset.storage.topicconnect-cluster-offsetsstatus.storage.topicconnect-cluster-statusconfig.storage.topicconnect-cluster-configsgroupconnect-clusterCopy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.3.7. CPU and memory resources Copy linkLink copied to clipboard!
For every deployed container, AMQ Streams allows you to request specific resources and define the maximum consumption of those resources.
AMQ Streams supports two types of resources:
- CPU
- Memory
AMQ Streams uses the OpenShift syntax for specifying CPU and memory resources.
3.3.7.1. Resource limits and requests Copy linkLink copied to clipboard!
Resource limits and requests are configured using the resources property in the following resources:
-
Kafka.spec.kafka -
Kafka.spec.kafka.tlsSidecar -
Kafka.spec.zookeeper -
Kafka.spec.entityOperator.topicOperator -
Kafka.spec.entityOperator.userOperator -
Kafka.spec.entityOperator.tlsSidecar -
Kafka.spec.KafkaExporter -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaBridge.spec
Additional resources
- For more information about managing computing resources on OpenShift, see Managing Compute Resources for Containers.
3.3.7.1.1. Resource requests Copy linkLink copied to clipboard!
Requests specify the resources to reserve for a given container. Reserving the resources ensures that they are always available.
If the resource request is for more than the available free resources in the OpenShift cluster, the pod is not scheduled.
Resources requests are specified in the requests property. Resources requests currently supported by AMQ Streams:
-
cpu -
memory
A request may be configured for one or more supported resources.
Example resource request configuration with all resources
3.3.7.1.2. Resource limits Copy linkLink copied to clipboard!
Limits specify the maximum resources that can be consumed by a given container. The limit is not reserved and might not always be available. A container can use the resources up to the limit only when they are available. Resource limits should be always higher than the resource requests.
Resource limits are specified in the limits property. Resource limits currently supported by AMQ Streams:
-
cpu -
memory
A resource may be configured for one or more supported limits.
Example resource limits configuration
3.3.7.1.3. Supported CPU formats Copy linkLink copied to clipboard!
CPU requests and limits are supported in the following formats:
-
Number of CPU cores as integer (
5CPU core) or decimal (2.5CPU core). -
Number or millicpus / millicores (
100m) where 1000 millicores is the same1CPU core.
Example CPU units
The computing power of 1 CPU core may differ depending on the platform where OpenShift is deployed.
Additional resources
- For more information on CPU specification, see the Meaning of CPU.
3.3.7.1.4. Supported memory formats Copy linkLink copied to clipboard!
Memory requests and limits are specified in megabytes, gigabytes, mebibytes, and gibibytes.
-
To specify memory in megabytes, use the
Msuffix. For example1000M. -
To specify memory in gigabytes, use the
Gsuffix. For example1G. -
To specify memory in mebibytes, use the
Misuffix. For example1000Mi. -
To specify memory in gibibytes, use the
Gisuffix. For example1Gi.
An example of using different memory units
Additional resources
- For more details about memory specification and additional supported units, see Meaning of memory.
3.3.7.2. Configuring resource requests and limits Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
resourcesproperty in the resource specifying the cluster deployment. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
- For more information about the schema, see {K8sResourceRequirementsAPI}.
3.3.8. Kafka Connect with S2I loggers Copy linkLink copied to clipboard!
Kafka Connect with Source2Image support has its own configurable loggers:
-
connect.root.logger.level -
log4j.logger.org.reflections
Kafka Connect uses the Apache log4j logger implementation.
Use the logging property to configure loggers and logger levels.
You can set the log levels by specifying the logger and level directly (inline) or use a custom (external) ConfigMap. If a ConfigMap is used, you set logging.name property to the name of the ConfigMap containing the external logging configuration. Inside the ConfigMap, the logging configuration is described using log4j.properties.
Here we see examples of inline and external logging.
Inline logging
External logging
Additional resources
- Garbage collector (GC) logging can also be enabled (or disabled). For more information about GC logging, see Section 3.1.18.1, “JVM configuration”
- For more information about log levels, see Apache logging services.
3.3.9. Healthchecks Copy linkLink copied to clipboard!
Healthchecks are periodical tests which verify the health of an application. When a Healthcheck probe fails, OpenShift assumes that the application is not healthy and attempts to fix it.
OpenShift supports two types of Healthcheck probes:
- Liveness probes
- Readiness probes
For more details about the probes, see Configure Liveness and Readiness Probes. Both types of probes are used in AMQ Streams components.
Users can configure selected options for liveness and readiness probes.
3.3.9.1. Healthcheck configurations Copy linkLink copied to clipboard!
Liveness and readiness probes can be configured using the livenessProbe and readinessProbe properties in following resources:
-
Kafka.spec.kafka -
Kafka.spec.kafka.tlsSidecar -
Kafka.spec.zookeeper -
Kafka.spec.entityOperator.tlsSidecar -
Kafka.spec.entityOperator.topicOperator -
Kafka.spec.entityOperator.userOperator -
Kafka.spec.KafkaExporter -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaMirrorMaker.spec -
KafkaBridge.spec
Both livenessProbe and readinessProbe support the following options:
-
initialDelaySeconds -
timeoutSeconds -
periodSeconds -
successThreshold -
failureThreshold
For more information about the livenessProbe and readinessProbe options, see Section B.40, “Probe schema reference”.
An example of liveness and readiness probe configuration
3.3.9.2. Configuring healthchecks Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
livenessProbeorreadinessProbeproperty in theKafka,KafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.3.10. Prometheus metrics Copy linkLink copied to clipboard!
AMQ Streams supports Prometheus metrics using Prometheus JMX exporter to convert the JMX metrics supported by Apache Kafka and ZooKeeper to Prometheus metrics. When metrics are enabled, they are exposed on port 9404.
For more information about setting up and deploying Prometheus and Grafana, see Introducing Metrics to Kafka.
3.3.10.1. Metrics configuration Copy linkLink copied to clipboard!
Prometheus metrics are enabled by configuring the metrics property in following resources:
-
Kafka.spec.kafka -
Kafka.spec.zookeeper -
KafkaConnect.spec -
KafkaConnectS2I.spec
When the metrics property is not defined in the resource, the Prometheus metrics will be disabled. To enable Prometheus metrics export without any further configuration, you can set it to an empty object ({}).
Example of enabling metrics without any further configuration
The metrics property might contain additional configuration for the Prometheus JMX exporter.
Example of enabling metrics with additional Prometheus JMX Exporter configuration
3.3.10.2. Configuring Prometheus metrics Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
metricsproperty in theKafka,KafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.3.11. JVM Options Copy linkLink copied to clipboard!
The following components of AMQ Streams run inside a Virtual Machine (VM):
- Apache Kafka
- Apache ZooKeeper
- Apache Kafka Connect
- Apache Kafka MirrorMaker
- AMQ Streams Kafka Bridge
JVM configuration options optimize the performance for different platforms and architectures. AMQ Streams allows you to configure some of these options.
3.3.11.1. JVM configuration Copy linkLink copied to clipboard!
JVM options can be configured using the jvmOptions property in following resources:
-
Kafka.spec.kafka -
Kafka.spec.zookeeper -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaMirrorMaker.spec -
KafkaBridge.spec
Only a selected subset of available JVM options can be configured. The following options are supported:
-Xms and -Xmx
-Xms configures the minimum initial allocation heap size when the JVM starts. -Xmx configures the maximum heap size.
The units accepted by JVM settings such as -Xmx and -Xms are those accepted by the JDK java binary in the corresponding image. Accordingly, 1g or 1G means 1,073,741,824 bytes, and Gi is not a valid unit suffix. This is in contrast to the units used for memory requests and limits, which follow the OpenShift convention where 1G means 1,000,000,000 bytes, and 1Gi means 1,073,741,824 bytes
The default values used for -Xms and -Xmx depends on whether there is a memory request limit configured for the container:
- If there is a memory limit then the JVM’s minimum and maximum memory will be set to a value corresponding to the limit.
-
If there is no memory limit then the JVM’s minimum memory will be set to
128Mand the JVM’s maximum memory will not be defined. This allows for the JVM’s memory to grow as-needed, which is ideal for single node environments in test and development.
Setting -Xmx explicitly requires some care:
-
The JVM’s overall memory usage will be approximately 4 × the maximum heap, as configured by
-Xmx. -
If
-Xmxis set without also setting an appropriate OpenShift memory limit, it is possible that the container will be killed should the OpenShift node experience memory pressure (from other Pods running on it). -
If
-Xmxis set without also setting an appropriate OpenShift memory request, it is possible that the container will be scheduled to a node with insufficient memory. In this case, the container will not start but crash (immediately if-Xmsis set to-Xmx, or some later time if not).
When setting -Xmx explicitly, it is recommended to:
- set the memory request and the memory limit to the same value,
-
use a memory request that is at least 4.5 × the
-Xmx, -
consider setting
-Xmsto the same value as-Xmx.
Containers doing lots of disk I/O (such as Kafka broker containers) will need to leave some memory available for use as operating system page cache. On such containers, the requested memory should be significantly higher than the memory used by the JVM.
Example fragment configuring -Xmx and -Xms
# ... jvmOptions: "-Xmx": "2g" "-Xms": "2g" # ...
# ...
jvmOptions:
"-Xmx": "2g"
"-Xms": "2g"
# ...
In the above example, the JVM will use 2 GiB (=2,147,483,648 bytes) for its heap. Its total memory usage will be approximately 8GiB.
Setting the same value for initial (-Xms) and maximum (-Xmx) heap sizes avoids the JVM having to allocate memory after startup, at the cost of possibly allocating more heap than is really needed. For Kafka and ZooKeeper pods such allocation could cause unwanted latency. For Kafka Connect avoiding over allocation may be the most important concern, especially in distributed mode where the effects of over-allocation will be multiplied by the number of consumers.
-server
-server enables the server JVM. This option can be set to true or false.
Example fragment configuring -server
# ... jvmOptions: "-server": true # ...
# ...
jvmOptions:
"-server": true
# ...
When neither of the two options (-server and -XX) is specified, the default Apache Kafka configuration of KAFKA_JVM_PERFORMANCE_OPTS will be used.
-XX
-XX object can be used for configuring advanced runtime options of a JVM. The -server and -XX options are used to configure the KAFKA_JVM_PERFORMANCE_OPTS option of Apache Kafka.
Example showing the use of the -XX object
The example configuration above will result in the following JVM options:
-XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:-UseParNewGC
-XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:-UseParNewGC
When neither of the two options (-server and -XX) is specified, the default Apache Kafka configuration of KAFKA_JVM_PERFORMANCE_OPTS will be used.
3.3.11.1.1. Garbage collector logging Copy linkLink copied to clipboard!
The jvmOptions section also allows you to enable and disable garbage collector (GC) logging. GC logging is disabled by default. To enable it, set the gcLoggingEnabled property as follows:
Example of enabling GC logging
# ... jvmOptions: gcLoggingEnabled: true # ...
# ...
jvmOptions:
gcLoggingEnabled: true
# ...
3.3.11.2. Configuring JVM options Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
jvmOptionsproperty in theKafka,KafkaConnect,KafkaConnectS2I,KafkaMirrorMaker, orKafkaBridgeresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.3.12. Container images Copy linkLink copied to clipboard!
AMQ Streams allows you to configure container images which will be used for its components. Overriding container images is recommended only in special situations, where you need to use a different container registry. For example, because your network does not allow access to the container repository used by AMQ Streams. In such a case, you should either copy the AMQ Streams images or build them from the source. If the configured image is not compatible with AMQ Streams images, it might not work properly.
3.3.12.1. Container image configurations Copy linkLink copied to clipboard!
You can specify which container image to use for each component using the image property in the following resources:
-
Kafka.spec.kafka -
Kafka.spec.kafka.tlsSidecar -
Kafka.spec.zookeeper -
Kafka.spec.entityOperator.topicOperator -
Kafka.spec.entityOperator.userOperator -
Kafka.spec.entityOperator.tlsSidecar -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaBridge.spec
3.3.12.1.1. Configuring the image property for Kafka, Kafka Connect, and Kafka MirrorMaker Copy linkLink copied to clipboard!
Kafka, Kafka Connect (including Kafka Connect with S2I support), and Kafka MirrorMaker support multiple versions of Kafka. Each component requires its own image. The default images for the different Kafka versions are configured in the following environment variables:
-
STRIMZI_KAFKA_IMAGES -
STRIMZI_KAFKA_CONNECT_IMAGES -
STRIMZI_KAFKA_CONNECT_S2I_IMAGES -
STRIMZI_KAFKA_MIRROR_MAKER_IMAGES
These environment variables contain mappings between the Kafka versions and their corresponding images. The mappings are used together with the image and version properties:
-
If neither
imagenorversionare given in the custom resource then theversionwill default to the Cluster Operator’s default Kafka version, and the image will be the one corresponding to this version in the environment variable. -
If
imageis given butversionis not, then the given image is used and theversionis assumed to be the Cluster Operator’s default Kafka version. -
If
versionis given butimageis not, then the image that corresponds to the given version in the environment variable is used. -
If both
versionandimageare given, then the given image is used. The image is assumed to contain a Kafka image with the given version.
The image and version for the different components can be configured in the following properties:
-
For Kafka in
spec.kafka.imageandspec.kafka.version. -
For Kafka Connect, Kafka Connect S2I, and Kafka MirrorMaker in
spec.imageandspec.version.
It is recommended to provide only the version and leave the image property unspecified. This reduces the chance of making a mistake when configuring the custom resource. If you need to change the images used for different versions of Kafka, it is preferable to configure the Cluster Operator’s environment variables.
3.3.12.1.2. Configuring the image property in other resources Copy linkLink copied to clipboard!
For the image property in the other custom resources, the given value will be used during deployment. If the image property is missing, the image specified in the Cluster Operator configuration will be used. If the image name is not defined in the Cluster Operator configuration, then the default value will be used.
For Kafka broker TLS sidecar:
-
Container image specified in the
STRIMZI_DEFAULT_TLS_SIDECAR_KAFKA_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0container image.
-
Container image specified in the
For Topic Operator:
-
Container image specified in the
STRIMZI_DEFAULT_TOPIC_OPERATOR_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0container image.
-
Container image specified in the
For User Operator:
-
Container image specified in the
STRIMZI_DEFAULT_USER_OPERATOR_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0container image.
-
Container image specified in the
For Entity Operator TLS sidecar:
-
Container image specified in the
STRIMZI_DEFAULT_TLS_SIDECAR_ENTITY_OPERATOR_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0container image.
-
Container image specified in the
For Kafka Exporter:
-
Container image specified in the
STRIMZI_DEFAULT_KAFKA_EXPORTER_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0container image.
-
Container image specified in the
For Kafka Bridge:
-
Container image specified in the
STRIMZI_DEFAULT_KAFKA_BRIDGE_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-bridge-rhel7:1.5.0container image.
-
Container image specified in the
For Kafka broker initializer:
-
Container image specified in the
STRIMZI_DEFAULT_KAFKA_INIT_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0container image.
-
Container image specified in the
Overriding container images is recommended only in special situations, where you need to use a different container registry. For example, because your network does not allow access to the container repository used by AMQ Streams. In such case, you should either copy the AMQ Streams images or build them from source. In case the configured image is not compatible with AMQ Streams images, it might not work properly.
Example of container image configuration
3.3.12.2. Configuring container images Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
imageproperty in theKafka,KafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.3.13. Configuring pod scheduling Copy linkLink copied to clipboard!
When two applications are scheduled to the same OpenShift node, both applications might use the same resources like disk I/O and impact performance. That can lead to performance degradation. Scheduling Kafka pods in a way that avoids sharing nodes with other critical workloads, using the right nodes or dedicated a set of nodes only for Kafka are the best ways how to avoid such problems.
3.3.13.1. Scheduling pods based on other applications Copy linkLink copied to clipboard!
3.3.13.1.1. Avoid critical applications to share the node Copy linkLink copied to clipboard!
Pod anti-affinity can be used to ensure that critical applications are never scheduled on the same disk. When running Kafka cluster, it is recommended to use pod anti-affinity to ensure that the Kafka brokers do not share the nodes with other workloads like databases.
3.3.13.1.2. Affinity Copy linkLink copied to clipboard!
Affinity can be configured using the affinity property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The affinity configuration can include different types of affinity:
- Pod affinity and anti-affinity
- Node affinity
The format of the affinity property follows the OpenShift specification. For more details, see the Kubernetes node and pod affinity documentation.
3.3.13.1.3. Configuring pod anti-affinity in Kafka components Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
affinityproperty in the resource specifying the cluster deployment. Use labels to specify the pods which should not be scheduled on the same nodes. ThetopologyKeyshould be set tokubernetes.io/hostnameto specify that the selected pods should not be scheduled on nodes with the same hostname. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.3.13.2. Scheduling pods to specific nodes Copy linkLink copied to clipboard!
3.3.13.2.1. Node scheduling Copy linkLink copied to clipboard!
The OpenShift cluster usually consists of many different types of worker nodes. Some are optimized for CPU heavy workloads, some for memory, while other might be optimized for storage (fast local SSDs) or network. Using different nodes helps to optimize both costs and performance. To achieve the best possible performance, it is important to allow scheduling of AMQ Streams components to use the right nodes.
OpenShift uses node affinity to schedule workloads onto specific nodes. Node affinity allows you to create a scheduling constraint for the node on which the pod will be scheduled. The constraint is specified as a label selector. You can specify the label using either the built-in node label like beta.kubernetes.io/instance-type or custom labels to select the right node.
3.3.13.2.2. Affinity Copy linkLink copied to clipboard!
Affinity can be configured using the affinity property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The affinity configuration can include different types of affinity:
- Pod affinity and anti-affinity
- Node affinity
The format of the affinity property follows the OpenShift specification. For more details, see the Kubernetes node and pod affinity documentation.
3.3.13.2.3. Configuring node affinity in Kafka components Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Label the nodes where AMQ Streams components should be scheduled.
This can be done using
oc label:oc label node your-node node-type=fast-network
oc label node your-node node-type=fast-networkCopy to Clipboard Copied! Toggle word wrap Toggle overflow Alternatively, some of the existing labels might be reused.
Edit the
affinityproperty in the resource specifying the cluster deployment. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.3.13.3. Using dedicated nodes Copy linkLink copied to clipboard!
3.3.13.3.1. Dedicated nodes Copy linkLink copied to clipboard!
Cluster administrators can mark selected OpenShift nodes as tainted. Nodes with taints are excluded from regular scheduling and normal pods will not be scheduled to run on them. Only services which can tolerate the taint set on the node can be scheduled on it. The only other services running on such nodes will be system services such as log collectors or software defined networks.
Taints can be used to create dedicated nodes. Running Kafka and its components on dedicated nodes can have many advantages. There will be no other applications running on the same nodes which could cause disturbance or consume the resources needed for Kafka. That can lead to improved performance and stability.
To schedule Kafka pods on the dedicated nodes, configure node affinity and tolerations.
3.3.13.3.2. Affinity Copy linkLink copied to clipboard!
Affinity can be configured using the affinity property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The affinity configuration can include different types of affinity:
- Pod affinity and anti-affinity
- Node affinity
The format of the affinity property follows the OpenShift specification. For more details, see the Kubernetes node and pod affinity documentation.
3.3.13.3.3. Tolerations Copy linkLink copied to clipboard!
Tolerations can be configured using the tolerations property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The format of the tolerations property follows the OpenShift specification. For more details, see the Kubernetes taints and tolerations.
3.3.13.3.4. Setting up dedicated nodes and scheduling pods on them Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
- Select the nodes which should be used as dedicated.
- Make sure there are no workloads scheduled on these nodes.
Set the taints on the selected nodes:
This can be done using
oc adm taint:oc adm taint node your-node dedicated=Kafka:NoSchedule
oc adm taint node your-node dedicated=Kafka:NoScheduleCopy to Clipboard Copied! Toggle word wrap Toggle overflow Additionally, add a label to the selected nodes as well.
This can be done using
oc label:oc label node your-node dedicated=Kafka
oc label node your-node dedicated=KafkaCopy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
affinityandtolerationsproperties in the resource specifying the cluster deployment. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.3.14. Using external configuration and secrets Copy linkLink copied to clipboard!
Connectors are created, reconfigured, and deleted using the Kafka Connect HTTP REST interface, or by using KafkaConnectors. For more information on these methods, see Section 2.3.3, “Creating and managing connectors”. The connector configuration is passed to Kafka Connect as part of an HTTP request and stored within Kafka itself.
ConfigMaps and Secrets are standard OpenShift resources used for storing configurations and confidential data. Whichever method you use to manage connectors, you can use ConfigMaps and Secrets to configure certain elements of a connector. You can then reference the configuration values in HTTP REST commands (this keeps the configuration separate and more secure, if needed). This method applies especially to confidential data, such as usernames, passwords, or certificates.
3.3.14.1. Storing connector configurations externally Copy linkLink copied to clipboard!
You can mount ConfigMaps or Secrets into a Kafka Connect pod as volumes or environment variables. Volumes and environment variables are configured in the externalConfiguration property in KafkaConnect.spec and KafkaConnectS2I.spec.
3.3.14.1.1. External configuration as environment variables Copy linkLink copied to clipboard!
The env property is used to specify one or more environment variables. These variables can contain a value from either a ConfigMap or a Secret.
The names of user-defined environment variables cannot start with KAFKA_ or STRIMZI_.
To mount a value from a Secret to an environment variable, use the valueFrom property and the secretKeyRef as shown in the following example.
Example of an environment variable set to a value from a Secret
A common use case for mounting Secrets to environment variables is when your connector needs to communicate with Amazon AWS and needs to read the AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY environment variables with credentials.
To mount a value from a ConfigMap to an environment variable, use configMapKeyRef in the valueFrom property as shown in the following example.
Example of an environment variable set to a value from a ConfigMap
3.3.14.1.2. External configuration as volumes Copy linkLink copied to clipboard!
You can also mount ConfigMaps or Secrets to a Kafka Connect pod as volumes. Using volumes instead of environment variables is useful in the following scenarios:
- Mounting truststores or keystores with TLS certificates
- Mounting a properties file that is used to configure Kafka Connect connectors
In the volumes property of the externalConfiguration resource, list the ConfigMaps or Secrets that will be mounted as volumes. Each volume must specify a name in the name property and a reference to ConfigMap or Secret.
Example of volumes with external configuration
The volumes will be mounted inside the Kafka Connect containers in the path /opt/kafka/external-configuration/<volume-name>. For example, the files from a volume named connector1 would appear in the directory /opt/kafka/external-configuration/connector1.
The FileConfigProvider has to be used to read the values from the mounted properties files in connector configurations.
3.3.14.2. Mounting Secrets as environment variables Copy linkLink copied to clipboard!
You can create an OpenShift Secret and mount it to Kafka Connect as an environment variable.
Prerequisites
- A running Cluster Operator.
Procedure
Create a secret containing the information that will be mounted as an environment variable. For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or edit the Kafka Connect resource. Configure the
externalConfigurationsection of theKafkaConnectorKafkaConnectS2Icustom resource to reference the secret. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Apply the changes to your Kafka Connect deployment.
Use
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
The environment variables are now available for use when developing your connectors.
Additional resources
-
For more information about external configuration in Kafka Connect, see Section B.84, “
ExternalConfigurationschema reference”.
3.3.14.3. Mounting Secrets as volumes Copy linkLink copied to clipboard!
You can create an OpenShift Secret, mount it as a volume to Kafka Connect, and then use it to configure a Kafka Connect connector.
Prerequisites
- A running Cluster Operator.
Procedure
Create a secret containing a properties file that defines the configuration options for your connector configuration. For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or edit the Kafka Connect resource. Configure the
FileConfigProviderin theconfigsection and theexternalConfigurationsection of theKafkaConnectorKafkaConnectS2Icustom resource to reference the secret. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Apply the changes to your Kafka Connect deployment.
Use
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow Configure your connector
If you are using the Kafka Connect HTTP REST interface, use the values from the mounted properties file in your JSON payload with connector configuration. For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow If you are using a
KafkaConnectorresource, use the values from the mounted properties file in thespec.configsection of your custom resource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
-
For more information about external configuration in Kafka Connect, see Section B.84, “
ExternalConfigurationschema reference”.
3.3.15. Enabling KafkaConnector resources Copy linkLink copied to clipboard!
To enable KafkaConnectors for a Kafka Connect cluster, add the strimzi.io/use-connector-resources annotation to the KafkaConnect or KafkaConnectS2I custom resource.
Prerequisites
- A running Cluster Operator
Procedure
Edit the
KafkaConnectorKafkaConnectS2Iresource. Add thestrimzi.io/use-connector-resourcesannotation. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource using
oc apply:oc apply -f kafka-connect.yaml
oc apply -f kafka-connect.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.3.16. List of resources created as part of Kafka Connect cluster with Source2Image support Copy linkLink copied to clipboard!
The following resources will created by the Cluster Operator in the OpenShift cluster:
- connect-cluster-name-connect-source
- ImageStream which is used as the base image for the newly-built Docker images.
- connect-cluster-name-connect
- BuildConfig which is responsible for building the new Kafka Connect Docker images.
- connect-cluster-name-connect
- ImageStream where the newly built Docker images will be pushed.
- connect-cluster-name-connect
- DeploymentConfig which is in charge of creating the Kafka Connect worker node pods.
- connect-cluster-name-connect-api
- Service which exposes the REST interface for managing the Kafka Connect cluster.
- connect-cluster-name-config
- ConfigMap which contains the Kafka Connect ancillary configuration and is mounted as a volume by the Kafka broker pods.
- connect-cluster-name-connect
- Pod Disruption Budget configured for the Kafka Connect worker nodes.
3.3.17. Integrating with Debezium for change data capture Copy linkLink copied to clipboard!
Red Hat Debezium is a distributed change data capture platform. It captures row-level changes in databases, creates change event records, and streams the records to Kafka topics. Debezium is built on Apache Kafka. You can deploy and integrate Debezium with AMQ Streams. Following a deployment of AMQ Streams, you deploy Debezium as a connector configuration through Kafka Connect. Debezium passes change event records to AMQ Streams on OpenShift. Applications can read these change event streams and access the change events in the order in which they occurred.
Debezium has multiple uses, including:
- Data replication
- Updating caches and search indexes
- Simplifying monolithic applications
- Data integration
- Enabling streaming queries
To capture database changes, deploy Kafka Connect with a Debezium database connector . You configure a KafkaConnector resource to define the connector instance.
For more information on deploying Debezium with AMQ Streams, refer to the product documentation. The Debezium documentation includes a Getting Started with Debezium guide that guides you through the process of setting up the services and connector required to view change event records for database updates.
3.4. Kafka MirrorMaker configuration Copy linkLink copied to clipboard!
This chapter describes how to configure a Kafka MirrorMaker deployment in your AMQ Streams cluster to replicate data between Kafka clusters.
You can use AMQ Streams with MirrorMaker or MirrorMaker 2.0. MirrorMaker 2.0 is the latest version, and offers a more efficient way to mirror data between Kafka clusters.
If you are using MirrorMaker, you configure the KafkaMirrorMaker resource.
The following procedure shows how the resource is configured:
Supported properties are also described in more detail for your reference:
The full schema of the KafkaMirrorMaker resource is described in the KafkaMirrorMaker schema reference.
Labels applied to a KafkaMirrorMaker resource are also applied to the OpenShift resources comprising Kafka MirrorMaker. This provides a convenient mechanism for resources to be labeled as required.
3.4.1. Configuring Kafka MirrorMaker Copy linkLink copied to clipboard!
Use the properties of the KafkaMirrorMaker resource to configure your Kafka MirrorMaker deployment.
You can configure access control for producers and consumers using TLS or SASL authentication. This procedure shows a configuration that uses TLS encryption and authentication on the consumer and producer side.
Prerequisites
- AMQ Streams and Kafka is deployed
- Source and target Kafka clusters are available
Procedure
Edit the
specproperties for theKafkaMirrorMakerresource.The properties you can configure are shown in this example configuration:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- The number of replica nodes.
- 2
- Bootstrap servers for consumer and producer.
- 3
- Group ID for the consumer.
- 4
- The number of consumer streams.
- 5
- The offset auto-commit interval in milliseconds.
- 6
- TLS encryption with key names under which TLS certificates are stored in X.509 format for consumer or producer. For more details see
KafkaMirrorMakerTlsschema reference. - 7
- Authentication for consumer or producer, using the TLS mechanism, as shown here, using OAuth bearer tokens, or a SASL-based SCRAM-SHA-512 or PLAIN mechanism.
- 8
- Kafka configuration options for consumer and producer.
- 9
- 10
- If set to
true, Kafka MirrorMaker will exit and the container will restart following a send failure for a message. - 11
- 12
- Topics mirrored from source to target Kafka cluster.
- 13
- Requests for reservation of supported resources, currently
cpuandmemory, and limits to specify the maximum resources that can be consumed. - 14
- Specified loggers and log levels added directly (
inline) or indirectly (external) through a ConfigMap. A custom ConfigMap must be placed under thelog4j.propertiesorlog4j2.propertieskey. MirrorMaker has a single logger calledmirrormaker.root.logger. You can set the log level to INFO, ERROR, WARN, TRACE, DEBUG, FATAL or OFF. - 15
- Healthchecks to know when to restart a container (liveness) and when a container can accept traffic (readiness).
- 16
- Prometheus metrics, which are enabled with configuration for the Prometheus JMX exporter in this example. You can enable metrics without further configuration using
metrics: {}. - 17
- JVM configuration options to optimize performance for the Virtual Machine (VM) running Kafka MirrorMaker.
- 18
- ADVANCED OPTION: Container image configuration, which is recommended only in special situations.
- 19
- Template customization. Here a pod is scheduled based with anti-affinity, so the pod is not scheduled on nodes with the same hostname.
- 20
- Environment variables are also set for distributed tracing using Jaeger.
- 21
WarningWith the
abortOnSendFailureproperty set tofalse, the producer attempts to send the next message in a topic. The original message might be lost, as there is no attempt to resend a failed message.Create or update the resource:
oc apply -f <your-file>
oc apply -f <your-file>Copy to Clipboard Copied! Toggle word wrap Toggle overflow
3.4.2. Kafka MirrorMaker configuration properties Copy linkLink copied to clipboard!
Use the spec configuration properties of the KafkaMirrorMaker resource to set up your MirrorMaker deployment.
Supported properties are described here for your reference.
3.4.2.1. Replicas Copy linkLink copied to clipboard!
Use the replicas property to configure replicas.
You can run multiple MirrorMaker replicas to provide better availability and scalability. When running Kafka MirrorMaker on OpenShift it is not absolutely necessary to run multiple replicas of the Kafka MirrorMaker for high availability. When the node where the Kafka MirrorMaker has deployed crashes, OpenShift will automatically reschedule the Kafka MirrorMaker pod to a different node. However, running Kafka MirrorMaker with multiple replicas can provide faster failover times as the other nodes will be up and running.
3.4.2.2. Bootstrap servers Copy linkLink copied to clipboard!
Use the consumer.bootstrapServers and producer.bootstrapServers properties to configure lists of bootstrap servers for the consumer and producer.
Kafka MirrorMaker always works together with two Kafka clusters (source and target). The source and the target Kafka clusters are specified in the form of two lists of comma-separated list of <hostname>:<port> pairs. Each comma-separated list contains one or more Kafka brokers or a Service pointing to Kafka brokers specified as a <hostname>:<port> pairs.
The bootstrap server lists can refer to Kafka clusters that do not need to be deployed in the same OpenShift cluster. They can even refer to a Kafka cluster not deployed by AMQ Streams, or deployed by AMQ Streams but on a different OpenShift cluster accessible outside.
If on the same OpenShift cluster, each list must ideally contain the Kafka cluster bootstrap service which is named <cluster-name>-kafka-bootstrap and a port of 9092 for plain traffic or 9093 for encrypted traffic. If deployed by AMQ Streams but on different OpenShift clusters, the list content depends on the approach used for exposing the clusters (routes, nodeports or loadbalancers).
When using Kafka MirrorMaker with a Kafka cluster not managed by AMQ Streams, you can specify the bootstrap servers list according to the configuration of the given cluster.
3.4.2.3. Whitelist Copy linkLink copied to clipboard!
Use the whitelist property to configure a list of topics that Kafka MirrorMaker mirrors from the source to the target Kafka cluster.
The property allows any regular expression from the simplest case with a single topic name to complex patterns. For example, you can mirror topics A and B using "A|B" or all topics using "*". You can also pass multiple regular expressions separated by commas to the Kafka MirrorMaker.
3.4.2.4. Consumer group identifier Copy linkLink copied to clipboard!
Use the consumer.groupId property to configure a consumer group identifier for the consumer.
Kafka MirrorMaker uses a Kafka consumer to consume messages, behaving like any other Kafka consumer client. Messages consumed from the source Kafka cluster are mirrored to a target Kafka cluster. A group identifier is required, as the consumer needs to be part of a consumer group for the assignment of partitions.
3.4.2.5. Consumer streams Copy linkLink copied to clipboard!
Use the consumer.numStreams property to configure the number of streams for the consumer.
You can increase the throughput in mirroring topics by increasing the number of consumer threads. Consumer threads belong to the consumer group specified for Kafka MirrorMaker. Topic partitions are assigned across the consumer threads, which consume messages in parallel.
3.4.2.6. Offset auto-commit interval Copy linkLink copied to clipboard!
Use the consumer.offsetCommitInterval property to configure an offset auto-commit interval for the consumer.
You can specify the regular time interval at which an offset is committed after Kafka MirrorMaker has consumed data from the source Kafka cluster. The time interval is set in milliseconds, with a default value of 60,000.
3.4.2.7. Abort on message send failure Copy linkLink copied to clipboard!
Use the producer.abortOnSendFailure property to configure how to handle message send failure from the producer.
By default, if an error occurs when sending a message from Kafka MirrorMaker to a Kafka cluster:
- The Kafka MirrorMaker container is terminated in OpenShift.
- The container is then recreated.
If the abortOnSendFailure option is set to false, message sending errors are ignored.
3.4.2.8. Kafka producer and consumer Copy linkLink copied to clipboard!
Use the consumer.config and producer.config properties to configure Kafka options for the consumer and producer.
The config property contains the Kafka MirrorMaker consumer and producer configuration options as keys, with values set in one of the following JSON types:
- String
- Number
- Boolean
Exceptions
You can specify and configure standard Kafka consumer and producer options:
However, there are exceptions for options automatically configured and managed directly by AMQ Streams related to:
- Kafka cluster bootstrap address
- Security (encryption, authentication, and authorization)
- Consumer group identifier
Specifically, all configuration options with keys equal to or starting with one of the following strings are forbidden:
-
ssl. -
sasl. -
security. -
bootstrap.servers -
group.id
When a forbidden option is present in the config property, it is ignored and a warning message is printed to the Cluster Operator log file. All other options are passed to Kafka MirrorMaker.
The Cluster Operator does not validate keys or values in the provided config object. When an invalid configuration is provided, the Kafka MirrorMaker might not start or might become unstable. In such cases, the configuration in the KafkaMirrorMaker.spec.consumer.config or KafkaMirrorMaker.spec.producer.config object should be fixed and the Cluster Operator will roll out the new configuration for Kafka MirrorMaker.
3.4.2.9. CPU and memory resources Copy linkLink copied to clipboard!
Use the reources.requests and resources.limits properties to configure resource requests and limits.
For every deployed container, AMQ Streams allows you to request specific resources and define the maximum consumption of those resources.
AMQ Streams supports requests and limits for the following types of resources:
-
cpu -
memory
AMQ Streams uses the OpenShift syntax for specifying these resources.
For more information about managing computing resources on OpenShift, see Managing Compute Resources for Containers.
Resource requests
Requests specify the resources to reserve for a given container. Reserving the resources ensures that they are always available.
If the resource request is for more than the available free resources in the OpenShift cluster, the pod is not scheduled.
A request may be configured for one or more supported resources.
Resource limits
Limits specify the maximum resources that can be consumed by a given container. The limit is not reserved and might not always be available. A container can use the resources up to the limit only when they are available. Resource limits should be always higher than the resource requests.
A resource may be configured for one or more supported limits.
Supported CPU formats
CPU requests and limits are supported in the following formats:
-
Number of CPU cores as integer (
5CPU core) or decimal (2.5CPU core). -
Number or millicpus / millicores (
100m) where 1000 millicores is the same1CPU core.
The computing power of 1 CPU core may differ depending on the platform where OpenShift is deployed.
For more information on CPU specification, see the Meaning of CPU.
Supported memory formats
Memory requests and limits are specified in megabytes, gigabytes, mebibytes, and gibibytes.
-
To specify memory in megabytes, use the
Msuffix. For example1000M. -
To specify memory in gigabytes, use the
Gsuffix. For example1G. -
To specify memory in mebibytes, use the
Misuffix. For example1000Mi. -
To specify memory in gibibytes, use the
Gisuffix. For example1Gi.
For more details about memory specification and additional supported units, see Meaning of memory.
3.4.2.10. Kafka MirrorMaker loggers Copy linkLink copied to clipboard!
Kafka MirrorMaker has its own configurable logger:
-
mirrormaker.root.logger
MirrorMaker uses the Apache log4j logger implementation.
Use the logging property to configure loggers and logger levels.
You can set the log levels by specifying the logger and level directly (inline) or use a custom (external) ConfigMap. If a ConfigMap is used, you set logging.name property to the name of the ConfigMap containing the external logging configuration. Inside the ConfigMap, the logging configuration is described using log4j.properties.
Here we see examples of inline and external logging:
Additional resources
- Garbage collector (GC) logging can also be enabled (or disabled). For more information about GC logging, see Section 3.1.18.1, “JVM configuration”
- For more information about log levels, see Apache logging services.
3.4.2.11. Healthchecks Copy linkLink copied to clipboard!
Use the livenessProbe and readinessProbe properties to configure healthcheck probes supported in AMQ Streams.
Healthchecks are periodical tests which verify the health of an application. When a Healthcheck probe fails, OpenShift assumes that the application is not healthy and attempts to fix it.
For more details about the probes, see Configure Liveness and Readiness Probes.
Both livenessProbe and readinessProbe support the following options:
-
initialDelaySeconds -
timeoutSeconds -
periodSeconds -
successThreshold -
failureThreshold
An example of liveness and readiness probe configuration
For more information about the livenessProbe and readinessProbe options, see Probe schema reference.
3.4.2.12. Prometheus metrics Copy linkLink copied to clipboard!
Use the metrics property to enable and configure Prometheus metrics.
The metrics property can also contain additional configuration for the Prometheus JMX exporter. AMQ Streams supports Prometheus metrics using Prometheus JMX exporter to convert the JMX metrics supported by Apache Kafka and ZooKeeper to Prometheus metrics.
To enable Prometheus metrics export without any further configuration, you can set it to an empty object ({}).
When metrics are enabled, they are exposed on port 9404.
When the metrics property is not defined in the resource, the Prometheus metrics are disabled.
For more information about setting up and deploying Prometheus and Grafana, see Introducing Metrics to Kafka.
3.4.2.13. JVM Options Copy linkLink copied to clipboard!
Use the jvmOptions property to configure supported options for the JVM on which the component is running.
Supported JVM options help to optimize performance for different platforms and architectures.
For more information on the supported options, see JVM configuration.
3.4.2.14. Container images Copy linkLink copied to clipboard!
Use the image property to configure the container image used by the component.
Overriding container images is recommended only in special situations where you need to use a different container registry or a customized image.
For example, if your network does not allow access to the container repository used by AMQ Streams, you can copy the AMQ Streams images or build them from the source. However, if the configured image is not compatible with AMQ Streams images, it might not work properly.
A copy of the container image might also be customized and used for debugging.
For more information see Container image configurations.
3.4.3. List of resources created as part of Kafka MirrorMaker Copy linkLink copied to clipboard!
The following resources are created by the Cluster Operator in the OpenShift cluster:
- <mirror-maker-name>-mirror-maker
- Deployment which is responsible for creating the Kafka MirrorMaker pods.
- <mirror-maker-name>-config
- ConfigMap which contains ancillary configuration for the the Kafka MirrorMaker, and is mounted as a volume by the Kafka broker pods.
- <mirror-maker-name>-mirror-maker
- Pod Disruption Budget configured for the Kafka MirrorMaker worker nodes.
3.5. Kafka MirrorMaker 2.0 configuration Copy linkLink copied to clipboard!
This section describes how to configure a Kafka MirrorMaker 2.0 deployment in your AMQ Streams cluster.
MirrorMaker 2.0 is used to replicate data between two or more active Kafka clusters, within or across data centers.
Data replication across clusters supports scenarios that require:
- Recovery of data in the event of a system failure
- Aggregation of data for analysis
- Restriction of data access to a specific cluster
- Provision of data at a specific location to improve latency
If you are using MirrorMaker 2.0, you configure the KafkaMirrorMaker2 resource.
MirrorMaker 2.0 introduces an entirely new way of replicating data between clusters.
As a result, the resource configuration differs from the previous version of MirrorMaker. If you choose to use MirrorMaker 2.0, there is currently no legacy support, so any resources must be manually converted into the new format.
How MirrorMaker 2.0 replicates data is described here:
The following procedure shows how the resource is configured for MirrorMaker 2.0:
The full schema of the KafkaMirrorMaker2 resource is described in the KafkaMirrorMaker2 schema reference.
3.5.1. MirrorMaker 2.0 data replication Copy linkLink copied to clipboard!
MirrorMaker 2.0 consumes messages from a source Kafka cluster and writes them to a target Kafka cluster.
MirrorMaker 2.0 uses:
- Source cluster configuration to consume data from the source cluster
- Target cluster configuration to output data to the target cluster
MirrorMaker 2.0 is based on the Kafka Connect framework, connectors managing the transfer of data between clusters. A MirrorMaker 2.0 MirrorSourceConnector replicates topics from a source cluster to a target cluster.
The process of mirroring data from one cluster to another cluster is asynchronous. The recommended pattern is for messages to be produced locally alongside the source Kafka cluster, then consumed remotely close to the target Kafka cluster.
MirrorMaker 2.0 can be used with more than one source cluster.
Figure 3.1. Replication across two clusters
3.5.2. Cluster configuration Copy linkLink copied to clipboard!
You can use MirrorMaker 2.0 in active/passive or active/active cluster configurations.
- In an active/passive configuration, the data from an active cluster is replicated in a passive cluster, which remains on standby, for example, for data recovery in the event of system failure.
- In an active/active configuration, both clusters are active and provide the same data simultaneously, which is useful if you want to make the same data available locally in different geographical locations.
The expectation is that producers and consumers connect to active clusters only.
3.5.2.1. Bidirectional replication Copy linkLink copied to clipboard!
The MirrorMaker 2.0 architecture supports bidirectional replication in an active/active cluster configuration. A MirrorMaker 2.0 cluster is required at each target destination.
Each cluster replicates the data of the other cluster using the concept of source and remote topics. As the same topics are stored in each cluster, remote topics are automatically renamed by MirrorMaker 2.0 to represent the source cluster.
Figure 3.2. Topic renaming
By flagging the originating cluster, topics are not replicated back to that cluster.
The concept of replication through remote topics is useful when configuring an architecture that requires data aggregation. Consumers can subscribe to source and remote topics within the same cluster, without the need for a separate aggregation cluster.
3.5.2.2. Topic configuration synchronization Copy linkLink copied to clipboard!
Topic configuration is automatically synchronized between source and target clusters. By synchronizing configuration properties, the need for rebalancing is reduced.
3.5.2.3. Data integrity Copy linkLink copied to clipboard!
MirrorMaker 2.0 monitors source topics and propagates any configuration changes to remote topics, checking for and creating missing partitions. Only MirrorMaker 2.0 can write to remote topics.
3.5.2.4. Offset tracking Copy linkLink copied to clipboard!
MirrorMaker 2.0 tracks offsets for consumer groups using internal topics.
- The offset sync topic maps the source and target offsets for replicated topic partitions from record metadata
- The checkpoint topic maps the last committed offset in the source and target cluster for replicated topic partitions in each consumer group
Offsets for the checkpoint topic are tracked at predetermined intervals through configuration. Both topics enable replication to be fully restored from the correct offset position on failover.
MirrorMaker 2.0 uses its MirrorCheckpointConnector to emit checkpoints for offset tracking.
3.5.2.5. Connectivity checks Copy linkLink copied to clipboard!
A heartbeat internal topic checks connectivity between clusters.
The heartbeat topic is replicated from the source cluster.
Target clusters use the topic to check:
- The connector managing connectivity between clusters is running
- The source cluster is available
MirrorMaker 2.0 uses its MirrorHeartbeatConnector to emit heartbeats that perform these checks.
3.5.3. ACL rules synchronization Copy linkLink copied to clipboard!
ACL access to remote topics is possible if you are not using the User Operator.
If SimpleAclAuthorizer is being used, without the User Operator, ACL rules that manage access to brokers also apply to remote topics. Users that can read a source topic can read its remote equivalent.
OAuth 2.0 authorization does not support access to remote topics in this way.
3.5.4. Synchronizing data between Kafka clusters using MirrorMaker 2.0 Copy linkLink copied to clipboard!
Use MirrorMaker 2.0 to synchronize data between Kafka clusters through configuration.
The configuration must specify:
- Each Kafka cluster
- Connection information for each cluster, including TLS authentication
The replication flow and direction
- Cluster to cluster
- Topic to topic
Use the properties of the KafkaMirrorMaker2 resource to configure your Kafka MirrorMaker 2.0 deployment.
The previous version of MirrorMaker continues to be supported. If you wish to use the resources configured for the previous version, they must be updated to the format supported by MirrorMaker 2.0.
MirrorMaker 2.0 provides default configuration values for properties such as replication factors. A minimal configuration, with defaults left unchanged, would be something like this example:
You can configure access control for source and target clusters using TLS or SASL authentication. This procedure shows a configuration that uses TLS encryption and authentication for the source and target cluster.
Prerequisites
- AMQ Streams and Kafka is deployed
- Source and target Kafka clusters are available
Procedure
Edit the
specproperties for theKafkaMirrorMaker2resource.The properties you can configure are shown in this example configuration:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- The Kafka Connect version.
- 2
- The number of replica nodes.
- 3
- The cluster alias for Kafka Connect.
- 4
- Specification for the Kafka clusters being synchronized.
- 5
- The cluster alias for the source Kafka cluster.
- 6
- Authentication for the source cluster, using the TLS mechanism, as shown here, using OAuth bearer tokens, or a SASL-based SCRAM-SHA-512 or PLAIN mechanism.
- 7
- Bootstrap server for connection to the source Kafka cluster.
- 8
- TLS encryption with key names under which TLS certificates are stored in X.509 format for the source Kafka cluster. For more details see
KafkaMirrorMaker2Tlsschema reference. - 9
- The cluster alias for the target Kafka cluster.
- 10
- Authentication for the target Kafka cluster is configured in the same way as for the source Kafka cluster.
- 11
- Bootstrap server for connection to the target Kafka cluster.
- 12
- Kafka Connect configuration. Standard Apache Kafka configuration may be provided, restricted to those properties not managed directly by AMQ Streams.
- 13
- 14
- TLS encryption for the target Kafka cluster is configured in the same way as for the source Kafka cluster.
- 15
- MirrorMaker 2.0 connectors.
- 16
- The alias of the source cluster used by the MirrorMaker 2.0 connectors.
- 17
- The alias of the target cluster used by the MirrorMaker 2.0 connectors.
- 18
- The configuration for the
MirrorSourceConnectorthat creates remote topics. Theconfigoverrides the default configuration options. - 19
- The replication factor for mirrored topics created at the target cluster.
- 20
- The replication factor for the
MirrorSourceConnectoroffset-syncsinternal topic that maps the offsets of the source and target clusters. - 21
- When enabled, ACLs are applied to synchronized topics. The default is
true. - 22
- The configuration for the
MirrorHeartbeatConnectorthat performs connectivity checks. Theconfigoverrides the default configuration options. - 23
- The replication factor for the heartbeat topic created at the target cluster.
- 24
- The configuration for the
MirrorCheckpointConnectorthat tracks offsets. Theconfigoverrides the default configuration options. - 25
- The replication factor for the checkpoints topic created at the target cluster.
- 26
- Topic replication from the source cluster defined as regular expression patterns. Here we request all topics.
- 27
- Consumer group replication from the source cluster defined as regular expression patterns. Here we request three consumer groups by name. You can use comma-separated lists.
- 28
- Requests for reservation of supported resources, currently
cpuandmemory, and limits to specify the maximum resources that can be consumed. - 29
- Specified loggers and log levels added directly (
inline) or indirectly (external) through a ConfigMap. A custom ConfigMap must be placed under thelog4j.propertiesorlog4j2.propertieskey. Kafka Connect has a single logger calledconnect.root.logger.level. You can set the log level to INFO, ERROR, WARN, TRACE, DEBUG, FATAL or OFF. - 30
- Healthchecks to know when to restart a container (liveness) and when a container can accept traffic (readiness).
- 31
- JVM configuration options to optimize performance for the Virtual Machine (VM) running Kafka MirrorMaker.
- 32
- ADVANCED OPTION: Container image configuration, which is recommended only in special situations.
- 33
- Template customization. Here a pod is scheduled based with anti-affinity, so the pod is not scheduled on nodes with the same hostname.
- 34
- Environment variables are also set for distributed tracing using Jaeger.
- 35
- 36
- OpenShift Secret mounted to Kafka MirrorMaker as an environment variable.
Create or update the resource:
oc apply -f <your-file>
oc apply -f <your-file>Copy to Clipboard Copied! Toggle word wrap Toggle overflow
3.6. Kafka Bridge configuration Copy linkLink copied to clipboard!
The full schema of the KafkaBridge resource is described in the Section B.115, “KafkaBridge schema reference”. All labels that are applied to the desired KafkaBridge resource will also be applied to the OpenShift resources making up the Kafka Bridge cluster. This provides a convenient mechanism for resources to be labeled as required.
3.6.1. Replicas Copy linkLink copied to clipboard!
Kafka Bridge can run multiple nodes. The number of nodes is defined in the KafkaBridge resource. Running a Kafka Bridge with multiple nodes can provide better availability and scalability. However, when running Kafka Bridge on OpenShift it is not absolutely necessary to run multiple nodes of Kafka Bridge for high availability.
If a node where Kafka Bridge is deployed to crashes, OpenShift will automatically reschedule the Kafka Bridge pod to a different node. In order to prevent issues arising when client consumer requests are processed by different Kafka Bridge instances, addressed-based routing must be employed to ensure that requests are routed to the right Kafka Bridge instance. Additionally, each independent Kafka Bridge instance must have a replica. A Kafka Bridge instance has its own state which is not shared with another instances.
3.6.1.1. Configuring the number of nodes Copy linkLink copied to clipboard!
The number of Kafka Bridge nodes is configured using the replicas property in KafkaBridge.spec.
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
replicasproperty in theKafkaBridgeresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.6.2. Bootstrap servers Copy linkLink copied to clipboard!
A Kafka Bridge always works in combination with a Kafka cluster. A Kafka cluster is specified as a list of bootstrap servers. On OpenShift, the list must ideally contain the Kafka cluster bootstrap service named cluster-name-kafka-bootstrap, and a port of 9092 for plain traffic or 9093 for encrypted traffic.
The list of bootstrap servers is configured in the bootstrapServers property in KafkaBridge.kafka.spec. The servers must be defined as a comma-separated list specifying one or more Kafka brokers, or a service pointing to Kafka brokers specified as a hostname:_port_ pairs.
When using Kafka Bridge with a Kafka cluster not managed by AMQ Streams, you can specify the bootstrap servers list according to the configuration of the cluster.
3.6.2.1. Configuring bootstrap servers Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
bootstrapServersproperty in theKafkaBridgeresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.6.3. Connecting to Kafka brokers using TLS Copy linkLink copied to clipboard!
By default, Kafka Bridge tries to connect to Kafka brokers using a plain text connection. If you prefer to use TLS, additional configuration is required.
3.6.3.1. TLS support for Kafka connection to the Kafka Bridge Copy linkLink copied to clipboard!
TLS support for Kafka connection is configured in the tls property in KafkaBridge.spec. The tls property contains a list of secrets with key names under which the certificates are stored. The certificates must be stored in X509 format.
An example showing TLS configuration with multiple certificates
When multiple certificates are stored in the same secret, it can be listed multiple times.
An example showing TLS configuration with multiple certificates from the same secret
3.6.3.2. Configuring TLS in Kafka Bridge Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
-
If they exist, the name of the
Secretfor the certificate used for TLS Server Authentication, and the key under which the certificate is stored in theSecret
Procedure
(Optional) If they do not already exist, prepare the TLS certificate used in authentication in a file and create a
Secret.NoteThe secrets created by the Cluster Operator for Kafka cluster may be used directly.
oc create secret generic my-secret --from-file=my-file.crt
oc create secret generic my-secret --from-file=my-file.crtCopy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
tlsproperty in theKafkaBridgeresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.6.4. Connecting to Kafka brokers with Authentication Copy linkLink copied to clipboard!
By default, Kafka Bridge will try to connect to Kafka brokers without authentication. Authentication is enabled through the KafkaBridge resources.
3.6.4.1. Authentication support in Kafka Bridge Copy linkLink copied to clipboard!
Authentication is configured through the authentication property in KafkaBridge.spec. The authentication property specifies the type of the authentication mechanisms which should be used and additional configuration details depending on the mechanism. The currently supported authentication types are:
- TLS client authentication
- SASL-based authentication using the SCRAM-SHA-512 mechanism
- SASL-based authentication using the PLAIN mechanism
- OAuth 2.0 token based authentication
3.6.4.1.1. TLS Client Authentication Copy linkLink copied to clipboard!
To use TLS client authentication, set the type property to the value tls. TLS client authentication uses a TLS certificate to authenticate. The certificate is specified in the certificateAndKey property and is always loaded from an OpenShift secret. In the secret, the certificate must be stored in X509 format under two different keys: public and private.
TLS client authentication can be used only with TLS connections. For more details about TLS configuration in Kafka Bridge see Section 3.6.3, “Connecting to Kafka brokers using TLS”.
An example TLS client authentication configuration
3.6.4.1.2. SCRAM-SHA-512 authentication Copy linkLink copied to clipboard!
To configure Kafka Bridge to use SASL-based SCRAM-SHA-512 authentication, set the type property to scram-sha-512. This authentication mechanism requires a username and password.
-
Specify the username in the
usernameproperty. -
In the
passwordSecretproperty, specify a link to aSecretcontaining the password. ThesecretNameproperty contains the name of theSecretand thepasswordproperty contains the name of the key under which the password is stored inside theSecret.
Do not specify the actual password in the password field.
An example SASL based SCRAM-SHA-512 client authentication configuration
3.6.4.1.3. SASL-based PLAIN authentication Copy linkLink copied to clipboard!
To configure Kafka Bridge to use SASL-based PLAIN authentication, set the type property to plain. This authentication mechanism requires a username and password.
The SASL PLAIN mechanism will transfer the username and password across the network in cleartext. Only use SASL PLAIN authentication if TLS encryption is enabled.
-
Specify the username in the
usernameproperty. -
In the
passwordSecretproperty, specify a link to aSecretcontaining the password. ThesecretNameproperty contains the name theSecretand thepasswordproperty contains the name of the key under which the password is stored inside theSecret.
Do not specify the actual password in the password field.
An example showing SASL based PLAIN client authentication configuration
3.6.4.2. Configuring TLS client authentication in Kafka Bridge Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
-
If they exist, the name of the
Secretwith the public and private keys used for TLS Client Authentication, and the keys under which they are stored in theSecret
Procedure
(Optional) If they do not already exist, prepare the keys used for authentication in a file and create the
Secret.NoteSecrets created by the User Operator may be used.
oc create secret generic my-secret --from-file=my-public.crt --from-file=my-private.key
oc create secret generic my-secret --from-file=my-public.crt --from-file=my-private.keyCopy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
authenticationproperty in theKafkaBridgeresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.6.4.3. Configuring SCRAM-SHA-512 authentication in Kafka Bridge Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
- Username of the user which should be used for authentication
-
If they exist, the name of the
Secretwith the password used for authentication and the key under which the password is stored in theSecret
Procedure
(Optional) If they do not already exist, prepare a file with the password used in authentication and create the
Secret.NoteSecrets created by the User Operator may be used.
echo -n '<password>' > <my-password.txt> oc create secret generic <my-secret> --from-file=<my-password.txt>
echo -n '<password>' > <my-password.txt> oc create secret generic <my-secret> --from-file=<my-password.txt>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
authenticationproperty in theKafkaBridgeresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.6.5. Kafka Bridge configuration Copy linkLink copied to clipboard!
AMQ Streams allows you to customize the configuration of Apache Kafka Bridge nodes by editing certain options listed in Apache Kafka configuration documentation for consumers and Apache Kafka configuration documentation for producers.
Configuration options that can be configured relate to:
- Kafka cluster bootstrap address
- Security (Encryption, Authentication, and Authorization)
- Consumer configuration
- Producer configuration
- HTTP configuration
3.6.5.1. Kafka Bridge Consumer configuration Copy linkLink copied to clipboard!
Kafka Bridge consumer is configured using the properties in KafkaBridge.spec.consumer. This property contains the Kafka Bridge consumer configuration options as keys. The values can be one of the following JSON types:
- String
- Number
- Boolean
Users can specify and configure the options listed in the Apache Kafka configuration documentation for consumers with the exception of those options which are managed directly by AMQ Streams. Specifically, all configuration options with keys equal to or starting with one of the following strings are forbidden:
-
ssl. -
sasl. -
security. -
bootstrap.servers -
group.id
When one of the forbidden options is present in the config property, it will be ignored and a warning message will be printed to the Cluster Operator log file. All other options will be passed to Kafka
The Cluster Operator does not validate keys or values in the config object provided. When an invalid configuration is provided, the Kafka Bridge cluster might not start or might become unstable. In this circumstance, fix the configuration in the KafkaBridge.spec.consumer.config object, then the Cluster Operator can roll out the new configuration to all Kafka Bridge nodes.
Use the three allowed ssl configuration options to run external listeners with a specific cipher suite for a TLS version. A cipher suite combines algorithms for secure connection and data transfer.
Example Kafka Bridge consumer configuration
- 1
- The cipher suite for TLS using a combination of
ECDHEkey exchange mechanism,RSAauthentication algorithm,AESbulk encyption algorithm andSHA384MAC algorithm. - 2
- The SSl protocol
TLSv1.2is enabled. - 3
- Specifies the
TLSv1.2protocol to generate the SSL context. Allowed values areTLSv1.1andTLSv1.2.
3.6.5.2. Kafka Bridge Producer configuration Copy linkLink copied to clipboard!
Kafka Bridge producer is configured using the properties in KafkaBridge.spec.producer. This property contains the Kafka Bridge producer configuration options as keys. The values can be one of the following JSON types:
- String
- Number
- Boolean
Users can specify and configure the options listed in the Apache Kafka configuration documentation for producers with the exception of those options which are managed directly by AMQ Streams. Specifically, all configuration options with keys equal to or starting with one of the following strings are forbidden:
-
ssl. -
sasl. -
security. -
bootstrap.servers
The Cluster Operator does not validate keys or values in the config object provided. When an invalid configuration is provided, the Kafka Bridge cluster might not start or might become unstable. In this circumstance, fix the configuration in the KafkaBridge.spec.producer.config object, then the Cluster Operator can roll out the new configuration to all Kafka Bridge nodes.
Use the three allowed ssl configuration options to run external listeners with a specific cipher suite for a TLS version. A cipher suite combines algorithms for secure connection and data transfer.
Example Kafka Bridge producer configuration
- 1
- The cipher suite for TLS using a combination of
ECDHEkey exchange mechanism,RSAauthentication algorithm,AESbulk encyption algorithm andSHA384MAC algorithm. - 2
- The SSl protocol
TLSv1.2is enabled. - 3
- Specifies the
TLSv1.2protocol to generate the SSL context. Allowed values areTLSv1.1andTLSv1.2.
3.6.5.3. Kafka Bridge HTTP configuration Copy linkLink copied to clipboard!
Kafka Bridge HTTP configuration is set using the properties in KafkaBridge.spec.http.
As well as enabling HTTP access to a Kafka cluster, HTTP properties provide the capability to enable and define access control for the Kafka Bridge through Cross-Origin Resource Sharing (CORS). CORS is a HTTP mechanism that allows browser access to selected resources from more than one origin. To configure CORS, you define a list of allowed resource origins and HTTP methods to access them. Additional HTTP headers in requests describe the origins that are permitted access to the Kafka cluster.
Example Kafka Bridge HTTP configuration
3.6.5.4. Configuring Kafka Bridge Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
kafka,http,consumerorproducerproperty in theKafkaBridgeresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.6.6. CPU and memory resources Copy linkLink copied to clipboard!
For every deployed container, AMQ Streams allows you to request specific resources and define the maximum consumption of those resources.
AMQ Streams supports two types of resources:
- CPU
- Memory
AMQ Streams uses the OpenShift syntax for specifying CPU and memory resources.
3.6.6.1. Resource limits and requests Copy linkLink copied to clipboard!
Resource limits and requests are configured using the resources property in the following resources:
-
Kafka.spec.kafka -
Kafka.spec.kafka.tlsSidecar -
Kafka.spec.zookeeper -
Kafka.spec.entityOperator.topicOperator -
Kafka.spec.entityOperator.userOperator -
Kafka.spec.entityOperator.tlsSidecar -
Kafka.spec.KafkaExporter -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaBridge.spec
Additional resources
- For more information about managing computing resources on OpenShift, see Managing Compute Resources for Containers.
3.6.6.1.1. Resource requests Copy linkLink copied to clipboard!
Requests specify the resources to reserve for a given container. Reserving the resources ensures that they are always available.
If the resource request is for more than the available free resources in the OpenShift cluster, the pod is not scheduled.
Resources requests are specified in the requests property. Resources requests currently supported by AMQ Streams:
-
cpu -
memory
A request may be configured for one or more supported resources.
Example resource request configuration with all resources
3.6.6.1.2. Resource limits Copy linkLink copied to clipboard!
Limits specify the maximum resources that can be consumed by a given container. The limit is not reserved and might not always be available. A container can use the resources up to the limit only when they are available. Resource limits should be always higher than the resource requests.
Resource limits are specified in the limits property. Resource limits currently supported by AMQ Streams:
-
cpu -
memory
A resource may be configured for one or more supported limits.
Example resource limits configuration
3.6.6.1.3. Supported CPU formats Copy linkLink copied to clipboard!
CPU requests and limits are supported in the following formats:
-
Number of CPU cores as integer (
5CPU core) or decimal (2.5CPU core). -
Number or millicpus / millicores (
100m) where 1000 millicores is the same1CPU core.
Example CPU units
The computing power of 1 CPU core may differ depending on the platform where OpenShift is deployed.
Additional resources
- For more information on CPU specification, see the Meaning of CPU.
3.6.6.1.4. Supported memory formats Copy linkLink copied to clipboard!
Memory requests and limits are specified in megabytes, gigabytes, mebibytes, and gibibytes.
-
To specify memory in megabytes, use the
Msuffix. For example1000M. -
To specify memory in gigabytes, use the
Gsuffix. For example1G. -
To specify memory in mebibytes, use the
Misuffix. For example1000Mi. -
To specify memory in gibibytes, use the
Gisuffix. For example1Gi.
An example of using different memory units
Additional resources
- For more details about memory specification and additional supported units, see Meaning of memory.
3.6.6.2. Configuring resource requests and limits Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
resourcesproperty in the resource specifying the cluster deployment. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
- For more information about the schema, see {K8sResourceRequirementsAPI}.
3.6.7. Kafka Bridge loggers Copy linkLink copied to clipboard!
Kafka Bridge has its own configurable loggers:
-
log4j.logger.io.strimzi.kafka.bridge -
log4j.logger.http.openapi.operation.<operation-id>
You can replace <operation-id> in the log4j.logger.http.openapi.operation.<operation-id> logger to set log levels for specific operations:
-
createConsumer -
deleteConsumer -
subscribe -
unsubscribe -
poll -
assign -
commit -
send -
sendToPartition -
seekToBeginning -
seekToEnd -
seek -
healthy -
ready -
openapi
Each operation is defined according OpenAPI specification, and has a corresponding API endpoint through which the bridge receives requests from HTTP clients. You can change the log level on each endpoint to create fine-grained logging information about the incoming and outgoing HTTP requests.
Kafka Bridge uses the Apache log4j logger implementation. Loggers are defined in the log4j.properties file, which has the following default configuration for healthy and ready endpoints:
log4j.logger.http.openapi.operation.healthy=WARN, out log4j.additivity.http.openapi.operation.healthy=false log4j.logger.http.openapi.operation.ready=WARN, out log4j.additivity.http.openapi.operation.ready=false
log4j.logger.http.openapi.operation.healthy=WARN, out
log4j.additivity.http.openapi.operation.healthy=false
log4j.logger.http.openapi.operation.ready=WARN, out
log4j.additivity.http.openapi.operation.ready=false
The log level of all other operations is set to INFO by default.
Use the logging property to configure loggers and logger levels.
You can set the log levels by specifying the logger and level directly (inline) or use a custom (external) ConfigMap. If a ConfigMap is used, you set logging.name property to the name of the ConfigMap containing the external logging configuration. Inside the ConfigMap, the logging configuration is described using log4j.properties.
Here we see examples of inline and external logging.
Inline logging
External logging
Additional resources
- Garbage collector (GC) logging can also be enabled (or disabled). For more information about GC logging, see Section 3.1.18.1, “JVM configuration”
- For more information about log levels, see Apache logging services.
3.6.8. JVM Options Copy linkLink copied to clipboard!
The following components of AMQ Streams run inside a Virtual Machine (VM):
- Apache Kafka
- Apache ZooKeeper
- Apache Kafka Connect
- Apache Kafka MirrorMaker
- AMQ Streams Kafka Bridge
JVM configuration options optimize the performance for different platforms and architectures. AMQ Streams allows you to configure some of these options.
3.6.8.1. JVM configuration Copy linkLink copied to clipboard!
JVM options can be configured using the jvmOptions property in following resources:
-
Kafka.spec.kafka -
Kafka.spec.zookeeper -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaMirrorMaker.spec -
KafkaBridge.spec
Only a selected subset of available JVM options can be configured. The following options are supported:
-Xms and -Xmx
-Xms configures the minimum initial allocation heap size when the JVM starts. -Xmx configures the maximum heap size.
The units accepted by JVM settings such as -Xmx and -Xms are those accepted by the JDK java binary in the corresponding image. Accordingly, 1g or 1G means 1,073,741,824 bytes, and Gi is not a valid unit suffix. This is in contrast to the units used for memory requests and limits, which follow the OpenShift convention where 1G means 1,000,000,000 bytes, and 1Gi means 1,073,741,824 bytes
The default values used for -Xms and -Xmx depends on whether there is a memory request limit configured for the container:
- If there is a memory limit then the JVM’s minimum and maximum memory will be set to a value corresponding to the limit.
-
If there is no memory limit then the JVM’s minimum memory will be set to
128Mand the JVM’s maximum memory will not be defined. This allows for the JVM’s memory to grow as-needed, which is ideal for single node environments in test and development.
Setting -Xmx explicitly requires some care:
-
The JVM’s overall memory usage will be approximately 4 × the maximum heap, as configured by
-Xmx. -
If
-Xmxis set without also setting an appropriate OpenShift memory limit, it is possible that the container will be killed should the OpenShift node experience memory pressure (from other Pods running on it). -
If
-Xmxis set without also setting an appropriate OpenShift memory request, it is possible that the container will be scheduled to a node with insufficient memory. In this case, the container will not start but crash (immediately if-Xmsis set to-Xmx, or some later time if not).
When setting -Xmx explicitly, it is recommended to:
- set the memory request and the memory limit to the same value,
-
use a memory request that is at least 4.5 × the
-Xmx, -
consider setting
-Xmsto the same value as-Xmx.
Containers doing lots of disk I/O (such as Kafka broker containers) will need to leave some memory available for use as operating system page cache. On such containers, the requested memory should be significantly higher than the memory used by the JVM.
Example fragment configuring -Xmx and -Xms
# ... jvmOptions: "-Xmx": "2g" "-Xms": "2g" # ...
# ...
jvmOptions:
"-Xmx": "2g"
"-Xms": "2g"
# ...
In the above example, the JVM will use 2 GiB (=2,147,483,648 bytes) for its heap. Its total memory usage will be approximately 8GiB.
Setting the same value for initial (-Xms) and maximum (-Xmx) heap sizes avoids the JVM having to allocate memory after startup, at the cost of possibly allocating more heap than is really needed. For Kafka and ZooKeeper pods such allocation could cause unwanted latency. For Kafka Connect avoiding over allocation may be the most important concern, especially in distributed mode where the effects of over-allocation will be multiplied by the number of consumers.
-server
-server enables the server JVM. This option can be set to true or false.
Example fragment configuring -server
# ... jvmOptions: "-server": true # ...
# ...
jvmOptions:
"-server": true
# ...
When neither of the two options (-server and -XX) is specified, the default Apache Kafka configuration of KAFKA_JVM_PERFORMANCE_OPTS will be used.
-XX
-XX object can be used for configuring advanced runtime options of a JVM. The -server and -XX options are used to configure the KAFKA_JVM_PERFORMANCE_OPTS option of Apache Kafka.
Example showing the use of the -XX object
The example configuration above will result in the following JVM options:
-XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:-UseParNewGC
-XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:-UseParNewGC
When neither of the two options (-server and -XX) is specified, the default Apache Kafka configuration of KAFKA_JVM_PERFORMANCE_OPTS will be used.
3.6.8.1.1. Garbage collector logging Copy linkLink copied to clipboard!
The jvmOptions section also allows you to enable and disable garbage collector (GC) logging. GC logging is disabled by default. To enable it, set the gcLoggingEnabled property as follows:
Example of enabling GC logging
# ... jvmOptions: gcLoggingEnabled: true # ...
# ...
jvmOptions:
gcLoggingEnabled: true
# ...
3.6.8.2. Configuring JVM options Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
jvmOptionsproperty in theKafka,KafkaConnect,KafkaConnectS2I,KafkaMirrorMaker, orKafkaBridgeresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.6.9. Healthchecks Copy linkLink copied to clipboard!
Healthchecks are periodical tests which verify the health of an application. When a Healthcheck probe fails, OpenShift assumes that the application is not healthy and attempts to fix it.
OpenShift supports two types of Healthcheck probes:
- Liveness probes
- Readiness probes
For more details about the probes, see Configure Liveness and Readiness Probes. Both types of probes are used in AMQ Streams components.
Users can configure selected options for liveness and readiness probes.
3.6.9.1. Healthcheck configurations Copy linkLink copied to clipboard!
Liveness and readiness probes can be configured using the livenessProbe and readinessProbe properties in following resources:
-
Kafka.spec.kafka -
Kafka.spec.kafka.tlsSidecar -
Kafka.spec.zookeeper -
Kafka.spec.entityOperator.tlsSidecar -
Kafka.spec.entityOperator.topicOperator -
Kafka.spec.entityOperator.userOperator -
Kafka.spec.KafkaExporter -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaMirrorMaker.spec -
KafkaBridge.spec
Both livenessProbe and readinessProbe support the following options:
-
initialDelaySeconds -
timeoutSeconds -
periodSeconds -
successThreshold -
failureThreshold
For more information about the livenessProbe and readinessProbe options, see Section B.40, “Probe schema reference”.
An example of liveness and readiness probe configuration
3.6.9.2. Configuring healthchecks Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
livenessProbeorreadinessProbeproperty in theKafka,KafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.6.10. Container images Copy linkLink copied to clipboard!
AMQ Streams allows you to configure container images which will be used for its components. Overriding container images is recommended only in special situations, where you need to use a different container registry. For example, because your network does not allow access to the container repository used by AMQ Streams. In such a case, you should either copy the AMQ Streams images or build them from the source. If the configured image is not compatible with AMQ Streams images, it might not work properly.
3.6.10.1. Container image configurations Copy linkLink copied to clipboard!
You can specify which container image to use for each component using the image property in the following resources:
-
Kafka.spec.kafka -
Kafka.spec.kafka.tlsSidecar -
Kafka.spec.zookeeper -
Kafka.spec.entityOperator.topicOperator -
Kafka.spec.entityOperator.userOperator -
Kafka.spec.entityOperator.tlsSidecar -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaBridge.spec
3.6.10.1.1. Configuring the image property for Kafka, Kafka Connect, and Kafka MirrorMaker Copy linkLink copied to clipboard!
Kafka, Kafka Connect (including Kafka Connect with S2I support), and Kafka MirrorMaker support multiple versions of Kafka. Each component requires its own image. The default images for the different Kafka versions are configured in the following environment variables:
-
STRIMZI_KAFKA_IMAGES -
STRIMZI_KAFKA_CONNECT_IMAGES -
STRIMZI_KAFKA_CONNECT_S2I_IMAGES -
STRIMZI_KAFKA_MIRROR_MAKER_IMAGES
These environment variables contain mappings between the Kafka versions and their corresponding images. The mappings are used together with the image and version properties:
-
If neither
imagenorversionare given in the custom resource then theversionwill default to the Cluster Operator’s default Kafka version, and the image will be the one corresponding to this version in the environment variable. -
If
imageis given butversionis not, then the given image is used and theversionis assumed to be the Cluster Operator’s default Kafka version. -
If
versionis given butimageis not, then the image that corresponds to the given version in the environment variable is used. -
If both
versionandimageare given, then the given image is used. The image is assumed to contain a Kafka image with the given version.
The image and version for the different components can be configured in the following properties:
-
For Kafka in
spec.kafka.imageandspec.kafka.version. -
For Kafka Connect, Kafka Connect S2I, and Kafka MirrorMaker in
spec.imageandspec.version.
It is recommended to provide only the version and leave the image property unspecified. This reduces the chance of making a mistake when configuring the custom resource. If you need to change the images used for different versions of Kafka, it is preferable to configure the Cluster Operator’s environment variables.
3.6.10.1.2. Configuring the image property in other resources Copy linkLink copied to clipboard!
For the image property in the other custom resources, the given value will be used during deployment. If the image property is missing, the image specified in the Cluster Operator configuration will be used. If the image name is not defined in the Cluster Operator configuration, then the default value will be used.
For Kafka broker TLS sidecar:
-
Container image specified in the
STRIMZI_DEFAULT_TLS_SIDECAR_KAFKA_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0container image.
-
Container image specified in the
For Topic Operator:
-
Container image specified in the
STRIMZI_DEFAULT_TOPIC_OPERATOR_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0container image.
-
Container image specified in the
For User Operator:
-
Container image specified in the
STRIMZI_DEFAULT_USER_OPERATOR_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0container image.
-
Container image specified in the
For Entity Operator TLS sidecar:
-
Container image specified in the
STRIMZI_DEFAULT_TLS_SIDECAR_ENTITY_OPERATOR_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0container image.
-
Container image specified in the
For Kafka Exporter:
-
Container image specified in the
STRIMZI_DEFAULT_KAFKA_EXPORTER_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0container image.
-
Container image specified in the
For Kafka Bridge:
-
Container image specified in the
STRIMZI_DEFAULT_KAFKA_BRIDGE_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-bridge-rhel7:1.5.0container image.
-
Container image specified in the
For Kafka broker initializer:
-
Container image specified in the
STRIMZI_DEFAULT_KAFKA_INIT_IMAGEenvironment variable from the Cluster Operator configuration. -
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0container image.
-
Container image specified in the
Overriding container images is recommended only in special situations, where you need to use a different container registry. For example, because your network does not allow access to the container repository used by AMQ Streams. In such case, you should either copy the AMQ Streams images or build them from source. In case the configured image is not compatible with AMQ Streams images, it might not work properly.
Example of container image configuration
3.6.10.2. Configuring container images Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
imageproperty in theKafka,KafkaConnectorKafkaConnectS2Iresource. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.6.11. Configuring pod scheduling Copy linkLink copied to clipboard!
When two applications are scheduled to the same OpenShift node, both applications might use the same resources like disk I/O and impact performance. That can lead to performance degradation. Scheduling Kafka pods in a way that avoids sharing nodes with other critical workloads, using the right nodes or dedicated a set of nodes only for Kafka are the best ways how to avoid such problems.
3.6.11.1. Scheduling pods based on other applications Copy linkLink copied to clipboard!
3.6.11.1.1. Avoid critical applications to share the node Copy linkLink copied to clipboard!
Pod anti-affinity can be used to ensure that critical applications are never scheduled on the same disk. When running Kafka cluster, it is recommended to use pod anti-affinity to ensure that the Kafka brokers do not share the nodes with other workloads like databases.
3.6.11.1.2. Affinity Copy linkLink copied to clipboard!
Affinity can be configured using the affinity property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The affinity configuration can include different types of affinity:
- Pod affinity and anti-affinity
- Node affinity
The format of the affinity property follows the OpenShift specification. For more details, see the Kubernetes node and pod affinity documentation.
3.6.11.1.3. Configuring pod anti-affinity in Kafka components Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
affinityproperty in the resource specifying the cluster deployment. Use labels to specify the pods which should not be scheduled on the same nodes. ThetopologyKeyshould be set tokubernetes.io/hostnameto specify that the selected pods should not be scheduled on nodes with the same hostname. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.6.11.2. Scheduling pods to specific nodes Copy linkLink copied to clipboard!
3.6.11.2.1. Node scheduling Copy linkLink copied to clipboard!
The OpenShift cluster usually consists of many different types of worker nodes. Some are optimized for CPU heavy workloads, some for memory, while other might be optimized for storage (fast local SSDs) or network. Using different nodes helps to optimize both costs and performance. To achieve the best possible performance, it is important to allow scheduling of AMQ Streams components to use the right nodes.
OpenShift uses node affinity to schedule workloads onto specific nodes. Node affinity allows you to create a scheduling constraint for the node on which the pod will be scheduled. The constraint is specified as a label selector. You can specify the label using either the built-in node label like beta.kubernetes.io/instance-type or custom labels to select the right node.
3.6.11.2.2. Affinity Copy linkLink copied to clipboard!
Affinity can be configured using the affinity property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The affinity configuration can include different types of affinity:
- Pod affinity and anti-affinity
- Node affinity
The format of the affinity property follows the OpenShift specification. For more details, see the Kubernetes node and pod affinity documentation.
3.6.11.2.3. Configuring node affinity in Kafka components Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Label the nodes where AMQ Streams components should be scheduled.
This can be done using
oc label:oc label node your-node node-type=fast-network
oc label node your-node node-type=fast-networkCopy to Clipboard Copied! Toggle word wrap Toggle overflow Alternatively, some of the existing labels might be reused.
Edit the
affinityproperty in the resource specifying the cluster deployment. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.6.11.3. Using dedicated nodes Copy linkLink copied to clipboard!
3.6.11.3.1. Dedicated nodes Copy linkLink copied to clipboard!
Cluster administrators can mark selected OpenShift nodes as tainted. Nodes with taints are excluded from regular scheduling and normal pods will not be scheduled to run on them. Only services which can tolerate the taint set on the node can be scheduled on it. The only other services running on such nodes will be system services such as log collectors or software defined networks.
Taints can be used to create dedicated nodes. Running Kafka and its components on dedicated nodes can have many advantages. There will be no other applications running on the same nodes which could cause disturbance or consume the resources needed for Kafka. That can lead to improved performance and stability.
To schedule Kafka pods on the dedicated nodes, configure node affinity and tolerations.
3.6.11.3.2. Affinity Copy linkLink copied to clipboard!
Affinity can be configured using the affinity property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The affinity configuration can include different types of affinity:
- Pod affinity and anti-affinity
- Node affinity
The format of the affinity property follows the OpenShift specification. For more details, see the Kubernetes node and pod affinity documentation.
3.6.11.3.3. Tolerations Copy linkLink copied to clipboard!
Tolerations can be configured using the tolerations property in following resources:
-
Kafka.spec.kafka.template.pod -
Kafka.spec.zookeeper.template.pod -
Kafka.spec.entityOperator.template.pod -
KafkaConnect.spec.template.pod -
KafkaConnectS2I.spec.template.pod -
KafkaBridge.spec.template.pod
The format of the tolerations property follows the OpenShift specification. For more details, see the Kubernetes taints and tolerations.
3.6.11.3.4. Setting up dedicated nodes and scheduling pods on them Copy linkLink copied to clipboard!
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
- Select the nodes which should be used as dedicated.
- Make sure there are no workloads scheduled on these nodes.
Set the taints on the selected nodes:
This can be done using
oc adm taint:oc adm taint node your-node dedicated=Kafka:NoSchedule
oc adm taint node your-node dedicated=Kafka:NoScheduleCopy to Clipboard Copied! Toggle word wrap Toggle overflow Additionally, add a label to the selected nodes as well.
This can be done using
oc label:oc label node your-node dedicated=Kafka
oc label node your-node dedicated=KafkaCopy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
affinityandtolerationsproperties in the resource specifying the cluster deployment. For example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
This can be done using
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.6.12. List of resources created as part of Kafka Bridge cluster Copy linkLink copied to clipboard!
The following resources are created by the Cluster Operator in the OpenShift cluster:
- bridge-cluster-name-bridge
- Deployment which is in charge to create the Kafka Bridge worker node pods.
- bridge-cluster-name-bridge-service
- Service which exposes the REST interface of the Kafka Bridge cluster.
- bridge-cluster-name-bridge-config
- ConfigMap which contains the Kafka Bridge ancillary configuration and is mounted as a volume by the Kafka broker pods.
- bridge-cluster-name-bridge
- Pod Disruption Budget configured for the Kafka Bridge worker nodes.
3.7. Using OAuth 2.0 token-based authentication Copy linkLink copied to clipboard!
AMQ Streams supports the use of OAuth 2.0 authentication using the SASL OAUTHBEARER mechanism.
OAuth 2.0 enables standardized token-based authentication and authorization between applications, using a central authorization server to issue tokens that grant limited access to resources.
You can configure OAuth 2.0 authentication, then OAuth 2.0 authorization. OAuth 2.0 authentication can also be used in conjunction with ACL-based Kafka authorization regardless of the authorization server used.
Using OAuth 2.0 token-based authentication, application clients can access resources on application servers (called resource servers) without exposing account credentials.
The application client passes an access token as a means of authenticating, which application servers can also use to determine the level of access to grant. The authorization server handles the granting of access and inquiries about access.
In the context of AMQ Streams:
- Kafka brokers act as OAuth 2.0 resource servers
- Kafka clients act as OAuth 2.0 application clients
Kafka clients authenticate to Kafka brokers. The brokers and clients communicate with the OAuth 2.0 authorization server, as necessary, to obtain or validate access tokens.
For a deployment of AMQ Streams, OAuth 2.0 integration provides:
- Server-side OAuth 2.0 support for Kafka brokers
- Client-side OAuth 2.0 support for Kafka Mirror Maker, Kafka Connect and the Kafka Bridge
Additional resources
3.7.1. OAuth 2.0 authentication mechanism Copy linkLink copied to clipboard!
The Kafka SASL OAUTHBEARER mechanism is used to establish authenticated sessions with a Kafka broker.
A Kafka client initiates a session with the Kafka broker using the SASL OAUTHBEARER mechanism for credentials exchange, where credentials take the form of an access token.
Kafka brokers and clients need to be configured to use OAuth 2.0.
3.7.2. OAuth 2.0 Kafka broker configuration Copy linkLink copied to clipboard!
Kafka broker configuration for OAuth 2.0 involves:
- Creating the OAuth 2.0 client in the authorization server
- Configuring OAuth 2.0 authentication in the Kafka custom resource
In relation to the authorization server, Kafka brokers and Kafka clients are both regarded as OAuth 2.0 clients.
3.7.2.1. OAuth 2.0 client configuration on an authorization server Copy linkLink copied to clipboard!
To configure a Kafka broker to validate the token received during session initiation, the recommended approach is to create an OAuth 2.0 client definition in an authorization server, configured as confidential, with the following client credentials enabled:
-
Client ID of
kafka(for example) - Client ID and Secret as the authentication mechanism
You only need to use a client ID and secret when using a non-public introspection endpoint of the authorization server. The credentials are not typically required when using public authorization server endpoints, as with fast local JWT token validation.
3.7.2.2. OAuth 2.0 authentication configuration in the Kafka cluster Copy linkLink copied to clipboard!
To use OAuth 2.0 authentication in the Kafka cluster, you specify for example a TLS listener configuration for your Kafka cluster custom resource with the authentication method oauth:
Assigining the authentication method type for OAuth 2.0
You can configure plain, tls and external listeners, as described in Kafka broker listeners, but it is recommended not to use plain listeners or external listeners with disabled TLS encryption with OAuth 2.0 as this creates a vulnerability to network eavesdropping and unauthorized access through token theft.
You configure an external listener with type: oauth for a secure transport layer to communicate with the client.
Using OAuth 2.0 with an external listener
The tls property is true by default, so it can be left out.
When you’ve defined the type of authentication as OAuth 2.0, you add configuration based on the type of validation, either as fast local JWT validation or token validation using an introspection endpoint.
The procedure to configure OAuth 2.0 for listeners, with descriptions and examples, is described in Configuring OAuth 2.0 support for Kafka brokers.
3.7.2.3. Fast local JWT token validation configuration Copy linkLink copied to clipboard!
Fast local JWT token validation checks a JWT token signature locally.
The local check ensures that a token:
-
Conforms to type by containing a (typ) claim value of
Bearerfor an access token - Is valid (not expired)
-
Has an issuer that matches a
validIssuerURI
You specify a validIssuerUrI attribute when you configure the listener, so that any tokens not issued by the authorization server are rejected.
The authorization server does not need to be contacted during fast local JWT token validation. You activate fast local JWT token validation by specifying a jwksEndpointUri attribute, the endpoint exposed by the OAuth 2.0 authorization server. The endpoint contains the public keys used to validate signed JWT tokens, which are sent as credentials by Kafka clients.
All communication with the authorization server should be performed using TLS encryption.
You can configure a certificate truststore as an OpenShift Secret in your AMQ Streams project namespace, and use a tlsTrustedCertificates attribute to point to the OpenShift Secret containing the truststore file.
You might want to configure a userNameClaim to properly extract a username from the JWT token. If you want to use Kafka ACL authorization, you need to identify the user by their username during authentication. (The sub claim in JWT tokens is typically a unique ID, not a username.)
Example configuration for fast local JWT token validation
3.7.2.4. OAuth 2.0 introspection endpoint configuration Copy linkLink copied to clipboard!
Token validation using an OAuth 2.0 introspection endpoint treats a received access token as opaque. The Kafka broker sends an access token to the introspection endpoint, which responds with the token information necessary for validation. Importantly, it returns up-to-date information if the specific access token is valid, and also information about when the token expires.
To configure OAuth 2.0 introspection-based validation, you specify an introspectionEndpointUri attribute rather than the jwksEndpointUri attribute specified for fast local JWT token validation. Depending on the authorization server, you typically have to specify a clientId and clientSecret, because the introspection endpoint is usually protected.
Example configuration for an introspection endpoint
3.7.3. OAuth 2.0 Kafka client configuration Copy linkLink copied to clipboard!
A Kafka client is configured with either:
- The credentials required to obtain a valid access token from an authorization server (client ID and Secret)
- A valid long-lived access token or refresh token, obtained using tools provided by an authorization server
The only information ever sent to the Kafka broker is an access token. The credentials used to authenticate with the authorization server to obtain the access token are never sent to the broker.
When a client obtains an access token, no further communication with the authorization server is needed.
The simplest mechanism is authentication with a client ID and Secret. Using a long-lived access token, or a long-lived refresh token, adds more complexity because there is an additional dependency on authorization server tools.
If you are using long-lived access tokens, you may need to configure the client in the authorization server to increase the maximum lifetime of the token.
If the Kafka client is not configured with an access token directly, the client exchanges credentials for an access token during Kafka session initiation by contacting the authorization server. The Kafka client exchanges either:
- Client ID and Secret
- Client ID, refresh token, and (optionally) a Secret
3.7.4. OAuth 2.0 client authentication flow Copy linkLink copied to clipboard!
In this section, we explain and visualize the communication flow between Kafka client, Kafka broker, and authorization server during Kafka session initiation. The flow depends on the client and server configuration.
When a Kafka client sends an access token as credentials to a Kafka broker, the token needs to be validated.
Depending on the authorization server used, and the configuration options available, you may prefer to use:
- Fast local token validation based on JWT signature checking and local token introspection, without contacting the authorization server
- An OAuth 2.0 introspection endpoint provided by the authorization server
Using fast local token validation requires the authorization server to provide a JWKS endpoint with public certificates that are used to validate signatures on the tokens.
Another option is to use an OAuth 2.0 introspection endpoint on the authorization server. Each time a new Kafka broker connection is established, the broker passes the access token received from the client to the authorization server, and checks the response to confirm whether or not the token is valid.
Kafka client credentials can also be configured for:
- Direct local access using a previously generated long-lived access token
- Contact with the authorization server for a new access token to be issued
An authorization server might only allow the use of opaque access tokens, which means that local token validation is not possible.
3.7.4.1. Example client authentication flows Copy linkLink copied to clipboard!
Here you can see the communication flows, for different configurations of Kafka clients and brokers, during Kafka session authentication.
- Client using client ID and secret, with broker delegating validation to authorization server
- Client using client ID and secret, with broker performing fast local token validation
- Client using long-lived access token, with broker delegating validation to authorization server
- Client using long-lived access token, with broker performing fast local validation
Client using client ID and secret, with broker delegating validation to authorization server
- Kafka client requests access token from authorization server, using client ID and secret, and optionally a refresh token.
- Authorization server generates a new access token.
- Kafka client authenticates with the Kafka broker using the SASL OAUTHBEARER mechanism to pass the access token.
- Kafka broker validates the access token by calling a token introspection endpoint on authorization server, using its own client ID and secret.
- Kafka client session is established if the token is valid.
Client using client ID and secret, with broker performing fast local token validation
- Kafka client authenticates with authorization server from the token endpoint, using a client ID and secret, and optionally a refresh token.
- Authorization server generates a new access token.
- Kafka client authenticates with the Kafka broker using the SASL OAUTHBEARER mechanism to pass the access token.
- Kafka broker validates the access token locally using a JWT token signature check, and local token introspection.
Client using long-lived access token, with broker delegating validation to authorization server
- Kafka client authenticates with the Kafka broker using the SASL OAUTHBEARER mechanism to pass the long-lived access token.
- Kafka broker validates the access token by calling a token introspection endpoint on authorization server, using its own client ID and secret.
- Kafka client session is established if the token is valid.
Client using long-lived access token, with broker performing fast local validation
- Kafka client authenticates with the Kafka broker using the SASL OAUTHBEARER mechanism to pass the long-lived access token.
- Kafka broker validates the access token locally using JWT token signature check, and local token introspection.
Fast local JWT token signature validation is suitable only for short-lived tokens as there is no check with the authorization server if a token has been revoked. Token expiration is written into the token, but revocation can happen at any time, so cannot be accounted for without contacting the authorization server. Any issued token would be considered valid until it expires.
3.7.5. Configuring OAuth 2.0 authentication Copy linkLink copied to clipboard!
OAuth 2.0 is used for interaction between Kafka clients and AMQ Streams components.
In order to use OAuth 2.0 for AMQ Streams, you must:
3.7.5.1. Configuring Red Hat Single Sign-On as an OAuth 2.0 authorization server Copy linkLink copied to clipboard!
This procedure describes how to deploy Red Hat Single Sign-On as an authorization server and configure it for integration with AMQ Streams.
The authorization server provides a central point for authentication and authorization, and management of users, clients, and permissions. Red Hat Single Sign-On has a concept of realms where a realm represents a separate set of users, clients, permissions, and other configuration. You can use a default master realm, or create a new one. Each realm exposes its own OAuth 2.0 endpoints, which means that application clients and application servers all need to use the same realm.
To use OAuth 2.0 with AMQ Streams, you use a deployment of Red Hat Single Sign-On to create and manage authentication realms.
If you already have Red Hat Single Sign-On deployed, you can skip the deployment step and use your current deployment.
Before you begin
You will need to be familiar with using Red Hat Single Sign-On.
For deployment and administration instructions, see:
Prerequisites
- AMQ Streams and Kafka is running
For the Red Hat Single Sign-On deployment:
- Check the Red Hat Single Sign-On Supported Configurations
- Installation requires a user with a cluster-admin role, such as system:admin
Procedure
Deploy Red Hat Single Sign-On to your OpenShift cluster.
Check the progress of the deployment in your OpenShift web console.
Log in to the Red Hat Single Sign-On Admin Console to create the OAuth 2.0 policies for AMQ Streams.
Login details are provided when you deploy Red Hat Single Sign-On.
Create and enable a realm.
You can use an existing master realm.
- Adjust the session and token timeouts for the realm, if required.
-
Create a client called
kafka-broker. From the tab, set:
-
Access Type to
Confidential -
Standard Flow Enabled to
OFFto disable web login for this client -
Service Accounts Enabled to
ONto allow this client to authenticate in its own name
-
Access Type to
- Click Save before continuing.
- From the tab, take a note of the secret for using in your AMQ Streams Kafka cluster configuration.
Repeat the client creation steps for any application client that will connect to your Kafka brokers.
Create a definition for each new client.
You will use the names as client IDs in your configuration.
What to do next
After deploying and configuring the authorization server, configure the Kafka brokers to use OAuth 2.0.
3.7.5.2. Configuring OAuth 2.0 support for Kafka brokers Copy linkLink copied to clipboard!
This procedure describes how to configure Kafka brokers so that the broker listeners are enabled to use OAuth 2.0 authentication using an authorization server.
We advise use of OAuth 2.0 over an encrypted interface through configuration of TLS listeners. Plain listeners are not recommended.
If the authorization server is using certificates signed by the trusted CA and matching the OAuth 2.0 server hostname, TLS connection works using the default settings. Otherwise, you have two connection options for your listener configuration when delegating token validation to the authorization server:
Before you start
For more information on the configuration of OAuth 2.0 authentication for Kafka broker listeners, see:
Prerequisites
- AMQ Streams and Kafka are running
- An OAuth 2.0 authorization server is deployed
Procedure
Update the Kafka broker configuration (
Kafka.spec.kafka) of yourKafkaresource in an editor.oc edit kafka my-cluster
oc edit kafka my-clusterCopy to Clipboard Copied! Toggle word wrap Toggle overflow Configure the Kafka broker
listenersconfiguration.The configuration for each type of listener does not have to be the same, as they are independent.
The examples here show the configuration options as configured for external listeners.
Example 1: Configuring fast local JWT token validation
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Listener type set to
oauth. - 2
- URI of the token issuer used for authentication.
- 3
- URI of the JWKS certificate endpoint used for local JWT validation.
- 4
- The token claim (or key) that contains the actual user name in the token. The user name is the principal used to identify the user. The
userNameClaimvalue will depend on the authentication flow and the authorization server used. - 5
- (Optional) Trusted certificates for TLS connection to the authorization server.
- 6
- (Optional) Disable TLS hostname verification. Default is
false. - 7
- The duration the JWKs certificates are considered valid before they expire. Default is
360seconds. If you specify a longer time, consider the risk of allowing access to revoked certificates. - 8
- The period between refreshes of JWKs certificates. The interval must be at least 60 seconds shorter than the expiry interval. Default is
300seconds. - 9
- (Optional) If ECDSA is used for signing JWT tokens on authorization server, then this needs to be enabled. It installs additional crypto providers using BouncyCastle crypto library. Default is
false.
Example 2: Configuring token validation using an introspection endpoint
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- URI of the token introspection endpoint.
- 2
- Client ID to identify the client.
- 3
- Client Secret and client ID is used for authentication.
- 4
- The token claim (or key) that contains the actual user name in the token. The user name is the principal used to identify the user. The
userNameClaimvalue will depend on the authorization server used.
Depending on how you apply OAuth 2.0 authentication, and the type of authorization server, there are additional (optional) configuration settings you can use:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- If your authorization server does not provide an
issclaim, it is not possible to perform an issuer check. In this situation, setcheckIssuertofalseand do not specify avalidIssuerUri. Default istrue. - 2
- An authorization server may not provide a single attribute to identify both regular users and clients. When a client authenticates in its own name, the server might provide a client ID. When a user authenticates using a username and password, to obtain a refresh token or an access token, the server might provide a username attribute in addition to a client ID. Use this fallback option to specify the username claim (attribute) to use if a primary user ID attribute is not available.
- 3
- In situations where
fallbackUserNameClaimis applicable, it may also be necessary to prevent name collisions between the values of the username claim, and those of the fallback username claim. Consider a situation where a client calledproducerexists, but also a regular user calledproducerexists. In order to differentiate between the two, you can use this property to add a prefix to the user ID of the client. - 4
- (Only applicable when using
introspectionEndpointUri) Depending on the authorization server you are using, the introspection endpoint may or may not return the token type attribute, or it may contain different values. You can specify a valid token type value that the response from the introspection endpoint has to contain. - 5
- (Only applicable when using
introspectionEndpointUri) The authorization server may be configured or implemented in such a way to not provide any identifiable information in an Introspection Endpoint response. In order to obtain the user ID, you can configure the URI of theuserinfoendpoint as a fallback. TheuserNameClaim,fallbackUserNameClaim, andfallbackUserNamePrefixsettings are applied to the response ofuserinfoendpoint.
- Save and exit the editor, then wait for rolling updates to complete.
Check the update in the logs or by watching the pod state transitions:
oc logs -f ${POD_NAME} -c ${CONTAINER_NAME} oc get po -woc logs -f ${POD_NAME} -c ${CONTAINER_NAME} oc get po -wCopy to Clipboard Copied! Toggle word wrap Toggle overflow The rolling update configures the brokers to use OAuth 2.0 authentication.
What to do next
3.7.5.3. Configuring Kafka Java clients to use OAuth 2.0 Copy linkLink copied to clipboard!
This procedure describes how to configure Kafka producer and consumer APIs to use OAuth 2.0 for interaction with Kafka brokers.
Add a client callback plugin to your pom.xml file, and configure the system properties.
Prerequisites
- AMQ Streams and Kafka are running
- An OAuth 2.0 authorization server is deployed and configured for OAuth access to Kafka brokers
- Kafka brokers are configured for OAuth 2.0
Procedure
Add the client library with OAuth 2.0 support to the
pom.xmlfile for the Kafka client:<dependency> <groupId>io.strimzi</groupId> <artifactId>kafka-oauth-client</artifactId> <version>0.5.0.redhat-00001</version> </dependency>
<dependency> <groupId>io.strimzi</groupId> <artifactId>kafka-oauth-client</artifactId> <version>0.5.0.redhat-00001</version> </dependency>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Configure the system properties for the callback:
For example:
System.setProperty(ClientConfig.OAUTH_TOKEN_ENDPOINT_URI, “https://<auth-server-address>/auth/realms/master/protocol/openid-connect/token”); System.setProperty(ClientConfig.OAUTH_CLIENT_ID, "<client-name>"); System.setProperty(ClientConfig.OAUTH_CLIENT_SECRET, "<client-secret>");
System.setProperty(ClientConfig.OAUTH_TOKEN_ENDPOINT_URI, “https://<auth-server-address>/auth/realms/master/protocol/openid-connect/token”);1 System.setProperty(ClientConfig.OAUTH_CLIENT_ID, "<client-name>");2 System.setProperty(ClientConfig.OAUTH_CLIENT_SECRET, "<client-secret>");3 Copy to Clipboard Copied! Toggle word wrap Toggle overflow Enable the SASL OAUTHBEARER mechanism on a TLS encrypted connection in the Kafka client configuration:
For example:
props.put("sasl.jaas.config", "org.apache.kafka.common.security.oauthbearer.OAuthBearerLoginModule required;"); props.put("security.protocol", "SASL_SSL"); props.put("sasl.mechanism", "OAUTHBEARER"); props.put("sasl.login.callback.handler.class", "io.strimzi.kafka.oauth.client.JaasClientOauthLoginCallbackHandler");props.put("sasl.jaas.config", "org.apache.kafka.common.security.oauthbearer.OAuthBearerLoginModule required;"); props.put("security.protocol", "SASL_SSL");1 props.put("sasl.mechanism", "OAUTHBEARER"); props.put("sasl.login.callback.handler.class", "io.strimzi.kafka.oauth.client.JaasClientOauthLoginCallbackHandler");Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Here we use
SASL_SSLfor use over TLS connections. UseSASL_PLAINTEXTover unencrypted connections.
- Verify that the Kafka client can access the Kafka brokers.
What to do next
3.7.5.4. Configuring OAuth 2.0 for Kafka components Copy linkLink copied to clipboard!
This procedure describes how to configure Kafka components to use OAuth 2.0 authentication using an authorization server.
You can configure authentication for:
- Kafka Connect
- Kafka MirrorMaker
- Kafka Bridge
In this scenario, the Kafka component and the authorization server are running in the same cluster.
Before you start
For more information on the configuration of OAuth 2.0 authentication for Kafka components, see:
Prerequisites
- AMQ Streams and Kafka are running
- An OAuth 2.0 authorization server is deployed and configured for OAuth access to Kafka brokers
- Kafka brokers are configured for OAuth 2.0
Procedure
Create a client secret and mount it to the component as an environment variable.
For example, here we are creating a client
Secretfor the Kafka Bridge:Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- The
clientSecretkey must be in base64 format.
Create or edit the resource for the Kafka component so that OAuth 2.0 authentication is configured for the authentication property.
For OAuth 2.0 authentication, you can use:
- Client ID and secret
- Client ID and refresh token
- Access token
- TLS
KafkaClientAuthenticationOAuth schema reference provides examples of each.
For example, here OAuth 2.0 is assigned to the Kafka Bridge client using a client ID and secret, and TLS:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Depending on how you apply OAuth 2.0 authentication, and the type of authorization server, there are additional configuration options you can use:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- (Optional) Disable TLS hostname verification. Default is
false. - 2
- If the authorization server does not return a
typ(type) claim inside the JWT token, you can applycheckAccessTokenType: falseto skip the token type check. Default istrue. - 3
- If you are using opaque tokens, you can apply
accessTokenIsJwt: falseso that access tokens are not treated as JWT tokens. - 4
- (Optional) The
scopefor requesting the token from the token endpoint. An authorization server may require a client to specify the scope. In this case it isany.
Apply the changes to the deployment of your Kafka resource.
oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow Check the update in the logs or by watching the pod state transitions:
oc logs -f ${POD_NAME} -c ${CONTAINER_NAME} oc get pod -woc logs -f ${POD_NAME} -c ${CONTAINER_NAME} oc get pod -wCopy to Clipboard Copied! Toggle word wrap Toggle overflow The rolling updates configure the component for interaction with Kafka brokers using OAuth 2.0 authentication.
3.8. Using OAuth 2.0 token-based authorization Copy linkLink copied to clipboard!
OAuth 2.0 authorization is a Technology Preview only. Technology Preview features are not supported with Red Hat production service-level agreements (SLAs) and might not be functionally complete. Red Hat does not recommend implementing any Technology Preview features in production environments. This Technology Preview feature provides early access to upcoming product innovations, enabling you to test functionality and provide feedback during the development process. For more information about the support scope of Red Hat Technology Preview features, see Technology Preview Features Support Scope.
Authorizing access to Kafka brokers
AMQ Streams supports the use of OAuth 2.0 token-based authorization through Red Hat Single Sign-On Authorization Services, which allows you to manage security policies and permissions centrally.
Security policies and permissions defined in Red Hat Single Sign-On are used to grant access to resources on Kafka brokers. Users and clients are matched against policies that permit access to perform specific actions on Kafka brokers.
Kafka allows all users full access to brokers by default, and also provides the SimpleACLAuthorizer plugin to configure authorization based on Access Control Lists (ACLs). ZooKeeper stores ACL rules that grant or deny access to resources based on username. However, OAuth 2.0 token-based authorization with Red Hat Single Sign-On offers far greater flexibility on how you wish to implement access control to Kafka brokers. In addition, you can configure your Kafka brokers to use OAuth 2.0 authorization and ACLs.
Additional resources
3.8.1. OAuth 2.0 authorization mechanism Copy linkLink copied to clipboard!
OAuth 2.0 authorization in AMQ Streams uses Red Hat Single Sign-On server Authorization Services REST endpoints to extend token-based authentication with Red Hat Single Sign-On by applying defined security policies on a particular user, and providing a list of permissions granted on different resources for that user. Policies use roles and groups to match permissions to users. OAuth 2.0 authorization enforces permissions locally based on the received list of grants for the user from Red Hat Single Sign-On Authorization Services.
3.8.1.1. Kafka broker custom authorizer Copy linkLink copied to clipboard!
A Red Hat Single Sign-On authorizer (KeycloakRBACAuthorizer) is provided with AMQ Streams. To be able to use the Red Hat Single Sign-On REST endpoints for Authorization Services provided by Red Hat Single Sign-On, you configure a custom authorizer on the Kafka broker.
The authorizer fetches a list of granted permissions from the authorization server as needed, and enforces authorization locally on the Kafka Broker, making rapid authorization decisions for each client request.
3.8.2. Configuring OAuth 2.0 authorization support Copy linkLink copied to clipboard!
This procedure describes how to configure Kafka brokers to use OAuth 2.0 authorization using Red Hat Single Sign-On Authorization Services.
Before you begin
Consider the access you require or want to limit for certain users. You can use a combination of Red Hat Single Sign-On groups, roles, clients, and users to configure access in Red Hat Single Sign-On.
Typically, groups are used to match users based on organizational departments or geographical locations. And roles are used to match users based on their function.
With Red Hat Single Sign-On, you can store users and groups in LDAP, whereas clients and roles cannot be stored this way. Storage and access to user data may be a factor in how you choose to configure authorization policies.
Super users always have unconstrained access to a Kafka broker regardless of the authorization implemented on the Kafka broker.
Prerequisites
- AMQ Streams must be configured to use OAuth 2.0 with Red Hat Single Sign-On for token-based authentication. You use the same Red Hat Single Sign-On server endpoint when you set up authorization.
- You need to understand how to manage policies and permissions for Red Hat Single Sign-On Authorization Services, as described in the Red Hat Single Sign-On documentation.
Procedure
- Access the Red Hat Single Sign-On Admin Console or use the Red Hat Single Sign-On Admin CLI to enable Authorization Services for the Kafka broker client you created when setting up OAuth 2.0 authentication.
- Use Authorization Services to define resources, authorization scopes, policies, and permissions for the client.
- Bind the permissions to users and clients by assigning them roles and groups.
Configure the Kafka brokers to use Red Hat Single Sign-On authorization by updating the Kafka broker configuration (
Kafka.spec.kafka) of yourKafkaresource in an editor.oc edit kafka my-cluster
oc edit kafka my-clusterCopy to Clipboard Copied! Toggle word wrap Toggle overflow Configure the Kafka broker
kafkaconfiguration to usekeycloakauthorization, and to be able to access the authorization server and Authorization Services.For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Type
keycloakenables Red Hat Single Sign-On authorization. - 2
- URI of the Red Hat Single Sign-On token endpoint. For production, always use HTTPs.
- 3
- The client ID of the OAuth 2.0 client definition in Red Hat Single Sign-On that has Authorization Services enabled. Typically,
kafkais used as the ID. - 4
- (Optional) Delegate authorization to Kafka
SimpleACLAuthorizerif access is denied by Red Hat Single Sign-On Authorization Services policies. The default isfalse. - 5
- (Optional) Disable TLS hostname verification. Default is
false. - 6
- (Optional) Designated super users.
- 7
- (Optional) Trusted certificates for TLS connection to the authorization server.
- Save and exit the editor, then wait for rolling updates to complete.
Check the update in the logs or by watching the pod state transitions:
oc logs -f ${POD_NAME} -c kafka oc get po -woc logs -f ${POD_NAME} -c kafka oc get po -wCopy to Clipboard Copied! Toggle word wrap Toggle overflow The rolling update configures the brokers to use OAuth 2.0 authorization.
- Verify the configured permissions by accessing Kafka brokers as clients or users with specific roles, making sure they have the necessary access, or do not have the access they are not supposed to have.
3.9. Customizing deployments Copy linkLink copied to clipboard!
AMQ Streams creates several OpenShift resources, such as Deployments, StatefulSets, Pods, and Services, which are managed by OpenShift operators. Only the operator that is responsible for managing a particular OpenShift resource can change that resource. If you try to manually change an operator-managed OpenShift resource, the operator will revert your changes back.
However, changing an operator-managed OpenShift resource can be useful if you want to perform certain tasks, such as:
-
Adding custom labels or annotations that control how
Podsare treated by Istio or other services; -
Managing how
Loadbalancer-type Services are created by the cluster.
You can make these types of changes using the template property in the AMQ Streams custom resources.
3.9.1. Template properties Copy linkLink copied to clipboard!
You can use the template property to configure aspects of the resource creation process. You can include it in the following resources and properties:
-
Kafka.spec.kafka -
Kafka.spec.zookeeper -
Kafka.spec.entityOperator -
Kafka.spec.kafkaExporter -
KafkaConnect.spec -
KafkaConnectS2I.spec -
KafkaMirrorMakerSpec -
KafkaBridge.spec
In the following example, the template property is used to modify the labels in a Kafka broker’s StatefulSet:
3.9.1.1. Supported template properties for a Kafka cluster Copy linkLink copied to clipboard!
statefulset-
Configures the
StatefulSetused by the Kafka broker. pod-
Configures the Kafka broker
Podscreated by theStatefulSet. bootstrapService- Configures the bootstrap service used by clients running within OpenShift to connect to the Kafka broker.
brokersService- Configures the headless service.
externalBootstrapService- Configures the bootstrap service used by clients connecting to Kafka brokers from outside of OpenShift.
perPodService- Configures the per-Pod services used by clients connecting to the Kafka broker from outside OpenShift to access individual brokers.
externalBootstrapRoute-
Configures the bootstrap route used by clients connecting to the Kafka brokers from outside of OpenShift using OpenShift
Routes. perPodRoute-
Configures the per-Pod routes used by clients connecting to the Kafka broker from outside OpenShift to access individual brokers using OpenShift
Routes. podDisruptionBudget-
Configures the Pod Disruption Budget for Kafka broker
StatefulSet. kafkaContainer- Configures the container used to run the Kafka broker, including custom environment variables.
tlsSidecarContainer- Configures the TLS sidecar container, including custom environment variables.
initContainer- Configures the container used to initialize the brokers.
persistentVolumeClaim-
Configures the metadata of the Kafka
PersistentVolumeClaims.
Additional resources
3.9.1.2. Supported template properties for a ZooKeeper cluster Copy linkLink copied to clipboard!
statefulset-
Configures the ZooKeeper
StatefulSet. pod-
Configures the ZooKeeper
Podscreated by theStatefulSet. clientsService- Configures the service used by clients to access ZooKeeper.
nodesService- Configures the headless service.
podDisruptionBudget-
Configures the Pod Disruption Budget for ZooKeeper
StatefulSet. zookeeperContainer- Configures the container used to run the ZooKeeper Node, including custom environment variables.
tlsSidecarContainer- Configures the TLS sidecar container, including custom environment variables.
persistentVolumeClaim-
Configures the metadata of the ZooKeeper
PersistentVolumeClaims.
Additional resources
3.9.1.3. Supported template properties for Entity Operator Copy linkLink copied to clipboard!
deployment- Configures the Deployment used by the Entity Operator.
pod-
Configures the Entity Operator
Podcreated by theDeployment. topicOperatorContainer- Configures the container used to run the Topic Operator, including custom environment variables.
userOperatorContainer- Configures the container used to run the User Operator, including custom environment variables.
tlsSidecarContainer- Configures the TLS sidecar container, including custom environment variables.
Additional resources
3.9.1.4. Supported template properties for Kafka Exporter Copy linkLink copied to clipboard!
deployment- Configures the Deployment used by Kafka Exporter.
pod-
Configures the Kafka Exporter
Podcreated by theDeployment. services- Configures the Kafka Exporter services.
container- Configures the container used to run Kafka Exporter, including custom environment variables.
Additional resources
3.9.1.5. Supported template properties for Kafka Connect and Kafka Connect with Source2Image support Copy linkLink copied to clipboard!
deployment-
Configures the Kafka Connect
Deployment. pod-
Configures the Kafka Connect
Podscreated by theDeployment. apiService- Configures the service used by the Kafka Connect REST API.
podDisruptionBudget-
Configures the Pod Disruption Budget for Kafka Connect
Deployment. connectContainer- Configures the container used to run Kafka Connect, including custom environment variables.
Additional resources
3.9.1.6. Supported template properties for Kafka MirrorMaker Copy linkLink copied to clipboard!
deployment-
Configures the Kafka MirrorMaker
Deployment. pod-
Configures the Kafka MirrorMaker
Podscreated by theDeployment. podDisruptionBudget-
Configures the Pod Disruption Budget for Kafka MirrorMaker
Deployment. mirrorMakerContainer- Configures the container used to run Kafka MirrorMaker, including custom environment variables.
Additional resources
3.9.2. Labels and Annotations Copy linkLink copied to clipboard!
For every resource, you can configure additional Labels and Annotations. Labels and Annotations are used to identify and organize resources, and are configured in the metadata property.
For example:
The labels and annotations fields can contain any labels or annotations that do not contain the reserved string strimzi.io. Labels and annotations containing strimzi.io are used internally by AMQ Streams and cannot be configured.
For Kafka Connect, annotations on the KafkaConnect resource are used to enable the creation and management of connectors using KafkaConnector resources. For more information, see Section 3.2.15, “Enabling KafkaConnector resources”.
The metadata property is not applicable to container templates, such as the kafkaContainer.
3.9.3. Customizing Pods Copy linkLink copied to clipboard!
In addition to Labels and Annotations, you can customize some other fields on Pods. These fields are described in the following table and affect how the Pod is created.
| Field | Description |
|---|---|
|
|
Defines the period of time, in seconds, by which the Pod must have terminated gracefully. After the grace period, the Pod and its containers are forcefully terminated (killed). The default value is NOTE: You might need to increase the grace period for very large Kafka clusters, so that the Kafka brokers have enough time to transfer their work to another broker before they are terminated. |
|
| Defines a list of references to OpenShift Secrets that can be used for pulling container images from private repositories. For more information about how to create a Secret with the credentials, see Pull an Image from a Private Registry.
NOTE: When the |
|
| Configures pod-level security attributes for containers running as part of a given Pod. For more information about configuring SecurityContext, see Configure a Security Context for a Pod or Container. |
|
| Configures the name of the Priority Class which will be used for given a Pod. For more information about Priority Classes, see Pod Priority and Preemption. |
|
|
The name of the scheduler used to dispatch this |
These fields are effective on each type of cluster (Kafka and ZooKeeper; Kafka Connect and Kafka Connect with S2I support; and Kafka MirrorMaker).
The following example shows these customized fields on a template property:
Additional resources
-
For more information, see Section B.51, “
PodTemplateschema reference”.
3.9.4. Customizing containers with environment variables Copy linkLink copied to clipboard!
You can set custom environment variables for a container by using the relevant template container property. The following table lists the AMQ Streams containers and the relevant template configuration property (defined under spec) for each custom resource.
| AMQ Streams Element | Container | Configuration property |
|---|---|---|
| Kafka | Kafka Broker |
|
| Kafka | Kafka Broker TLS Sidecar |
|
| Kafka | Kafka Initialization |
|
| Kafka | ZooKeeper Node |
|
| Kafka | ZooKeeper TLS Sidecar |
|
| Kafka | Topic Operator |
|
| Kafka | User Operator |
|
| Kafka | Entity Operator TLS Sidecar |
|
| KafkaConnect | Connect and ConnectS2I |
|
| KafkaMirrorMaker | MirrorMaker |
|
| KafkaBridge | Bridge |
|
The environment variables are defined under the env property as a list of objects with name and value fields. The following example shows two custom environment variables set for the Kafka broker containers:
Environment variables prefixed with KAFKA_ are internal to AMQ Streams and should be avoided. If you set a custom environment variable that is already in use by AMQ Streams, it is ignored and a warning is recorded in the log.
Additional resources
-
For more information, see Section B.55, “
ContainerTemplateschema reference”.
3.9.5. Customizing external Services Copy linkLink copied to clipboard!
When exposing Kafka outside of OpenShift using loadbalancers or node ports, you can use additional customization properties in addition to labels and annotations. The properties for external services are described in the following table and affect how a Service is created.
| Field | Description |
|---|---|
|
|
Specifies whether the service routes external traffic to node-local or cluster-wide endpoints. |
|
|
A list of CIDR ranges (for example For more information, see https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/. |
These properties are available for externalBootstrapService and perPodService. The following example shows these customized properties for a template:
Additional resources
-
For more information, see Section B.53, “
ExternalServiceTemplateschema reference”.
3.9.6. Customizing the image pull policy Copy linkLink copied to clipboard!
AMQ Streams allows you to customize the image pull policy for containers in all pods deployed by the Cluster Operator. The image pull policy is configured using the environment variable STRIMZI_IMAGE_PULL_POLICY in the Cluster Operator deployment. The STRIMZI_IMAGE_PULL_POLICY environment variable can be set to three different values:
Always- Container images are pulled from the registry every time the pod is started or restarted.
IfNotPresent- Container images are pulled from the registry only when they were not pulled before.
Never- Container images are never pulled from the registry.
The image pull policy can be currently customized only for all Kafka, Kafka Connect, and Kafka MirrorMaker clusters at once. Changing the policy will result in a rolling update of all your Kafka, Kafka Connect, and Kafka MirrorMaker clusters.
Additional resources
- For more information about Cluster Operator configuration, see Section 4.1, “Cluster Operator”.
- For more information about Image Pull Policies, see Disruptions.
3.9.7. Customizing Pod Disruption Budgets Copy linkLink copied to clipboard!
AMQ Streams creates a pod disruption budget for every new StatefulSet or Deployment. By default, these pod disruption budgets only allow a single pod to be unavailable at a given time by setting the maxUnavailable value in the PodDisruptionBudget.spec resource to 1. You can change the amount of unavailable pods allowed by changing the default value of maxUnavailable in the pod disruption budget template. This template applies to each type of cluster (Kafka and ZooKeeper; Kafka Connect and Kafka Connect with S2I support; and Kafka MirrorMaker).
The following example shows customized podDisruptionBudget fields on a template property:
Additional resources
-
For more information, see Section B.54, “
PodDisruptionBudgetTemplateschema reference”. - The Disruptions chapter of the OpenShift documentation.
3.9.8. Customizing deployments Copy linkLink copied to clipboard!
This procedure describes how to customize Labels of a Kafka cluster.
Prerequisites
- An OpenShift cluster.
- A running Cluster Operator.
Procedure
Edit the
templateproperty in theKafka,KafkaConnect,KafkaConnectS2I, orKafkaMirrorMakerresource. For example, to modify the labels for the Kafka brokerStatefulSet, use:Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
Use
oc apply:oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow Alternatively, use
oc edit:oc edit Resource ClusterName
oc edit Resource ClusterNameCopy to Clipboard Copied! Toggle word wrap Toggle overflow
3.10. External logging Copy linkLink copied to clipboard!
When setting the logging levels for a resource, you can specify them inline directly in the spec.logging property of the resource YAML:
Or you can specify external logging:
spec:
# ...
logging:
type: external
name: customConfigMap
spec:
# ...
logging:
type: external
name: customConfigMap
With external logging, logging properties are defined in a ConfigMap. The name of the ConfigMap is referenced in the spec.logging.name property.
The advantages of using a ConfigMap are that the logging properties are maintained in one place and are accessible to more than one resource.
3.10.1. Creating a ConfigMap for logging Copy linkLink copied to clipboard!
To use a ConfigMap to define logging properties, you create the ConfigMap and then reference it as part of the logging definition in the spec of a resource.
The ConfigMap must contain the appropriate logging configuration.
-
log4j.propertiesfor Kafka components, ZooKeeper, and the Kafka Bridge -
log4j2.propertiesfor the Topic Operator and User Operator
The configuration must be placed under these properties.
Here we demonstrate how a ConfigMap defines a root logger for a Kafka resource.
Procedure
Create the ConfigMap.
You can create the ConfigMap as a YAML file or from a properties file using
ocat the command line.ConfigMap example with a root logger definition for Kafka:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow From the command line, using a properties file:
oc create configmap logging-configmap --from-file=log4j.properties
oc create configmap logging-configmap --from-file=log4j.propertiesCopy to Clipboard Copied! Toggle word wrap Toggle overflow The properties file defines the logging configuration:
Define the root logger ...
# Define the root logger kafka.root.logger.level="INFO" # ...Copy to Clipboard Copied! Toggle word wrap Toggle overflow Define external logging in the
specof the resource, setting thelogging.nameto the name of the ConfigMap.spec: # ... logging: type: external name: logging-configmapspec: # ... logging: type: external name: logging-configmapCopy to Clipboard Copied! Toggle word wrap Toggle overflow Create or update the resource.
oc apply -f kafka.yaml
oc apply -f kafka.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Chapter 4. Operators Copy linkLink copied to clipboard!
4.1. Cluster Operator Copy linkLink copied to clipboard!
Use the Cluster Operator to deploy a Kafka cluster and other Kafka components.
The Cluster Operator is deployed using YAML installation files. For information on deploying the Cluster Operator, see the Deploying the Cluster Operator.
For information on the deployment options available for Kafka, see Kafka Cluster configuration.
On OpenShift, a Kafka Connect deployment can incorporate a Source2Image feature to provide a convenient way to add additional connectors.
4.1.1. Cluster Operator Copy linkLink copied to clipboard!
AMQ Streams uses the Cluster Operator to deploy and manage clusters for:
- Kafka (including ZooKeeper, Entity Operator, Kafka Exporter, and Cruise Control)
- Kafka Connect
- Kafka MirrorMaker
- Kafka Bridge
Custom resources are used to deploy the clusters.
For example, to deploy a Kafka cluster:
-
A
Kafkaresource with the cluster configuration is created within the OpenShift cluster. -
The Cluster Operator deploys a corresponding Kafka cluster, based on what is declared in the
Kafkaresource.
The Cluster Operator can also deploy (through configuration of the Kafka resource):
-
A Topic Operator to provide operator-style topic management through
KafkaTopiccustom resources -
A User Operator to provide operator-style user management through
KafkaUsercustom resources
The Topic Operator and User Operator function within the Entity Operator on deployment.
Example architecture for the Cluster Operator
4.1.2. Reconciliation Copy linkLink copied to clipboard!
Although the operator reacts to all notifications about the desired cluster resources received from the OpenShift cluster, if the operator is not running, or if a notification is not received for any reason, the desired resources will get out of sync with the state of the running OpenShift cluster.
In order to handle failovers properly, a periodic reconciliation process is executed by the Cluster Operator so that it can compare the state of the desired resources with the current cluster deployments in order to have a consistent state across all of them. You can set the time interval for the periodic reconciliations using the [STRIMZI_FULL_RECONCILIATION_INTERVAL_MS] variable.
4.1.3. Cluster Operator Configuration Copy linkLink copied to clipboard!
The Cluster Operator can be configured through the following supported environment variables:
STRIMZI_NAMESPACEA comma-separated list of namespaces that the operator should operate in. When not set, set to empty string, or to
*the Cluster Operator will operate in all namespaces. The Cluster Operator deployment might use the OpenShift Downward API to set this automatically to the namespace the Cluster Operator is deployed in. See the example below:env: - name: STRIMZI_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespaceenv: - name: STRIMZI_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespaceCopy to Clipboard Copied! Toggle word wrap Toggle overflow -
STRIMZI_FULL_RECONCILIATION_INTERVAL_MS - Optional, default is 120000 ms. The interval between periodic reconciliations, in milliseconds.
STRIMZI_LOG_LEVEL-
Optional, default
INFO. The level for printing logging messages. The value can be set to:ERROR,WARNING,INFO,DEBUG, andTRACE. STRIMZI_OPERATION_TIMEOUT_MS- Optional, default 300000 ms. The timeout for internal operations, in milliseconds. This value should be increased when using AMQ Streams on clusters where regular OpenShift operations take longer than usual (because of slow downloading of Docker images, for example).
STRIMZI_KAFKA_IMAGES-
Required. This provides a mapping from Kafka version to the corresponding Docker image containing a Kafka broker of that version. The required syntax is whitespace or comma separated
<version>=<image>pairs. For example2.4.1=registry.redhat.io/amq7/amq-streams-kafka-24-rhel7:1.5.0, 2.5.0=registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0. This is used when aKafka.spec.kafka.versionproperty is specified but not theKafka.spec.kafka.image, as described in Section 3.1.19, “Container images”. STRIMZI_DEFAULT_KAFKA_INIT_IMAGE-
Optional, default
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0. The image name to use as default for the init container started before the broker for initial configuration work (that is, rack support), if no image is specified as thekafka-init-imagein the Section 3.1.19, “Container images”. STRIMZI_DEFAULT_TLS_SIDECAR_KAFKA_IMAGE-
Optional, default
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0. The image name to use as the default when deploying the sidecar container which provides TLS support for Kafka, if no image is specified as theKafka.spec.kafka.tlsSidecar.imagein the Section 3.1.19, “Container images”. STRIMZI_KAFKA_CONNECT_IMAGES-
Required. This provides a mapping from the Kafka version to the corresponding Docker image containing a Kafka connect of that version. The required syntax is whitespace or comma separated
<version>=<image>pairs. For example2.4.1=registry.redhat.io/amq7/amq-streams-kafka-24-rhel7:1.5.0, 2.5.0=registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0. This is used when aKafkaConnect.spec.versionproperty is specified but not theKafkaConnect.spec.image, as described in Section 3.2.12, “Container images”. STRIMZI_KAFKA_CONNECT_S2I_IMAGES-
Required. This provides a mapping from the Kafka version to the corresponding Docker image containing a Kafka connect of that version. The required syntax is whitespace or comma separated
<version>=<image>pairs. For example2.4.1=registry.redhat.io/amq7/amq-streams-kafka-24-rhel7:1.5.0, 2.5.0=registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0. This is used when aKafkaConnectS2I.spec.versionproperty is specified but not theKafkaConnectS2I.spec.image, as described in Section 3.3.12, “Container images”. STRIMZI_KAFKA_MIRROR_MAKER_IMAGES-
Required. This provides a mapping from the Kafka version to the corresponding Docker image containing a Kafka mirror maker of that version. The required syntax is whitespace or comma separated
<version>=<image>pairs. For example2.4.1=registry.redhat.io/amq7/amq-streams-kafka-24-rhel7:1.5.0, 2.5.0=registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0. This is used when aKafkaMirrorMaker.spec.versionproperty is specified but not theKafkaMirrorMaker.spec.image, as described in Section 3.4.2.14, “Container images”. STRIMZI_DEFAULT_TOPIC_OPERATOR_IMAGE-
Optional, default
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0. The image name to use as the default when deploying the topic operator, if no image is specified as theKafka.spec.entityOperator.topicOperator.imagein the Section 3.1.19, “Container images” of theKafkaresource. STRIMZI_DEFAULT_USER_OPERATOR_IMAGE-
Optional, default
registry.redhat.io/amq7/amq-streams-rhel7-operator:1.5.0. The image name to use as the default when deploying the user operator, if no image is specified as theKafka.spec.entityOperator.userOperator.imagein the Section 3.1.19, “Container images” of theKafkaresource. STRIMZI_DEFAULT_TLS_SIDECAR_ENTITY_OPERATOR_IMAGE-
Optional, default
registry.redhat.io/amq7/amq-streams-kafka-25-rhel7:1.5.0. The image name to use as the default when deploying the sidecar container which provides TLS support for the Entity Operator, if no image is specified as theKafka.spec.entityOperator.tlsSidecar.imagein the Section 3.1.19, “Container images”. STRIMZI_IMAGE_PULL_POLICY-
Optional. The
ImagePullPolicywhich will be applied to containers in all pods managed by AMQ Streams Cluster Operator. The valid values areAlways,IfNotPresent, andNever. If not specified, the OpenShift defaults will be used. Changing the policy will result in a rolling update of all your Kafka, Kafka Connect, and Kafka MirrorMaker clusters. STRIMZI_IMAGE_PULL_SECRETS-
Optional. A comma-separated list of
Secretnames. The secrets referenced here contain the credentials to the container registries where the container images are pulled from. The secrets are used in theimagePullSecretsfield for allPodscreated by the Cluster Operator. Changing this list results in a rolling update of all your Kafka, Kafka Connect, and Kafka MirrorMaker clusters. STRIMZI_KUBERNETES_VERSIONOptional. Overrides the OpenShift version information detected from the API server. See the example below:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow KUBERNETES_SERVICE_DNS_DOMAINOptional. Overrides the default OpenShift DNS domain name suffix.
By default, services assigned in the OpenShift cluster have a DNS domain name that uses the default suffix
cluster.local.For example, for broker kafka-0:
<cluster-name>-kafka-0.<cluster-name>-kafka-brokers.<namespace>.svc.cluster.local
<cluster-name>-kafka-0.<cluster-name>-kafka-brokers.<namespace>.svc.cluster.localCopy to Clipboard Copied! Toggle word wrap Toggle overflow The DNS domain name is added to the Kafka broker certificates used for hostname verification.
If you are using a different DNS domain name suffix in your cluster, change the
KUBERNETES_SERVICE_DNS_DOMAINenvironment variable from the default to the one you are using in order to establish a connection with the Kafka brokers.
4.1.4. Role-Based Access Control (RBAC) Copy linkLink copied to clipboard!
4.1.4.1. Provisioning Role-Based Access Control (RBAC) for the Cluster Operator Copy linkLink copied to clipboard!
For the Cluster Operator to function it needs permission within the OpenShift cluster to interact with resources such as Kafka, KafkaConnect, and so on, as well as the managed resources, such as ConfigMaps, Pods, Deployments, StatefulSets, Services, and so on. Such permission is described in terms of OpenShift role-based access control (RBAC) resources:
-
ServiceAccount, -
RoleandClusterRole, -
RoleBindingandClusterRoleBinding.
In addition to running under its own ServiceAccount with a ClusterRoleBinding, the Cluster Operator manages some RBAC resources for the components that need access to OpenShift resources.
OpenShift also includes privilege escalation protections that prevent components operating under one ServiceAccount from granting other ServiceAccounts privileges that the granting ServiceAccount does not have. Because the Cluster Operator must be able to create the ClusterRoleBindings, and RoleBindings needed by resources it manages, the Cluster Operator must also have those same privileges.
4.1.4.2. Delegated privileges Copy linkLink copied to clipboard!
When the Cluster Operator deploys resources for a desired Kafka resource it also creates ServiceAccounts, RoleBindings, and ClusterRoleBindings, as follows:
The Kafka broker pods use a
ServiceAccountcalledcluster-name-kafka-
When the rack feature is used, the
strimzi-cluster-name-kafka-initClusterRoleBindingis used to grant thisServiceAccountaccess to the nodes within the cluster via aClusterRolecalledstrimzi-kafka-broker - When the rack feature is not used no binding is created
-
When the rack feature is used, the
-
The ZooKeeper pods use a
ServiceAccountcalledcluster-name-zookeeper The Entity Operator pod uses a
ServiceAccountcalledcluster-name-entity-operator-
The Topic Operator produces OpenShift events with status information, so the
ServiceAccountis bound to aClusterRolecalledstrimzi-entity-operatorwhich grants this access via thestrimzi-entity-operatorRoleBinding
-
The Topic Operator produces OpenShift events with status information, so the
-
The pods for
KafkaConnectandKafkaConnectS2Iresources use aServiceAccountcalledcluster-name-cluster-connect -
The pods for
KafkaMirrorMakeruse aServiceAccountcalledcluster-name-mirror-maker -
The pods for
KafkaBridgeuse aServiceAccountcalledcluster-name-bridge
4.1.4.3. ServiceAccount Copy linkLink copied to clipboard!
The Cluster Operator is best run using a ServiceAccount:
Example ServiceAccount for the Cluster Operator
The Deployment of the operator then needs to specify this in its spec.template.spec.serviceAccountName:
Partial example of Deployment for the Cluster Operator
Note line 12, where the the strimzi-cluster-operator ServiceAccount is specified as the serviceAccountName.
4.1.4.4. ClusterRoles Copy linkLink copied to clipboard!
The Cluster Operator needs to operate using ClusterRoles that gives access to the necessary resources. Depending on the OpenShift cluster setup, a cluster administrator might be needed to create the ClusterRoles.
Cluster administrator rights are only needed for the creation of the ClusterRoles. The Cluster Operator will not run under the cluster admin account.
The ClusterRoles follow the principle of least privilege and contain only those privileges needed by the Cluster Operator to operate Kafka, Kafka Connect, and ZooKeeper clusters. The first set of assigned privileges allow the Cluster Operator to manage OpenShift resources such as StatefulSets, Deployments, Pods, and ConfigMaps.
Cluster Operator uses ClusterRoles to grant permission at the namespace-scoped resources level and cluster-scoped resources level:
ClusterRole with namespaced resources for the Cluster Operator
The second includes the permissions needed for cluster-scoped resources.
ClusterRole with cluster-scoped resources for the Cluster Operator
The strimzi-kafka-broker ClusterRole represents the access needed by the init container in Kafka pods that is used for the rack feature. As described in the Delegated privileges section, this role is also needed by the Cluster Operator in order to be able to delegate this access.
ClusterRole for the Cluster Operator allowing it to delegate access to OpenShift nodes to the Kafka broker pods
The strimzi-topic-operator ClusterRole represents the access needed by the Topic Operator. As described in the Delegated privileges section, this role is also needed by the Cluster Operator in order to be able to delegate this access.
ClusterRole for the Cluster Operator allowing it to delegate access to events to the Topic Operator
4.1.4.5. ClusterRoleBindings Copy linkLink copied to clipboard!
The operator needs ClusterRoleBindings and RoleBindings which associates its ClusterRole with its ServiceAccount: ClusterRoleBindings are needed for ClusterRoles containing cluster-scoped resources.
Example ClusterRoleBinding for the Cluster Operator
ClusterRoleBindings are also needed for the ClusterRoles needed for delegation:
Examples RoleBinding for the Cluster Operator
ClusterRoles containing only namespaced resources are bound using RoleBindings only.
4.2. Topic Operator Copy linkLink copied to clipboard!
The Topic Operator manages Kafka topics through custom resources.
The Topic Operator is deployed:
4.2.1. Topic Operator Copy linkLink copied to clipboard!
The Topic Operator provides a way of managing topics in a Kafka cluster through OpenShift resources.
Example architecture for the Topic Operator
The role of the Topic Operator is to keep a set of KafkaTopic OpenShift resources describing Kafka topics in-sync with corresponding Kafka topics.
Specifically, if a KafkaTopic is:
- Created, the Topic Operator creates the topic
- Deleted, the Topic Operator deletes the topic
- Changed, the Topic Operator updates the topic
Working in the other direction, if a topic is:
-
Created within the Kafka cluster, the Operator creates a
KafkaTopic -
Deleted from the Kafka cluster, the Operator deletes the
KafkaTopic -
Changed in the Kafka cluster, the Operator updates the
KafkaTopic
This allows you to declare a KafkaTopic as part of your application’s deployment and the Topic Operator will take care of creating the topic for you. Your application just needs to deal with producing or consuming from the necessary topics.
If the topic is reconfigured or reassigned to different Kafka nodes, the KafkaTopic will always be up to date.
4.2.2. Identifying a Kafka cluster for topic handling Copy linkLink copied to clipboard!
A KafkaTopic resource includes a label that defines the appropriate name of the Kafka cluster (derived from the name of the Kafka resource) to which it belongs.
The label is used by the Topic Operator to identify the KafkaTopic resource and create a new topic, and also in subsequent handling of the topic.
If the label does not match the Kafka cluster, the Topic Operator cannot identify the KafkaTopic and the topic is not created.
4.2.3. Understanding the Topic Operator Copy linkLink copied to clipboard!
A fundamental problem that the operator has to solve is that there is no single source of truth: Both the KafkaTopic resource and the topic within Kafka can be modified independently of the operator. Complicating this, the Topic Operator might not always be able to observe changes at each end in real time (for example, the operator might be down).
To resolve this, the operator maintains its own private copy of the information about each topic. When a change happens either in the Kafka cluster, or in OpenShift, it looks at both the state of the other system and at its private copy in order to determine what needs to change to keep everything in sync. The same thing happens whenever the operator starts, and periodically while it is running.
For example, suppose the Topic Operator is not running, and a KafkaTopic my-topic gets created. When the operator starts it will lack a private copy of "my-topic", so it can infer that the KafkaTopic has been created since it was last running. The operator will create the topic corresponding to "my-topic" and also store a private copy of the metadata for "my-topic".
The private copy allows the operator to cope with scenarios where the topic configuration gets changed both in Kafka and in OpenShift, so long as the changes are not incompatible (for example, both changing the same topic config key, but to different values). In the case of incompatible changes, the Kafka configuration wins, and the KafkaTopic will be updated to reflect that.
The private copy is held in the same ZooKeeper ensemble used by Kafka itself. This mitigates availability concerns, because if ZooKeeper is not running then Kafka itself cannot run, so the operator will be no less available than it would even if it was stateless.
4.2.4. Configuring the Topic Operator with resource requests and limits Copy linkLink copied to clipboard!
You can allocate resources, such as CPU and memory, to the Topic Operator and set a limit on the amount of resources it can consume.
Prerequisites
- The Cluster Operator is running.
Procedure
Update the Kafka cluster configuration in an editor, as required:
Use
oc edit:oc edit kafka my-cluster
oc edit kafka my-clusterCopy to Clipboard Copied! Toggle word wrap Toggle overflow In the
spec.entityOperator.topicOperator.resourcesproperty in theKafkaresource, set the resource requests and limits for the Topic Operator.Copy to Clipboard Copied! Toggle word wrap Toggle overflow Apply the new configuration to create or update the resource.
Use
oc apply:oc apply -f kafka.yaml
oc apply -f kafka.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
-
For more information about the schema of the
resourcesobject, see {K8sResourceRequirementsAPI}.
4.3. User Operator Copy linkLink copied to clipboard!
The User Operator manages Kafka users through custom resources.
The User Operator is deployed:
4.3.1. User Operator Copy linkLink copied to clipboard!
The User Operator manages Kafka users for a Kafka cluster by watching for KafkaUser resources that describe Kafka users, and ensuring that they are configured properly in the Kafka cluster.
For example, if a KafkaUser is:
- Created, the User Operator creates the user it describes
- Deleted, the User Operator deletes the user it describes
- Changed, the User Operator updates the user it describes
Unlike the Topic Operator, the User Operator does not sync any changes from the Kafka cluster with the OpenShift resources. Kafka topics can be created by applications directly in Kafka, but it is not expected that the users will be managed directly in the Kafka cluster in parallel with the User Operator.
The User Operator allows you to declare a KafkaUser resource as part of your application’s deployment. You can specify the authentication and authorization mechanism for the user. You can also configure user quotas that control usage of Kafka resources to ensure, for example, that a user does not monopolize access to a broker.
When the user is created, the user credentials are created in a Secret. Your application needs to use the user and its credentials for authentication and to produce or consume messages.
In addition to managing credentials for authentication, the User Operator also manages authorization rules by including a description of the user’s access rights in the KafkaUser declaration.
4.3.2. Identifying a Kafka cluster for user handling Copy linkLink copied to clipboard!
A KafkaUser resource includes a label that defines the appropriate name of the Kafka cluster (derived from the name of the Kafka resource) to which it belongs.
The label is used by the User Operator to identify the KafkaUser resource and create a new user, and also in subsequent handling of the user.
If the label does not match the Kafka cluster, the User Operator cannot identify the kafkaUser and the user is not created.
4.3.3. Configuring the User Operator with resource requests and limits Copy linkLink copied to clipboard!
You can allocate resources, such as CPU and memory, to the User Operator and set a limit on the amount of resources it can consume.
Prerequisites
- The Cluster Operator is running.
Procedure
Update the Kafka cluster configuration in an editor, as required:
oc edit kafka my-cluster
oc edit kafka my-clusterCopy to Clipboard Copied! Toggle word wrap Toggle overflow In the
spec.entityOperator.userOperator.resourcesproperty in theKafkaresource, set the resource requests and limits for the User Operator.Copy to Clipboard Copied! Toggle word wrap Toggle overflow Save the file and exit the editor. The Cluster Operator will apply the changes automatically.
Additional resources
-
For more information about the schema of the
resourcesobject, see {K8sResourceRequirementsAPI}.
4.4. Monitoring Operators Copy linkLink copied to clipboard!
4.4.1. Prometheus metrics Copy linkLink copied to clipboard!
AMQ Streams operators expose Prometheus metrics. The metrics are automatically enabled and contain information about:
- Number of reconciliations
- Number of Custom Resources the operator is processing
- Duration of reconciliations
- JVM metrics from the operators
Additionally, we provide an example Grafana dashboard.
For more information about Prometheus, see the Introducing Metrics to Kafka.
Chapter 5. Using the Topic Operator Copy linkLink copied to clipboard!
When you create, modify or delete a topic using the KafkaTopic resource, the Topic Operator ensures those changes are reflected in the Kafka cluster.
5.1. Kafka topic resource Copy linkLink copied to clipboard!
The KafkaTopic resource is used to configure topics, including the number of partitions and replicas.
The full schema for KafkaTopic is described in KafkaTopic schema reference.
5.1.1. Kafka topic usage recommendations Copy linkLink copied to clipboard!
When working with topics, be consistent. Always operate on either KafkaTopic resources or topics directly in OpenShift. Avoid routinely switching between both methods for a given topic.
Use topic names that reflect the nature of the topic, and remember that names cannot be changed later.
If creating a topic in Kafka, use a name that is a valid OpenShift resource name, otherwise the Topic Operator will need to create the corresponding KafkaTopic with a name that conforms to the OpenShift rules.
Recommendations for identifiers and names in OpenShift are outlined in Identifiers and Names in OpenShift community article.
5.1.2. Kafka topic naming conventions Copy linkLink copied to clipboard!
Kafka and OpenShift impose their own validation rules for the naming of topics in Kafka and KafkaTopic.metadata.name respectively. There are valid names for each which are invalid in the other.
Using the spec.topicName property, it is possible to create a valid topic in Kafka with a name that would be invalid for the Kafka topic in OpenShift.
The spec.topicName property inherits Kafka naming validation rules:
- The name must not be longer than 249 characters.
-
Valid characters for Kafka topics are ASCII alphanumerics,
.,_, and-. -
The name cannot be
.or.., though.can be used in a name, such asexampleTopic.or.exampleTopic.
spec.topicName must not be changed.
For example:
- 1
- Upper case is invalid in OpenShift.
cannot be changed to:
Some Kafka client applications, such as Kafka Streams, can create topics in Kafka programmatically. If those topics have names that are invalid OpenShift resource names, the Topic Operator gives them valid names based on the Kafka names. Invalid characters are replaced and a hash is appended to the name.
5.2. Configuring a Kafka topic Copy linkLink copied to clipboard!
Use the properties of the KafkaTopic resource to configure a Kafka topic.
You can use oc apply to create or modify topics, and oc delete to delete existing topics.
For example:
-
oc apply -f <topic-config-file> -
oc delete KafkaTopic <topic-name>
This procedure shows how to create a topic with 10 partitions and 2 replicas.
Before you start
It is important that you consider the following before making your changes:
Kafka does not support making the following changes through the
KafkaTopicresource:-
Changing topic names using
spec.topicName -
Decreasing partition size using
spec.partitions
-
Changing topic names using
-
You cannot use
spec.replicasto change the number of replicas that were initially specified. -
Increasing
spec.partitionsfor topics with keys will change how records are partitioned, which can be particularly problematic when the topic uses semantic partitioning.
Prerequisites
- A running Kafka cluster configured with a Kafka broker listener using TLS authentication and encryption.
- A running Topic Operator (typically deployed with the Entity Operator).
-
For deleting a topic,
delete.topic.enable=true(default) in thespec.kafka.configof theKafkaresource.
Procedure
Prepare a file containing the
KafkaTopicto be created.An example
KafkaTopicCopy to Clipboard Copied! Toggle word wrap Toggle overflow TipWhen modifying a topic, you can get the current version of the resource using
oc get kafkatopic orders -o yaml.Create the
KafkaTopicresource in OpenShift.oc apply -f <topic-config-file>
oc apply -f <topic-config-file>Copy to Clipboard Copied! Toggle word wrap Toggle overflow
Chapter 6. Using the User Operator Copy linkLink copied to clipboard!
When you create, modify or delete a user using the KafkaUser resource, the User Operator ensures those changes are reflected in the Kafka cluster.
6.1. Kafka user resource Copy linkLink copied to clipboard!
The KafkaUser resource is used to configure the authentication mechanism, authorization mechanism, and access rights for a user.
The full schema for KafkaUser is described in KafkaUser schema reference.
6.1.1. User authentication Copy linkLink copied to clipboard!
Authentication is configured using the authentication property in KafkaUser.spec. The authentication mechanism enabled for the user is specified using the type field.
Supported authentication mechanisms:
- TLS client authentication
- SCRAM-SHA-512 authentication
When no authentication mechanism is specified, the User Operator does not create the user or its credentials.
Additional resources
6.1.1.1. TLS Client Authentication Copy linkLink copied to clipboard!
To use TLS client authentication, you set the type field to tls.
An example KafkaUser with TLS client authentication enabled
When the user is created by the User Operator, it creates a new Secret with the same name as the KafkaUser resource. The Secret contains a private and public key for TLS client authentication. The public key is contained in a user certificate, which is signed by the client Certificate Authority (CA).
All keys are in X.509 format.
Secrets provide private keys and certificates in PEM and PKCS #12 formats. For more information on securing Kafka communication with Secrets, see Chapter 12, Security.
An example Secret with user credentials
6.1.1.2. SCRAM-SHA-512 Authentication Copy linkLink copied to clipboard!
To use SCRAM-SHA-512 authentication mechanism, you set the type field to scram-sha-512.
An example KafkaUser with SCRAM-SHA-512 authentication enabled
When the user is created by the User Operator, it creates a new secret with the same name as the KafkaUser resource. The secret contains the generated password in the password key, which is encoded with base64. In order to use the password, it must be decoded.
An example Secret with user credentials
Decoding the generated password:
echo "Z2VuZXJhdGVkcGFzc3dvcmQ=" | base64 --decode
echo "Z2VuZXJhdGVkcGFzc3dvcmQ=" | base64 --decode
6.1.2. User authorization Copy linkLink copied to clipboard!
User authorization is configured using the authorization property in KafkaUser.spec. The authorization type enabled for a user is specified using the type field.
If no authorization is specified, the User Operator does not provision any access rights for the user.
To use simple authorization, you set the type property to simple in KafkaUser.spec. Simple authorization uses the default Kafka authorization plugin, SimpleAclAuthorizer.
Alternatively, if you are using OAuth 2.0 token based authentication, you can also configure OAuth 2.0 authorization.
ACL rules
SimpleAclAuthorizer uses ACL rules to manage access to Kafka brokers.
ACL rules grant access rights to the user, which you specify in the acls property.
An AclRule is specified as a set of properties:
resourceThe
resourceproperty specifies the resource that the rule applies to.Simple authorization supports four resource types, which are specified in the
typeproperty:-
Topics (
topic) -
Consumer Groups (
group) -
Clusters (
cluster) -
Transactional IDs (
transactionalId)
For Topic, Group, and Transactional ID resources you can specify the name of the resource the rule applies to in the
nameproperty.Cluster type resources have no name.
A name is specified as a
literalor aprefixusing thepatternTypeproperty.-
Literal names are taken exactly as they are specified in the
namefield. -
Prefix names use the value from the
nameas a prefix, and will apply the rule to all resources with names starting with the value.
-
Topics (
typeThe
typeproperty specifies the type of ACL rule,allowordeny.The
typefield is optional. Iftypeis unspecified, the ACL rule is treated as anallowrule.operationThe
operationspecifies the operation to allow or deny.The following operations are supported:
- Read
- Write
- Delete
- Alter
- Describe
- All
- IdempotentWrite
- ClusterAction
- Create
- AlterConfigs
- DescribeConfigs
Only certain operations work with each resource.
For more details about
SimpleAclAuthorizer, ACLs and supported combinations of resources and operations, see Authorization and ACLs.hostThe
hostproperty specifies a remote host from which the rule is allowed or denied.Use an asterisk (
*) to allow or deny the operation from all hosts. Thehostfield is optional. Ifhostis unspecified, the*value is used by default.
For more information about the AclRule object, see AclRule schema reference.
An example KafkaUser with authorization
6.1.2.1. Super user access to Kafka brokers Copy linkLink copied to clipboard!
If a user is added to a list of super users in a Kafka broker configuration, the user is allowed unlimited access to the cluster regardless of any authorization constraints defined in ACLs.
For more information on configuring super users, see authentication and authorization of Kafka brokers.
6.1.3. User quotas Copy linkLink copied to clipboard!
You can configure the spec for the KafkaUser resource to enforce quotas so that a user does not exceed access to Kafka brokers based on a byte threshold or a time limit of CPU utilization.
An example KafkaUser with user quotas
For more information on these properties, see the KafkaUserQuotas schema reference
6.2. Configuring a Kafka user Copy linkLink copied to clipboard!
Use the properties of the KafkaUser resource to configure a Kafka user.
You can use oc apply to create or modify users, and oc delete to delete existing users.
For example:
-
oc apply -f <user-config-file> -
oc delete KafkaUser <user-name>
When you configure the KafkaUser authentication and authorization mechanisms, ensure they match the equivalent Kafka configuration:
-
KafkaUser.spec.authenticationmatchesKafka.spec.kafka.listeners.*.authentication -
KafkaUser.spec.authorizationmatchesKafka.spec.kafka.authorization
This procedure shows how a user is created with TLS authentication. You can also create a user with SCRAM-SHA authentication.
The authentication required depends on the type of authentication configured for the Kafka broker listener.
Authentication between Kafka users and Kafka brokers depends on the authentication settings for each. For example, it is not possible to authenticate a user with TLS if it is not also enabled in the Kafka configuration.
Prerequisites
- A running Kafka cluster configured with a Kafka broker listener using TLS authentication and encryption.
- A running User Operator (typically deployed with the Entity Operator).
If you are using SCRAM-SHA authentication, you need a running Kafka cluster configured with a Kafka broker listener using SCRAM-SHA authentication.
Procedure
Prepare a YAML file containing the
KafkaUserto be created.An example
KafkaUserCopy to Clipboard Copied! Toggle word wrap Toggle overflow Create the
KafkaUserresource in OpenShift.oc apply -f <user-config-file>
oc apply -f <user-config-file>Copy to Clipboard Copied! Toggle word wrap Toggle overflow -
Use the credentials from the
my-usersecret in your client application.
Chapter 7. Kafka Bridge Copy linkLink copied to clipboard!
This chapter provides an overview of the AMQ Streams Kafka Bridge and helps you get started using its REST API to interact with AMQ Streams. To try out the Kafka Bridge in your local environment, see the Section 7.2, “Kafka Bridge quickstart” later in this chapter.
7.1. Kafka Bridge overview Copy linkLink copied to clipboard!
You can use the Kafka Bridge as an interface to make specific types of request to the Kafka cluster.
7.1.1. Kafka Bridge interface Copy linkLink copied to clipboard!
AMQ Streams Kafka Bridge provides a RESTful interface that allows HTTP-based clients to interact with a Kafka cluster. Kafka Bridge offers the advantages of a web API connection to AMQ Streams, without the need for client applications to interpret the Kafka protocol.
The API has two main resources — consumers and topics — that are exposed and made accessible through endpoints to interact with consumers and producers in your Kafka cluster. The resources relate only to the Kafka Bridge, not the consumers and producers connected directly to Kafka.
7.1.1.1. HTTP requests Copy linkLink copied to clipboard!
The Kafka Bridge supports HTTP requests to a Kafka cluster, with methods to:
- Send messages to a topic.
- Retrieve messages from topics.
- Create and delete consumers.
- Subscribe consumers to topics, so that they start receiving messages from those topics.
- Retrieve a list of topics that a consumer is subscribed to.
- Unsubscribe consumers from topics.
- Assign partitions to consumers.
- Commit a list of consumer offsets.
- Seek on a partition, so that a consumer starts receiving messages from the first or last offset position, or a given offset position.
The methods provide JSON responses and HTTP response code error handling. Messages can be sent in JSON or binary formats.
Clients can produce and consume messages without the requirement to use the native Kafka protocol.
Additional resources
- To view the API documentation, including example requests and responses, see the Kafka Bridge API reference on the AMQ Streams website.
7.1.2. Supported clients for the Kafka Bridge Copy linkLink copied to clipboard!
You can use the Kafka Bridge to integrate both internal and external HTTP client applications with your Kafka cluster.
- Internal clients
-
Internal clients are container-based HTTP clients running in the same OpenShift cluster as the Kafka Bridge itself. Internal clients can access the Kafka Bridge on the host and port defined in the
KafkaBridgecustom resource. - External clients
- External clients are HTTP clients running outside the OpenShift cluster in which the Kafka Bridge is deployed and running. External clients can access the Kafka Bridge through an OpenShift Route, a loadbalancer service, or using an Ingress.
HTTP internal and external client integration
7.1.3. Securing the Kafka Bridge Copy linkLink copied to clipboard!
AMQ Streams does not currently provide any encryption, authentication, or authorization for the Kafka Bridge. This means that requests sent from external clients to the Kafka Bridge are:
- Not encrypted, and must use HTTP rather than HTTPS
- Sent without authentication
However, you can secure the Kafka Bridge using other methods, such as:
- OpenShift Network Policies that define which pods can access the Kafka Bridge.
- Reverse proxies with authentication or authorization, for example, OAuth2 proxies.
- API Gateways.
- Ingress or OpenShift Routes with TLS termination.
The Kafka Bridge supports TLS encryption and TLS and SASL authentication when connecting to the Kafka Brokers. Within your OpenShift cluster, you can configure:
- TLS or SASL-based authentication between the Kafka Bridge and your Kafka cluster
- A TLS-encrypted connection between the Kafka Bridge and your Kafka cluster.
For more information, see Section 3.6.4.1, “Authentication support in Kafka Bridge”.
You can use ACLs in Kafka brokers to restrict the topics that can be consumed and produced using the Kafka Bridge.
7.1.4. Accessing the Kafka Bridge outside of OpenShift Copy linkLink copied to clipboard!
After deployment, the AMQ Streams Kafka Bridge can only be accessed by applications running in the same OpenShift cluster. These applications use the kafka-bridge-name-bridge-service Service to access the API.
If you want to make the Kafka Bridge accessible to applications running outside of the OpenShift cluster, you can expose it manually by using one of the following features:
- Services of types LoadBalancer or NodePort
- Ingress resources
- OpenShift Routes
If you decide to create Services, use the following labels in the selector to configure the pods to which the service will route the traffic:
# ...
selector:
strimzi.io/cluster: kafka-bridge-name
strimzi.io/kind: KafkaBridge
#...
# ...
selector:
strimzi.io/cluster: kafka-bridge-name
strimzi.io/kind: KafkaBridge
#...
- 1
- Name of the Kafka Bridge custom resource in your OpenShift cluster.
7.1.5. Requests to the Kafka Bridge Copy linkLink copied to clipboard!
Specify data formats and HTTP headers to ensure valid requests are submitted to the Kafka Bridge.
7.1.5.1. Content Type headers Copy linkLink copied to clipboard!
API request and response bodies are always encoded as JSON.
When performing consumer operations,
POSTrequests must provide the followingContent-Typeheader if there is a non-empty body:Content-Type: application/vnd.kafka.v2+json
Content-Type: application/vnd.kafka.v2+jsonCopy to Clipboard Copied! Toggle word wrap Toggle overflow When performing producer operations,
POSTrequests must provideContent-Typeheaders specifying the desired embedded data format, eitherjsonorbinary, as shown in the following table.Expand Embedded data format Content-Type header JSON
Content-Type: application/vnd.kafka.json.v2+jsonBinary
Content-Type: application/vnd.kafka.binary.v2+json
You set the embedded data format when creating a consumer using the consumers/groupid endpoint—for more information, see the next section.
The Content-Type must not be set if the POST request has an empty body. An empty body can be used to create a consumer with the default values.
7.1.5.2. Embedded data format Copy linkLink copied to clipboard!
The embedded data format is the format of the Kafka messages that are transmitted, over HTTP, from a producer to a consumer using the Kafka Bridge. Two embedded data formats are supported: JSON and binary.
When creating a consumer using the /consumers/groupid endpoint, the POST request body must specify an embedded data format of either JSON or binary. This is specified in the format field, for example:
{
"name": "my-consumer",
"format": "binary",
...
}
{
"name": "my-consumer",
"format": "binary",
...
}
- 1
- A binary embedded data format.
The embedded data format specified when creating a consumer must match the data format of the Kafka messages it will consume.
If you choose to specify a binary embedded data format, subsequent producer requests must provide the binary data in the request body as Base64-encoded strings. For example, when sending messages using the /topics/topicname endpoint, records.value must be encoded in Base64:
Producer requests must also provide a Content-Type header that corresponds to the embedded data format, for example, Content-Type: application/vnd.kafka.binary.v2+json.
7.1.5.3. Accept headers Copy linkLink copied to clipboard!
After creating a consumer, all subsequent GET requests must provide an Accept header in the following format:
Accept: application/vnd.kafka.embedded-data-format.v2+json
Accept: application/vnd.kafka.embedded-data-format.v2+json
The embedded-data-format is either json or binary.
For example, when retrieving records for a subscribed consumer using an embedded data format of JSON, include this Accept header:
Accept: application/vnd.kafka.json.v2+json
Accept: application/vnd.kafka.json.v2+json
7.1.6. Kafka Bridge API resources Copy linkLink copied to clipboard!
For the full list of REST API endpoints and descriptions, including example requests and responses, see the Kafka Bridge API reference on the AMQ Streams website.
7.1.7. Kafka Bridge deployment Copy linkLink copied to clipboard!
You deploy the Kafka Bridge into your OpenShift cluster by using the Cluster Operator.
After the Kafka Bridge is deployed, the Cluster Operator creates Kafka Bridge objects in your OpenShift cluster. Objects include the deployment, service, and pod, each named after the name given in the custom resource for the Kafka Bridge.
Additional resources
- For deployment instructions, see Section 2.5.1, “Deploying Kafka Bridge to your OpenShift cluster”.
- For detailed information on configuring the Kafka Bridge, see Section 3.6, “Kafka Bridge configuration”
-
For information on configuring the host and port for the
KafkaBridgeresource, see Section 3.6.5.3, “Kafka Bridge HTTP configuration”. - For information on integrating external clients, see Section 7.1.4, “Accessing the Kafka Bridge outside of OpenShift”.
7.2. Kafka Bridge quickstart Copy linkLink copied to clipboard!
Use this quickstart to try out the AMQ Streams Kafka Bridge in your local development environment. You will learn how to:
- Deploy the Kafka Bridge to your OpenShift cluster
- Expose the Kafka Bridge service to your local machine by using port-forwarding
- Produce messages to topics and partitions in your Kafka cluster
- Create a Kafka Bridge consumer
- Perform basic consumer operations, such as subscribing the consumer to topics and retrieving the messages that you produced
In this quickstart, HTTP requests are formatted as curl commands that you can copy and paste to your terminal. Access to an OpenShift cluster is required; to run and manage a local OpenShift cluster, use a tool such as Minikube, CodeReady Containers, or MiniShift.
Ensure you have the prerequisites and then follow the tasks in the order provided in this chapter.
About data formats
In this quickstart, you will produce and consume messages in JSON format, not binary. For more information on the data formats and HTTP headers used in the example requests, see Section 7.1.5, “Requests to the Kafka Bridge”.
Prerequisites for the quickstart
- Cluster administrator access to a local or remote OpenShift cluster.
- AMQ Streams is installed.
- A running Kafka cluster, deployed by the Cluster Operator, in an OpenShift namespace.
- The Entity Operator is deployed and running as part of the Kafka cluster.
7.2.1. Deploying the Kafka Bridge to your OpenShift cluster Copy linkLink copied to clipboard!
AMQ Streams includes a YAML example that specifies the configuration of the AMQ Streams Kafka Bridge. Make some minimal changes to this file and then deploy an instance of the Kafka Bridge to your OpenShift cluster.
Procedure
Edit the
examples/bridge/kafka-bridge.yamlfile.Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- When the Kafka Bridge is deployed,
-bridgeis appended to the name of the deployment and other related resources. In this example, the Kafka Bridge deployment is namedquickstart-bridgeand the accompanying Kafka Bridge service is namedquickstart-bridge-service. - 2
- In the
bootstrapServersproperty, enter the name of the Kafka cluster as the<cluster-name>.
Deploy the Kafka Bridge to your OpenShift cluster:
oc apply -f examples/bridge/kafka-bridge.yaml
oc apply -f examples/bridge/kafka-bridge.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow A
quickstart-bridgedeployment, service, and other related resources are created in your OpenShift cluster.Verify that the Kafka Bridge was successfully deployed:
oc get deployments
oc get deploymentsCopy to Clipboard Copied! Toggle word wrap Toggle overflow NAME READY UP-TO-DATE AVAILABLE AGE quickstart-bridge 1/1 1 1 34m my-cluster-connect 1/1 1 1 24h my-cluster-entity-operator 1/1 1 1 24h #...
NAME READY UP-TO-DATE AVAILABLE AGE quickstart-bridge 1/1 1 1 34m my-cluster-connect 1/1 1 1 24h my-cluster-entity-operator 1/1 1 1 24h #...Copy to Clipboard Copied! Toggle word wrap Toggle overflow
What to do next
After deploying the Kafka Bridge to your OpenShift cluster, expose the Kafka Bridge service to your local machine.
Additional resources
- For more detailed information about configuring the Kafka Bridge, see Section 3.6, “Kafka Bridge configuration”.
7.2.2. Exposing the Kafka Bridge service to your local machine Copy linkLink copied to clipboard!
Next, use port forwarding to expose the AMQ Streams Kafka Bridge service to your local machine on http://localhost:8080.
Port forwarding is only suitable for development and testing purposes.
Procedure
List the names of the pods in your OpenShift cluster:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Connect to the
quickstart-bridgepod on port8080:oc port-forward pod/quickstart-bridge-589d78784d-9jcnr 8080:8080 &
oc port-forward pod/quickstart-bridge-589d78784d-9jcnr 8080:8080 &Copy to Clipboard Copied! Toggle word wrap Toggle overflow NoteIf port 8080 on your local machine is already in use, use an alternative HTTP port, such as
8008.
API requests are now forwarded from port 8080 on your local machine to port 8080 in the Kafka Bridge pod.
7.2.3. Producing messages to topics and partitions Copy linkLink copied to clipboard!
Next, produce messages to topics in JSON format by using the topics endpoint. You can specify destination partitions for messages in the request body, as shown here. The partitions endpoint provides an alternative method for specifying a single destination partition for all messages as a path parameter.
Procedure
In a text editor, create a YAML definition for a Kafka topic with three partitions.
Copy to Clipboard Copied! Toggle word wrap Toggle overflow -
Save the file to the
examples/topicdirectory asbridge-quickstart-topic.yaml. Create the topic in your OpenShift cluster:
oc apply -f examples/topic/bridge-quickstart-topic.yaml
oc apply -f examples/topic/bridge-quickstart-topic.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow Using the Kafka Bridge, produce three messages to the topic you created:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow -
sales-lead-0001is sent to a partition based on the hash of the key. -
sales-lead-0002is sent directly to partition 2. -
sales-lead-0003is sent to a partition in thebridge-quickstart-topictopic using a round-robin method.
-
If the request is successful, the Kafka Bridge returns an
offsetsarray, along with a200code and acontent-typeheader ofapplication/vnd.kafka.v2+json. For each message, theoffsetsarray describes:- The partition that the message was sent to
The current message offset of the partition
Example response
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
What to do next
After producing messages to topics and partitions, create a Kafka Bridge consumer.
Additional resources
- POST /topics/{topicname} in the API reference documentation.
- POST /topics/{topicname}/partitions/{partitionid} in the API reference documentation.
7.2.4. Creating a Kafka Bridge consumer Copy linkLink copied to clipboard!
Before you can perform any consumer operations in the Kafka cluster, you must first create a consumer by using the consumers endpoint. The consumer is referred to as a Kafka Bridge consumer.
Procedure
Create a Kafka Bridge consumer in a new consumer group named
bridge-quickstart-consumer-group:Copy to Clipboard Copied! Toggle word wrap Toggle overflow -
The consumer is named
bridge-quickstart-consumerand the embedded data format is set asjson. - Some basic configuration settings are defined.
The consumer will not commit offsets to the log automatically because the
enable.auto.commitsetting isfalse. You will commit the offsets manually later in this quickstart.If the request is successful, the Kafka Bridge returns the consumer ID (
instance_id) and base URL (base_uri) in the response body, along with a200code.Example response
#... { "instance_id": "bridge-quickstart-consumer", "base_uri":"http://<bridge-name>-bridge-service:8080/consumers/bridge-quickstart-consumer-group/instances/bridge-quickstart-consumer" }#... { "instance_id": "bridge-quickstart-consumer", "base_uri":"http://<bridge-name>-bridge-service:8080/consumers/bridge-quickstart-consumer-group/instances/bridge-quickstart-consumer" }Copy to Clipboard Copied! Toggle word wrap Toggle overflow
-
The consumer is named
-
Copy the base URL (
base_uri) to use in the other consumer operations in this quickstart.
What to do next
Now that you have created a Kafka Bridge consumer, you can subscribe it to topics.
Additional resources
- POST /consumers/{groupid} in the API reference documentation.
7.2.5. Subscribing a Kafka Bridge consumer to topics Copy linkLink copied to clipboard!
After you have created a Kafka Bridge consumer, subscribe it to one or more topics by using the subscription endpoint. Once subscribed, the consumer starts receiving all messages that are produced to the topic.
Procedure
Subscribe the consumer to the
bridge-quickstart-topictopic that you created earlier, in Producing messages to topics and partitions:Copy to Clipboard Copied! Toggle word wrap Toggle overflow The
topicsarray can contain a single topic (as shown here) or multiple topics. If you want to subscribe the consumer to multiple topics that match a regular expression, you can use thetopic_patternstring instead of thetopicsarray.If the request is successful, the Kafka Bridge returns a
204(No Content) code only.
What to do next
After subscribing a Kafka Bridge consumer to topics, you can retrieve messages from the consumer.
Additional resources
- POST /consumers/{groupid}/instances/{name}/subscription in the API reference documentation.
7.2.6. Retrieving the latest messages from a Kafka Bridge consumer Copy linkLink copied to clipboard!
Next, retrieve the latest messages from the Kafka Bridge consumer by requesting data from the records endpoint. In production, HTTP clients can call this endpoint repeatedly (in a loop).
Procedure
- Produce additional messages to the Kafka Bridge consumer, as described in Producing messages to topics and partitions.
Submit a
GETrequest to therecordsendpoint:curl -X GET http://localhost:8080/consumers/bridge-quickstart-consumer-group/instances/bridge-quickstart-consumer/records \ -H 'accept: application/vnd.kafka.json.v2+json'
curl -X GET http://localhost:8080/consumers/bridge-quickstart-consumer-group/instances/bridge-quickstart-consumer/records \ -H 'accept: application/vnd.kafka.json.v2+json'Copy to Clipboard Copied! Toggle word wrap Toggle overflow After creating and subscribing to a Kafka Bridge consumer, a first GET request will return an empty response because the poll operation starts a rebalancing process to assign partitions.
Repeat step two to retrieve messages from the Kafka Bridge consumer.
The Kafka Bridge returns an array of messages — describing the topic name, key, value, partition, and offset — in the response body, along with a
200code. Messages are retrieved from the latest offset by default.Copy to Clipboard Copied! Toggle word wrap Toggle overflow NoteIf an empty response is returned, produce more records to the consumer as described in Producing messages to topics and partitions, and then try retrieving messages again.
What to do next
After retrieving messages from a Kafka Bridge consumer, try committing offsets to the log.
Additional resources
- GET /consumers/{groupid}/instances/{name}/records in the API reference documentation.
7.2.7. Commiting offsets to the log Copy linkLink copied to clipboard!
Next, use the offsets endpoint to manually commit offsets to the log for all messages received by the Kafka Bridge consumer. This is required because the Kafka Bridge consumer that you created earlier, in Creating a Kafka Bridge consumer, was configured with the enable.auto.commit setting as false.
Procedure
Commit offsets to the log for the
bridge-quickstart-consumer:curl -X POST http://localhost:8080/consumers/bridge-quickstart-consumer-group/instances/bridge-quickstart-consumer/offsets
curl -X POST http://localhost:8080/consumers/bridge-quickstart-consumer-group/instances/bridge-quickstart-consumer/offsetsCopy to Clipboard Copied! Toggle word wrap Toggle overflow Because no request body is submitted, offsets are committed for all the records that have been received by the consumer. Alternatively, the request body can contain an array (OffsetCommitSeekList) that specifies the topics and partitions that you want to commit offsets for.
If the request is successful, the Kafka Bridge returns a
204code only.
What to do next
After committing offsets to the log, try out the endpoints for seeking to offsets.
Additional resources
- POST /consumers/{groupid}/instances/{name}/offsets in the API reference documentation.
7.2.8. Seeking to offsets for a partition Copy linkLink copied to clipboard!
Next, use the positions endpoints to configure the Kafka Bridge consumer to retrieve messages for a partition from a specific offset, and then from the latest offset. This is referred to in Apache Kafka as a seek operation.
Procedure
Seek to a specific offset for partition 0 of the
quickstart-bridge-topictopic:Copy to Clipboard Copied! Toggle word wrap Toggle overflow If the request is successful, the Kafka Bridge returns a
204code only.Submit a
GETrequest to therecordsendpoint:curl -X GET http://localhost:8080/consumers/bridge-quickstart-consumer-group/instances/bridge-quickstart-consumer/records \ -H 'accept: application/vnd.kafka.json.v2+json'
curl -X GET http://localhost:8080/consumers/bridge-quickstart-consumer-group/instances/bridge-quickstart-consumer/records \ -H 'accept: application/vnd.kafka.json.v2+json'Copy to Clipboard Copied! Toggle word wrap Toggle overflow The Kafka Bridge returns messages from the offset that you seeked to.
Restore the default message retrieval behavior by seeking to the last offset for the same partition. This time, use the positions/end endpoint.
Copy to Clipboard Copied! Toggle word wrap Toggle overflow If the request is successful, the Kafka Bridge returns another
204code.
You can also use the positions/beginning endpoint to seek to the first offset for one or more partitions.
What to do next
In this quickstart, you have used the AMQ Streams Kafka Bridge to perform several common operations on a Kafka cluster. You can now delete the Kafka Bridge consumer that you created earlier.
Additional resources
- POST /consumers/{groupid}/instances/{name}/positions in the API reference documentation.
- POST /consumers/{groupid}/instances/{name}/positions/beginning in the API reference documentation.
- POST /consumers/{groupid}/instances/{name}/positions/end in the API reference documentation.
7.2.9. Deleting a Kafka Bridge consumer Copy linkLink copied to clipboard!
Finally, delete the Kafa Bridge consumer that you used throughout this quickstart.
Procedure
Delete the Kafka Bridge consumer by sending a
DELETErequest to the instances endpoint.curl -X DELETE http://localhost:8080/consumers/bridge-quickstart-consumer-group/instances/bridge-quickstart-consumer
curl -X DELETE http://localhost:8080/consumers/bridge-quickstart-consumer-group/instances/bridge-quickstart-consumerCopy to Clipboard Copied! Toggle word wrap Toggle overflow If the request is successful, the Kafka Bridge returns a
204code only.
Additional resources
- DELETE /consumers/{groupid}/instances/{name} in the API reference documentation.
Chapter 8. Using the Kafka Bridge with 3scale Copy linkLink copied to clipboard!
You can deploy and integrate Red Hat 3scale API Management with the AMQ Streams Kafka Bridge.
8.1. Using the Kafka Bridge with 3scale Copy linkLink copied to clipboard!
With a plain deployment of the Kafka Bridge, there is no provision for authentication or authorization, and no support for a TLS encrypted connection to external clients.
3scale can secure the Kafka Bridge with TLS, and provide authentication and authorization. Integration with 3scale also means that additional features like metrics, rate limiting and billing are available.
With 3scale, you can use different types of authentication for requests from external clients wishing to access AMQ Streams. 3scale supports the following types of authentication:
- Standard API Keys
- Single randomized strings or hashes acting as an identifier and a secret token.
- Application Identifier and Key pairs
- Immutable identifier and mutable secret key strings.
- OpenID Connect
- Protocol for delegated authentication.
Using an existing 3scale deployment?
If you already have 3scale deployed to OpenShift and you wish to use it with the Kafka Bridge, ensure that you have the correct setup.
Setup is described in Section 8.2, “Deploying 3scale for the Kafka Bridge”.
8.1.1. Kafka Bridge service discovery Copy linkLink copied to clipboard!
3scale is integrated using service discovery, which requires that 3scale is deployed to the same OpenShift cluster as AMQ Streams and the Kafka Bridge.
Your AMQ Streams Cluster Operator deployment must have the following environment variables set:
- STRIMZI_CUSTOM_KAFKA_BRIDGE_SERVICE_LABELS
- STRIMZI_CUSTOM_KAFKA_BRIDGE_SERVICE_ANNOTATIONS
When the Kafka Bridge is deployed, the service that exposes the REST interface of the Kafka Bridge uses the annotations and labels for discovery by 3scale.
-
A
discovery.3scale.net=truelabel is used by 3scale to find a service. - Annotations provide information about the service.
You can check your configuration in the OpenShift console by navigating to Services for the Kafka Bridge instance. Under Annotations you will see the endpoint to the OpenAPI specification for the Kafka Bridge.
8.1.2. 3scale APIcast gateway policies Copy linkLink copied to clipboard!
3scale is used in conjunction with 3scale APIcast, an API gateway deployed with 3scale that provides a single point of entry for the Kafka Bridge.
APIcast policies provide a mechanism to customize how the gateway operates. 3scale provides a set of standard policies for gateway configuration. You can also create your own policies.
For more information on APIcast policies, see Administering the API Gateway in the 3scale documentation.
APIcast policies for the Kafka Bridge
A sample policy configuration for 3scale integration with the Kafka Bridge is provided with the policies_config.json file, which defines:
- Anonymous access
- Header modification
- Routing
- URL rewriting
Gateway policies are enabled or disabled through this file.
You can use this sample as a starting point for defining your own policies.
- Anonymous access
- The anonymous access policy exposes a service without authentication, providing default credentials (for anonymous access) when a HTTP client does not provide them. The policy is not mandatory and can be disabled or removed if authentication is always needed.
- Header modification
The header modification policy allows existing HTTP headers to be modified, or new headers added to requests or responses passing through the gateway. For 3scale integration, the policy adds headers to every request passing through the gateway from a HTTP client to the Kafka Bridge.
When the Kafka Bridge receives a request for creating a new consumer, it returns a JSON payload containing a
base_urifield with the URI that the consumer must use for all the subsequent requests. For example:{ "instance_id": "consumer-1", "base_uri":"http://my-bridge:8080/consumers/my-group/instances/consumer1" }{ "instance_id": "consumer-1", "base_uri":"http://my-bridge:8080/consumers/my-group/instances/consumer1" }Copy to Clipboard Copied! Toggle word wrap Toggle overflow When using APIcast, clients send all subsequent requests to the gateway and not to the Kafka Bridge directly. So the URI requires the gateway hostname, not the address of the Kafka Bridge behind the gateway.
Using header modification policies, headers are added to requests from the HTTP client so that the Kafka Bridge uses the gateway hostname.
For example, by applying a
Forwarded: host=my-gateway:80;proto=httpheader, the Kafka Bridge delivers the following to the consumer.{ "instance_id": "consumer-1", "base_uri":"http://my-gateway:80/consumers/my-group/instances/consumer1" }{ "instance_id": "consumer-1", "base_uri":"http://my-gateway:80/consumers/my-group/instances/consumer1" }Copy to Clipboard Copied! Toggle word wrap Toggle overflow An
X-Forwarded-Pathheader carries the original path contained in a request from the client to the gateway. This header is strictly related to the routing policy applied when a gateway supports more than one Kafka Bridge instance.- Routing
A routing policy is applied when there is more than one Kafka Bridge instance. Requests must be sent to the same Kafka Bridge instance where the consumer was initially created, so a request must specify a route for the gateway to forward a request to the appropriate Kafka Bridge instance.
A routing policy names each bridge instance, and routing is performed using the name. You specify the name in the
KafkaBridgecustom resource when you deploy the Kafka Bridge.For example, each request (using
X-Forwarded-Path) from a consumer to:http://my-gateway:80/my-bridge-1/consumers/my-group/instances/consumer1is forwarded to:
http://my-bridge-1-bridge-service:8080/consumers/my-group/instances/consumer1URL rewriting policy removes the bridge name, as it is not used when forwarding the request from the gateway to the Kafka Bridge.
- URL rewriting
The URL rewiring policy ensures that a request to a specific Kafka Bridge instance from a client does not contain the bridge name when forwarding the request from the gateway to the Kafka Bridge.
The bridge name is not used in the endpoints exposed by the bridge.
8.1.3. TLS validation Copy linkLink copied to clipboard!
You can set up APIcast for TLS validation, which requires a self-managed deployment of APIcast using a template. The apicast service is exposed as a route.
You can also apply a TLS policy to the Kafka Bridge API.
For more information on TLS configuration, see Administering the API Gateway in the 3scale documentation.
8.1.4. 3scale documentation Copy linkLink copied to clipboard!
The procedure to deploy 3scale for use with the Kafka Bridge assumes some understanding of 3scale.
For more information, refer to the 3scale product documentation:
8.2. Deploying 3scale for the Kafka Bridge Copy linkLink copied to clipboard!
In order to use 3scale with the Kafka Bridge, you first deploy it and then configure it to discover the Kafka Bridge API.
You will also use 3scale APIcast and 3scale toolbox.
- APIcast is provided by 3scale as an NGINX-based API gateway for HTTP clients to connect to the Kafka Bridge API service.
- 3scale toolbox is a configuration tool that is used to import the OpenAPI specification for the Kafka Bridge service to 3scale.
In this scenario, you run AMQ Streams, Kafka, the Kafka Bridge and 3scale/APIcast in the same OpenShift cluster.
If you already have 3scale deployed in the same cluster as the Kafka Bridge, you can skip the deployment steps and use your current deployment.
Prerequisites
For the 3scale deployment:
- Check the Red Hat 3scale API Management supported configurations.
-
Installation requires a user with
cluster-adminrole, such assystem:admin. You need access to the JSON files describing the:
-
Kafka Bridge OpenAPI specification (
openapiv2.json) Header modification and routing policies for the Kafka Bridge (
policies_config.json)Find the JSON files on GitHub.
-
Kafka Bridge OpenAPI specification (
Procedure
Deploy 3scale API Management to the OpenShift cluster.
Create a new project or use an existing project.
oc new-project my-project \ --description="description" --display-name="display_name"oc new-project my-project \ --description="description" --display-name="display_name"Copy to Clipboard Copied! Toggle word wrap Toggle overflow Deploy 3scale.
Use the information provided in the Installing 3scale guide to deploy 3scale on OpenShift using a template or operator.
Whichever approach you use, make sure that you set the WILDCARD_DOMAIN parameter to the domain of your OpenShift cluster.
Make a note of the URLS and credentials presented for accessing the 3scale Admin Portal.
Grant authorization for 3scale to discover the Kafka Bridge service:
oc adm policy add-cluster-role-to-user view system:serviceaccount:my-project:amp
oc adm policy add-cluster-role-to-user view system:serviceaccount:my-project:ampCopy to Clipboard Copied! Toggle word wrap Toggle overflow Verify that 3scale was successfully deployed to the Openshift cluster from the OpenShift console or CLI.
For example:
oc get deployment 3scale-operator
oc get deployment 3scale-operatorCopy to Clipboard Copied! Toggle word wrap Toggle overflow Set up 3scale toolbox.
- Use the information provided in the Operating 3scale guide to install 3scale toolbox.
Set environment variables to be able to interact with 3scale:
export REMOTE_NAME=strimzi-kafka-bridge export SYSTEM_NAME=strimzi_http_bridge_for_apache_kafka export TENANT=strimzi-kafka-bridge-admin export PORTAL_ENDPOINT=$TENANT.3scale.net export TOKEN=3scale access token
export REMOTE_NAME=strimzi-kafka-bridge1 export SYSTEM_NAME=strimzi_http_bridge_for_apache_kafka2 export TENANT=strimzi-kafka-bridge-admin3 export PORTAL_ENDPOINT=$TENANT.3scale.net4 export TOKEN=3scale access token5 Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
REMOTE_NAMEis the name assigned to the remote address of the 3scale Admin Portal.- 2
SYSTEM_NAMEis the name of the 3scale service/API created by importing the OpenAPI specification through the 3scale toolbox.- 3
TENANTis the tenant name of the 3scale Admin Portal (that is,https://$TENANT.3scale.net).- 4
PORTAL_ENDPOINTis the endpoint running the 3scale Admin Portal.- 5
TOKENis the access token provided by the 3scale Admin Portal for interaction through the 3scale toolbox or HTTP requests.
Configure the remote web address of the 3scale toolbox:
3scale remote add $REMOTE_NAME https://$TOKEN@$PORTAL_ENDPOINT/
3scale remote add $REMOTE_NAME https://$TOKEN@$PORTAL_ENDPOINT/Copy to Clipboard Copied! Toggle word wrap Toggle overflow Now the endpoint address of the 3scale Admin portal does not need to be specified every time you run the toolbox.
Check that your Cluster Operator deployment has the labels and annotations properties required for the Kafka Bridge service to be discovered by 3scale.
Copy to Clipboard Copied! Toggle word wrap Toggle overflow If not, add the properties through the OpenShift console or try redeploying the Cluster Operator and the Kafka Bridge.
Discover the Kafka Bridge API service through 3scale.
- Log in to the 3scale Admin portal using the credentials provided when 3scale was deployed.
- From the 3scale Admin Portal, navigate to → where you will see the Kafka Bridge service.
Click .
You may need to refresh the page to see the Kafka Bridge service.
Now you need to import the configuration for the service. You do this from an editor, but keep the portal open to check the imports are successful.
Edit the Host field in the OpenAPI specification (JSON file) to use the base URL of the Kafka Bridge service:
For example:
"host": "my-bridge-bridge-service.my-project.svc.cluster.local:8080"
"host": "my-bridge-bridge-service.my-project.svc.cluster.local:8080"Copy to Clipboard Copied! Toggle word wrap Toggle overflow Check the
hostURL includes the correct:- Kafka Bridge name (my-bridge)
- Project name (my-project)
- Port for the Kafka Bridge (8080)
Import the updated OpenAPI specification using the 3scale toolbox:
3scale import openapi -k -d $REMOTE_NAME openapiv2.json -t myproject-my-bridge-bridge-service
3scale import openapi -k -d $REMOTE_NAME openapiv2.json -t myproject-my-bridge-bridge-serviceCopy to Clipboard Copied! Toggle word wrap Toggle overflow Import the header modification and routing policies for the service (JSON file).
Locate the ID for the service you created in 3scale.
Here we use the `jq` utility:
export SERVICE_ID=$(curl -k -s -X GET "https://$PORTAL_ENDPOINT/admin/api/services.json?access_token=$TOKEN" | jq ".services[] | select(.service.system_name | contains(\"$SYSTEM_NAME\")) | .service.id")
export SERVICE_ID=$(curl -k -s -X GET "https://$PORTAL_ENDPOINT/admin/api/services.json?access_token=$TOKEN" | jq ".services[] | select(.service.system_name | contains(\"$SYSTEM_NAME\")) | .service.id")Copy to Clipboard Copied! Toggle word wrap Toggle overflow You need the ID when importing the policies.
Import the policies:
curl -k -X PUT "https://$PORTAL_ENDPOINT/admin/api/services/$SERVICE_ID/proxy/policies.json" --data "access_token=$TOKEN" --data-urlencode policies_config@policies_config.json
curl -k -X PUT "https://$PORTAL_ENDPOINT/admin/api/services/$SERVICE_ID/proxy/policies.json" --data "access_token=$TOKEN" --data-urlencode policies_config@policies_config.jsonCopy to Clipboard Copied! Toggle word wrap Toggle overflow
- From the 3scale Admin Portal, navigate to → to check that the endpoints and policies for the Kafka Bridge service have loaded.
- Navigate to → to create an application plan.
Navigate to → → → to create an application.
The application is required in order to obtain a user key for authentication.
(Production environment step) To make the API available to the production gateway, promote the configuration:
3scale proxy-config promote $REMOTE_NAME $SERVICE_ID
3scale proxy-config promote $REMOTE_NAME $SERVICE_IDCopy to Clipboard Copied! Toggle word wrap Toggle overflow Use an API testing tool to verify you can access the Kafka Bridge through the APIcast gateway using a call to create a consumer, and the user key created for the application.
For example:
https//my-project-my-bridge-bridge-service-3scale-apicast-staging.example.com:443/consumers/my-group?user_key=3dfc188650101010ecd7fdc56098ce95
https//my-project-my-bridge-bridge-service-3scale-apicast-staging.example.com:443/consumers/my-group?user_key=3dfc188650101010ecd7fdc56098ce95Copy to Clipboard Copied! Toggle word wrap Toggle overflow If a payload is returned from the Kafka Bridge, the consumer was created successfully.
{ "instance_id": "consumer1", "base uri": "https//my-project-my-bridge-bridge-service-3scale-apicast-staging.example.com:443/consumers/my-group/instances/consumer1" }{ "instance_id": "consumer1", "base uri": "https//my-project-my-bridge-bridge-service-3scale-apicast-staging.example.com:443/consumers/my-group/instances/consumer1" }Copy to Clipboard Copied! Toggle word wrap Toggle overflow The base URI is the address that the client will use in subsequent requests.
Chapter 9. Cruise Control for cluster rebalancing Copy linkLink copied to clipboard!
Cruise Control for cluster rebalancing is a Technology Preview only. Technology Preview features are not supported with Red Hat production service-level agreements (SLAs) and might not be functionally complete. Red Hat does not recommend implementing any Technology Preview features in production environments. This Technology Preview feature provides early access to upcoming product innovations, enabling you to test functionality and provide feedback during the development process. For more information about the support scope of Red Hat Technology Preview features, see Technology Preview Features Support Scope.
You can deploy Cruise Control to your AMQ Streams cluster and use it to rebalance the Kafka cluster.
Cruise Control is an open source system for automating Kafka operations, such as monitoring cluster workload, rebalancing a cluster based on predefined constraints, and detecting and fixing anomalies. It consists of four main components—the Load Monitor, the Analyzer, the Anomaly Detector, and the Executor—and a REST API for client interactions. AMQ Streams utilizes the REST API to support the following Cruise Control features:
- Generating optimization proposals from multiple optimization goals.
- Rebalancing a Kafka cluster based on an optimization proposal.
Other Cruise Control features are not currently supported, including anomaly detection, notifications, write-your-own goals, and changing the topic replication factor.
Example YAML files for Cruise Control are provided in examples/cruise-control/.
9.1. Why use Cruise Control? Copy linkLink copied to clipboard!
Cruise Control reduces the time and effort involved in running an efficient and balanced Kafka cluster.
A typical cluster can become unevenly loaded over time. Partitions that handle large amounts of message traffic might be unevenly distributed across the available brokers. To rebalance the cluster, administrators must monitor the load on brokers and manually reassign busy partitions to brokers with spare capacity.
Cruise Control automates the cluster rebalancing process. It constructs a workload model of resource utilization for the cluster—based on CPU, disk, and network load—and generates optimization proposals (that you can approve or reject) for more balanced partition assignments. A set of configurable optimization goals is used to calculate these proposals.
When you approve an optimization proposal, Cruise Control applies it to your Kafka cluster. When the cluster rebalancing operation is complete, the broker pods are used more effectively and the Kafka cluster is more evenly balanced.
Additional resources
9.2. Optimization goals overview Copy linkLink copied to clipboard!
To rebalance a Kafka cluster, Cruise Control uses optimization goals to generate optimization proposals, which you can approve or reject.
Optimization goals are constraints on workload redistribution and resource utilization across a Kafka cluster. With a few exceptions, AMQ Streams supports all the optimization goals developed in the Cruise Control project. The supported goals, in the default descending order of priority, are as follows:
- Rack-awareness
- Replica capacity
- Capacity: Disk capacity, Network inbound capacity, Network outbound capacity
- Replica distribution
- Potential network output
- Resource distribution: Disk utilization distribution, Network inbound utilization distribution, Network outbound utilization distribution
- Leader bytes-in rate distribution
- Topic replica distribution
- Leader replica distribution
- Preferred leader election
For more information on each optimization goal, see Goals in the Cruise Control Wiki.
CPU goals, intra-broker disk goals, "Write your own" goals, and Kafka assigner goals are not yet supported.
Goals configuration in AMQ Streams custom resources
You configure optimization goals in Kafka and KafkaRebalance custom resources. Cruise Control has configurations for hard optimization goals that must be satisfied, as well as master, default, and user-provided optimization goals. Optimization goals are subject to any capacity limits on broker resources.
The following sections describe each goal configuration in more detail.
Hard goals and soft goals
Hard goals are goals that must be satisfied in optimization proposals. Goals that are not configured as hard goals are known as soft goals. You can think of soft goals as best effort goals: they do not need to be satisfied in optimization proposals, but are included in optimization calculations. An optimization proposal that violates one or more soft goals, but satisfies all hard goals, is valid.
Cruise Control will calculate optimization proposals that satisfy all the hard goals and as many soft goals as possible (in their priority order). An optimization proposal that does not satisfy all the hard goals is rejected by Cruise Control and not sent to the user for approval.
For example, you might have a soft goal to distribute a topic’s replicas evenly across the cluster (the topic replica distribution goal). Cruise Control will ignore this goal if doing so enables all the configured hard goals to be met.
In Cruise Control, the following master optimization goals are preset as hard goals:
RackAwareGoal; ReplicaCapacityGoal; DiskCapacityGoal; NetworkInboundCapacityGoal; NetworkOutboundCapacityGoal
RackAwareGoal; ReplicaCapacityGoal; DiskCapacityGoal; NetworkInboundCapacityGoal; NetworkOutboundCapacityGoal
You configure hard goals in the Cruise Control deployment configuration, by editing the hard.goals property in Kafka.spec.cruiseControl.config.
-
To inherit the preset hard goals from Cruise Control, do not specify the
hard.goalsproperty inKafka.spec.cruiseControl.config -
To change the preset hard goals, specify the desired goals in the
hard.goalsproperty, using their fully-qualified domain names.
Example Kafka configuration for hard optimization goals
Increasing the number of configured hard goals will reduce the likelihood of Cruise Control generating valid optimization proposals.
If skipHardGoalCheck: true is specified in the KafkaRebalance custom resource, Cruise Control does not check that the list of user-provided optimization goals (in KafkaRebalance.spec.goals) contains all the configured hard goals (hard.goals). Therefore, if some, but not all, of the user-provided optimization goals are in the hard.goals list, Cruise Control will still treat them as hard goals even if skipHardGoalCheck: true is specified.
Master optimization goals
The master optimization goals are available to all users. Goals that are not listed in the master optimization goals are not available for use in Cruise Control operations.
Unless you change the Cruise Control deployment configuration, AMQ Streams will inherit the following master optimization goals from Cruise Control, in descending priority order:
RackAwareGoal; ReplicaCapacityGoal; DiskCapacityGoal; NetworkInboundCapacityGoal; NetworkOutboundCapacityGoal; ReplicaDistributionGoal; PotentialNwOutGoal; DiskUsageDistributionGoal; NetworkInboundUsageDistributionGoal; NetworkOutboundUsageDistributionGoal; TopicReplicaDistributionGoal; LeaderReplicaDistributionGoal; LeaderBytesInDistributionGoal; PreferredLeaderElectionGoal
RackAwareGoal; ReplicaCapacityGoal; DiskCapacityGoal; NetworkInboundCapacityGoal; NetworkOutboundCapacityGoal; ReplicaDistributionGoal; PotentialNwOutGoal; DiskUsageDistributionGoal; NetworkInboundUsageDistributionGoal; NetworkOutboundUsageDistributionGoal; TopicReplicaDistributionGoal; LeaderReplicaDistributionGoal; LeaderBytesInDistributionGoal; PreferredLeaderElectionGoal
Five of these goals are preset as hard goals.
To reduce complexity, we recommend that you use the inherited master optimization goals, unless you need to completely exclude one or more goals from use in KafkaRebalance resources. The priority order of the master optimization goals can be modified, if desired, in the configuration for default optimization goals.
You configure master optimization goals, if necessary, in the Cruise Control deployment configuration: Kafka.spec.cruiseControl.config.goals
-
To accept the inherited master optimization goals, do not specify the
goalsproperty inKafka.spec.cruiseControl.config. -
If you need to modify the inherited master optimization goals, specify a list of goals, in descending priority order, in the
goalsconfiguration option.
If you change the inherited master optimization goals, you must ensure that the hard goals, if configured in the hard.goals property in Kafka.spec.cruiseControl.config, are a subset of the master optimization goals that you configured. Otherwise, errors will occur when generating optimization proposals.
Default optimization goals
Cruise Control uses the default optimization goals to generate the cached optimization proposal. For more information about the cached optimization proposal, see Section 9.3, “Optimization proposals overview”.
You can override the default optimization goals by setting user-provided optimization goals in a KafkaRebalance custom resource.
Unless you specify default.goals in the Cruise Control deployment configuration, the master optimization goals are used as the default optimization goals. In this case, the cached optimization proposal is generated using the master optimization goals.
-
To use the master optimization goals as the default goals, do not specify the
default.goalsproperty inKafka.spec.cruiseControl.config. -
To modify the default optimization goals, edit the
default.goalsproperty inKafka.spec.cruiseControl.config. You must use a subset of the master optimization goals.
Example Kafka configuration for default optimization goals
If no default optimization goals are specified, the cached proposal is generated using the master optimization goals.
User-provided optimization goals
User-provided optimization goals narrow down the configured default goals for a particular optimization proposal. You can set them, as required, in spec.goals in the KafkaRebalance custom resource:
KafkaRebalance.spec.goals
KafkaRebalance.spec.goals
User-provided optimization goals can generate optimization proposals for different scenarios. For example, you might want to optimize leader replica distribution across the Kafka cluster without considering disk capacity or disk utilization. So, you create a KafkaRebalance custom resource containing a single user-provided goal for leader replica distribution.
User-provided optimization goals must:
- Include all configured hard goals, or an error occurs
- Be a subset of the master optimization goals
To ignore the configured hard goals in an optimization proposal, add the skipHardGoalCheck: true option to the KafkaRebalance custom resource.
Additional resources
- Section 9.5, “Cruise Control configuration”
- Configurations in the Cruise Control Wiki.
9.3. Optimization proposals overview Copy linkLink copied to clipboard!
An optimization proposal is a summary of proposed changes that would produce a more balanced Kafka cluster, with partition workloads distributed more evenly among the brokers. Each optimization proposal is based on the set of optimization goals that was used to generate it, subject to any configured capacity limits on broker resources.
An optimization proposal is contained in the Status.Optimization Result property of a KafkaRebalance custom resource. The information provided is a summary of the full optimization proposal. Use the summary to decide whether to:
- Approve the optimization proposal. This instructs Cruise Control to apply the proposal to the Kafka cluster and start a cluster rebalance operation.
- Reject the optimization proposal. You can change the optimization goals and then generate another proposal.
All optimization proposals are dry runs: you cannot approve a cluster rebalance without first generating an optimization proposal. There is no limit to the number of optimization proposals that can be generated.
Cached optimization proposal
Cruise Control maintains a cached optimization proposal based on the configured default optimization goals. Generated from the workload model, the cached optimization proposal is updated every 15 minutes to reflect the current state of the Kafka cluster. If you generate an optimization proposal using the default optimization goals, Cruise Control returns the most recent cached proposal.
To change the cached optimization proposal refresh interval, edit the proposal.expiration.ms setting in the Cruise Control deployment configuration. Consider a shorter interval for fast changing clusters, although this increases the load on the Cruise Control server.
Contents of optimization proposals
The following table explains the properties contained in an optimization proposal:
| JSON property | Description |
|---|---|
|
| The total number of partition replicas that will be transferred between the disks of the cluster’s brokers.
Performance impact during rebalance operation: Relatively high, but lower than |
|
| Not yet supported. An empty list is returned. |
|
| The number of partition replicas that will be moved between separate brokers. Performance impact during rebalance operation: Relatively high. |
|
| A measurement of the overall balancedness of a Kafka Cluster, before and after the optimization proposal was generated.
The score is calculated by subtracting the sum of the
The |
|
|
The sum of the size of each partition replica that will be moved between disks on the same broker (see also
Performance impact during rebalance operation: Variable. The larger the number, the longer the cluster rebalance will take to complete. Moving a large amount of data between disks on the same broker has less impact than between separate brokers (see |
|
| The number of metrics windows upon which the optimization proposal is based. |
|
|
The sum of the size of each partition replica that will be moved to a separate broker (see also Performance impact during rebalance operation: Variable. The larger the number, the longer the cluster rebalance will take to complete. |
|
|
The percentage of partitions in the Kafka cluster covered by the optimization proposal. Affected by the number of |
|
| Not yet supported. An empty list is returned. |
|
| The number of partitions whose leaders will be switched to different replicas. This involves a change to ZooKeeper configuration. Performance impact during rebalance operation: Relatively low. |
|
| Not yet supported. An empty list is returned. |
9.4. Deploying Cruise Control Copy linkLink copied to clipboard!
To deploy Cruise Control to your AMQ Streams cluster, define the configuration using the cruiseControl property in the Kafka resource, and then create or update the resource.
Deploy one instance of Cruise Control per Kafka cluster.
Prerequisites
- An OpenShift cluster
- A running Cluster Operator
Procedure
Edit the
Kafkaresource and add thecruiseControlproperty.The properties you can configure are shown in this example configuration:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Specifies capacity limits for broker resources. For more information, see Capacity configuration.
- 2
- Defines the Cruise Control configuration, including the default optimization goals (in
default.goals) and any customizations to the master optimization goals (ingoals) or the hard goals (inhard.goals). You can provide any standard Cruise Control configuration option apart from those managed directly by AMQ Streams. For more information on configuring optimization goals, see Section 9.2, “Optimization goals overview”. - 3
- CPU and memory resources reserved for Cruise Control. For more information, see Section 3.1.12, “CPU and memory resources”.
- 4
- Defined loggers and log levels added directly (inline) or indirectly (external) through a ConfigMap. A custom ConfigMap must be placed under the log4j.properties key. Cruise Control has a single logger named
cruisecontrol.root.logger. You can set the log level to INFO, ERROR, WARN, TRACE, DEBUG, FATAL or OFF. For more information, see Logging configuration. - 5
- 6
- 7
Create or update the resource:
oc apply -f kafka.yaml
oc apply -f kafka.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow Verify that Cruise Control was successfully deployed:
oc get deployments -l app.kubernetes.io/name=strimzi
oc get deployments -l app.kubernetes.io/name=strimziCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Auto-created topics
The following table shows the three topics that are automatically created when Cruise Control is deployed. These topics are required for Cruise Control to work properly and must not be deleted or changed.
| Auto-created topic | Created by | Function |
|---|---|---|
|
| AMQ Streams Metrics Reporter | Stores the raw metrics from the Metrics Reporter in each Kafka broker. |
|
| Cruise Control | Stores the derived metrics for each partition. These are created by the Metric Sample Aggregator. |
|
| Cruise Control | Stores the metrics samples used to create the Cluster Workload Model. |
To prevent the removal of records that are needed by Cruise Control, log compaction is disabled in the auto-created topics.
What to do next
After configuring and deploying Cruise Control, you can generate optimization proposals.
Additional resources
9.5. Cruise Control configuration Copy linkLink copied to clipboard!
The config property in Kafka.spec.cruiseControl contains configuration options as keys with values as one of the following JSON types:
- String
- Number
- Boolean
Strings that look like JSON or YAML will need to be explicitly quoted.
You can specify and configure all the options listed in the "Configurations" section of the Cruise Control documentation, apart from those managed directly by AMQ Streams. Specifically, you cannot modify configuration options with keys equal to or starting with one of the following strings:
-
bootstrap.servers -
zookeeper. -
ssl. -
security. -
failed.brokers.zk.path -
webserver.http.port -
webserver.http.address -
webserver.api.urlprefix -
metric.reporter.sampler.bootstrap.servers -
metric.reporter.topic -
metric.reporter.topic.pattern -
partition.metric.sample.store.topic -
broker.metric.sample.store.topic -
capacity.config.file -
skip.sample.store.topic.rack.awareness.check -
cruise.control.metrics.topic -
sasl.
If restricted options are specified, they are ignored and a warning message is printed to the Cluster Operator log file. All the supported options are passed to Cruise Control.
An example Cruise Control configuration
Capacity configuration
Cruise Control uses capacity limits to determine if certain resource-based optimization goals are being broken.
You specify capacity limits for Kafka broker resources in the brokerCapacity property in Kafka.spec.cruiseControl . Capacity limits can be set for the following broker resources in the described units:
-
disk- Disk storage in bytes -
cpuUtilization- CPU utilization as a percent (0-100) -
inboundNetwork- Inbound network throughput in bytes per second -
outboundNetwork- Outbound network throughput in bytes per second
Because AMQ Streams Kafka brokers are homogeneous, Cruise Control applies the same capacity limits to every broker it is monitoring.
An example Cruise Control brokerCapacity configuration
Additional resources
For more information, refer to the Section B.67, “BrokerCapacity schema reference”.
Logging configuration
Cruise Control has its own configurable logger:
-
cruisecontrol.root.logger
Cruise Control uses the Apache log4j logger implementation.
Use the logging property to configure loggers and logger levels.
You can set the log levels by specifying the logger and level directly (inline) or use a custom (external) ConfigMap. If a ConfigMap is used, you set logging.name property to the name of the ConfigMap containing the external logging configuration. Inside the ConfigMap, the logging configuration is described using log4j.properties.
Here we see examples of inline and external logging.
Inline logging
External logging
9.6. Generating optimization proposals Copy linkLink copied to clipboard!
When you create or update a KafkaRebalance resource, Cruise Control generates an optimization proposal for the Kafka cluster based on the configured optimization goals.
Analyze the summary information in the optimization proposal and decide whether to approve it.
Prerequisites
- You have deployed Cruise Control to your AMQ Streams cluster.
- You have configured optimization goals and, optionally, capacity limits on broker resources.
Procedure
Create a
KafkaRebalanceresource:To use the default optimization goals defined in the
Kafkaresource, leave thespecproperty empty:Copy to Clipboard Copied! Toggle word wrap Toggle overflow To configure user-provided optimization goals instead of using the default goals, add the
goalsproperty and enter one or more goals.In the following example, rack awareness and replica capacity are configured as user-provided optimization goals:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
Create or update the resource:
oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow The Cluster Operator requests the optimization proposal from Cruise Control. This might take a few minutes depending on the size of the Kafka cluster.
Check the status of the
KafkaRebalanceresource:oc describe kafkarebalance rebalance-cr-name
oc describe kafkarebalance rebalance-cr-nameCopy to Clipboard Copied! Toggle word wrap Toggle overflow Cruise Control returns one of two statuses:
-
PendingProposal: The rebalance operator is polling the Cruise Control API to check if the optimization proposal is ready. -
ProposalReady: The optimization proposal is ready for review and, if desired, approval. The optimization proposal is contained in theStatus.Optimization Resultproperty of theKafkaRebalanceresource.
-
Review the optimization proposal.
oc describe kafkarebalance rebalance-cr-name
oc describe kafkarebalance rebalance-cr-nameCopy to Clipboard Copied! Toggle word wrap Toggle overflow Here is an example proposal:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow The properties in the
Optimization Resultsection describe the pending cluster rebalance operation. For descriptions of each property, see Contents of optimization proposals.
What to do next
Additional resources
9.7. Approving an optimization proposal Copy linkLink copied to clipboard!
You can approve an optimization proposal generated by Cruise Control, if its status is ProposalReady. Cruise Control will then apply the optimization proposal to the Kafka cluster, reassigning partitions to brokers and changing partition leadership.
This is not a dry run. Before you approve an optimization proposal, you must:
- Refresh the proposal in case it has become out of date.
- Carefully review the contents of the proposal.
Prerequisites
- You have generated an optimization proposal from Cruise Control.
-
The
KafkaRebalancecustom resource status isProposalReady.
Procedure
Perform these steps for the optimization proposal that you want to approve:
Unless the optimization proposal is newly generated, check that it is based on current information about the state of the Kafka cluster. To do so, refresh the optimization proposal to make sure it uses the latest cluster metrics:
Annotate the
KafkaRebalanceresource in OpenShift withrefresh:oc annotate kafkarebalance rebalance-cr-name strimzi.io/rebalance=refresh
oc annotate kafkarebalance rebalance-cr-name strimzi.io/rebalance=refreshCopy to Clipboard Copied! Toggle word wrap Toggle overflow Check the status of the
KafkaRebalanceresource:oc describe kafkarebalance rebalance-cr-name
oc describe kafkarebalance rebalance-cr-nameCopy to Clipboard Copied! Toggle word wrap Toggle overflow -
Wait until the status changes to
ProposalReady.
Approve the optimization proposal that you want Cruise Control to apply.
Annotate the
KafkaRebalanceresource in OpenShift:oc annotate kafkarebalance rebalance-cr-name strimzi.io/rebalance=approve
oc annotate kafkarebalance rebalance-cr-name strimzi.io/rebalance=approveCopy to Clipboard Copied! Toggle word wrap Toggle overflow - The Cluster Operator detects the annotated resource and instructs Cruise Control to rebalance the Kafka cluster.
Check the status of the
KafkaRebalanceresource:oc describe kafkarebalance rebalance-cr-name
oc describe kafkarebalance rebalance-cr-nameCopy to Clipboard Copied! Toggle word wrap Toggle overflow Cruise Control returns one of three statuses:
- Rebalancing: The cluster rebalance operation is in progress.
- Ready: The cluster rebalancing operation completed successfully.
-
NotReady: An error occurred—see Section 9.9, “Fixing problems with a
KafkaRebalanceresource”.
9.8. Stopping a cluster rebalance Copy linkLink copied to clipboard!
Once started, a cluster rebalance operation might take some time to complete and affect the overall performance of the Kafka cluster.
If you want to stop a cluster rebalance operation that is in progress, apply the stop annotation to the KafkaRebalance custom resource. This instructs Cruise Control to finish the current batch of partition reassignments and then stop the rebalance. When the rebalance has stopped, completed partition reassignments have already been applied; therefore, the state of the Kafka cluster is different when compared to prior to the start of the rebalance operation. If further rebalancing is required, you should generate a new optimization proposal.
The performance of the Kafka cluster in the intermediate (stopped) state might be worse than in the initial state.
Prerequisites
-
You have approved the optimization proposal by annotating the
KafkaRebalancecustom resource withapprove. -
The status of the
KafkaRebalancecustom resource isRebalancing.
Procedure
Annotate the
KafkaRebalanceresource in OpenShift:oc annotate kafkarebalance rebalance-cr-name strimzi.io/rebalance=stop
oc annotate kafkarebalance rebalance-cr-name strimzi.io/rebalance=stopCopy to Clipboard Copied! Toggle word wrap Toggle overflow Check the status of the
KafkaRebalanceresource:oc describe kafkarebalance rebalance-cr-name
oc describe kafkarebalance rebalance-cr-nameCopy to Clipboard Copied! Toggle word wrap Toggle overflow -
Wait until the status changes to
Stopped.
Additional resources
9.9. Fixing problems with a KafkaRebalance resource Copy linkLink copied to clipboard!
If an issue occurs when creating a KafkaRebalance resource or interacting with Cruise Control, the error is reported in the resource status, along with details of how to fix it. The resource also moves to the NotReady state.
To continue with the cluster rebalance operation, you must fix the problem in the KafkaRebalance resource itself. Problems might include the following:
- A misconfigured parameter.
- The Cruise Control server is not reachable.
After fixing the issue, you need to add the refresh annotation to the KafkaRebalance resource. During a “refresh”, a new optimization proposal is requested from the Cruise Control server.
Prerequisites
- You have approved an optimization proposal.
-
The status of the
KafkaRebalancecustom resource for the rebalance operation isNotReady.
Procedure
Get information about the error from the
KafkaRebalancestatus:oc describe kafkarebalance rebalance-cr-name
oc describe kafkarebalance rebalance-cr-nameCopy to Clipboard Copied! Toggle word wrap Toggle overflow -
Attempt to resolve the issue in the
KafkaRebalanceresource. Annotate the
KafkaRebalanceresource in OpenShift:oc annotate kafkarebalance rebalance-cr-name strimzi.io/rebalance=refresh
oc annotate kafkarebalance rebalance-cr-name strimzi.io/rebalance=refreshCopy to Clipboard Copied! Toggle word wrap Toggle overflow Check the status of the
KafkaRebalanceresource:oc describe kafkarebalance rebalance-cr-name
oc describe kafkarebalance rebalance-cr-nameCopy to Clipboard Copied! Toggle word wrap Toggle overflow -
Wait until the status changes to
PendingProposal, or directly toProposalReady.
Additional resources
Chapter 10. Managing schemas with Service Registry Copy linkLink copied to clipboard!
This chapter outlines how to deploy and integrate AMQ Streams with Red Hat Service Registry. You can use Service Registry as a centralized store of service schemas for data streaming.
Service Registry supports the storage and management of many standard artifact types. For example, for Kafka you can use schema definitions based on AVRO or JSON.
Service Registry provides a REST API and a Java REST client to register and query the schemas from client applications through server-side endpoints. You can also use the Service Registry web console to browse and update schemas directly. You can configure producer and consumer clients to use Service Registry.
A Maven plugin is also provided so that you can upload and download schemas as part of your build. The Maven plugin is useful for testing and validation, when checking that your schema updates are compatible with client applications.
Additional resources
- Service Registry documentation
- Service Registry is built on the Apicurio Registry open source community project available from GitHub: Apicurio/apicurio-registry
- A demo of Service Registry is also available from GitHub: Apicurio/apicurio-registry-demo
- Apache Avro
10.1. Why use Service Registry? Copy linkLink copied to clipboard!
Using Service Registry decouples the process of managing schemas from the configuration of client applications. You enable an application to use a schema from the registry by specifying its URL in the client code.
For example, the schemas to serialize and deserialize messages can be stored in the registry, which are then referenced from the applications that use them to ensure that the messages that they send and receive are compatible with those schemas.
Kafka client applications can push or pull their schemas from Service Registry at runtime.
Schemas can evolve, so you can define rules in Service Registry, for example, to ensure that changes to a schema are valid and do not break previous versions used by applications. Service Registry checks for compatibility by comparing a modified schema with previous versions of schemas.
Service Registry provides full schema registry support for Avro schemas, which are used by client applications through Kafka client serializer/deserializer (SerDe) services provided by Service Registry.
10.2. Producer schema configuration Copy linkLink copied to clipboard!
A producer client application uses a serializer to put the messages it sends to a specific broker topic into the correct data format.
To enable a producer to use Service Registry for serialization, you:
- Define and register your schema with Service Registry
Configure the producer client code with the:
- URL of Service Registry
- Service Registry serializer services to use with the messages
- Strategy to look up the schema used for serialization in Service Registry
After registering your schema, when you start Kafka and Service Registry, you can access the schema to format messages sent to the Kafka broker topic by the producer.
If a schema already exists, you can create a new version through the REST API based on compatibility rules defined in Service Registry. Versions are used for compatibility checking as a schema evolves. An artifact ID and schema version represents a unique tuple that identifies a schema.
10.3. Consumer schema configuration Copy linkLink copied to clipboard!
A consumer client application uses a deserializer to get the messages it consumes from a specific broker topic into the correct data format.
To enable a consumer to use Service Registry for deserialization, you:
- Define and register your schema with Service Registry
Configure the consumer client code with the:
- URL of Service Registry
- Service Registry deserializer service to use with the messages
- Input data stream for deserialization
The schema is then retrieved by the deserializer using a global ID written into the message being consumed. The message received must, therefore, include a global ID as well as the message data.
For example:
...
# ...
[MAGIC_BYTE]
[GLOBAL_ID]
[MESSAGE DATA]
Now, when you start Kafka and Service Registry, you can access the schema in order to format messages received from the Kafka broker topic.
10.4. Strategies to lookup a schema Copy linkLink copied to clipboard!
A Service Registry strategy is used by the Kafka client serializer/deserializer to determine the artifact ID or global ID under which the message schema is registered in Service Registry.
For a given topic and message, you can use implementations of the following Java classes:
-
ArtifactIdStrategyto return an artifact ID -
GlobalIdStrategyto return a global ID
The artifact ID returned depends on whether the key or value in the message is being serialized.
The classes for each strategy are organized in the io.apicurio.registry.utils.serde.strategy package.
The default strategy is TopicIdStrategy, which looks for Service Registry artifacts with the same name as the Kafka topic receiving messages.
For example:
public String artifactId(String topic, boolean isKey, T schema) {
return String.format("%s-%s", topic, isKey ? "key" : "value");
}
public String artifactId(String topic, boolean isKey, T schema) {
return String.format("%s-%s", topic, isKey ? "key" : "value");
}
-
The
topicparameter is the name of the Kafka topic receiving the message. -
The
isKeyparameter is true when the message key is being serialized, and false when the message value is being serialized. -
The
schemaparameter is the schema of the message being serialized/deserialized. -
The
artifactIDreturned is the ID under which the schema is registered in Service Registry.
What lookup strategy you use depends on how and where you store your schema. For example, you might use a strategy that uses a record ID if you have different Kafka topics with the same Avro message type.
Strategies to return an artifact ID
Strategies to return an artifact ID based on an implementation of ArtifactIdStrategy.
RecordIdStrategy- Avro-specific strategy that uses the full name of the schema.
TopicRecordIdStrategy- Avro-specific strategy that uses the topic name and the full name of the schema.
TopicIdStrategy-
(Default) strategy that uses the topic name and
keyorvaluesuffix. SimpleTopicIdStrategy- Simple strategy that only uses the topic name.
Strategies to return a global ID
Strategies to return a global ID based on an implementation of GlobalIdStrategy.
FindLatestIdStrategy- Strategy that returns the global ID of the latest schema version, based on an artifact ID.
FindBySchemaIdStrategy- Strategy that matches schema content, based on an artifact ID, to return a global ID.
GetOrCreateIdStrategy- Strategy that tries to get the latest schema, based on an artifact ID, and if it does not exist, it creates a new schema.
AutoRegisterIdStrategy- Strategy that updates the schema, and uses the global ID of the updated schema.
10.5. Service Registry constants Copy linkLink copied to clipboard!
You can configure specific client SerDe services and schema lookup strategies directly into a client using the constants outlined here.
Alternatively, you can use specify the constants in a properties file, or a properties instance.
Constants for serializer/deserializer (SerDe) services
- 1
- (Required) The URL of Service Registry.
- 2
- Allows the client to make the request and look up the information from a cache of previous results, to improve processing time. If the cache is empty, the lookup is performed from Service Registry.
- 3
- Extends ID handling to support other ID formats and make them compatible with Service Registry SerDe services. For example, changing the ID format from
LongtoIntegersupports the Confluent ID format. - 4
- A flag to simplify the handling of Confluent IDs. If set to
true, anIntegeris used for the global ID lookup.
Constants for lookup strategies
public abstract class AbstractKafkaStrategyAwareSerDe<T, S extends AbstractKafkaStrategyAwareSerDe<T, S>> extends AbstractKafkaSerDe<S> {
public static final String REGISTRY_ARTIFACT_ID_STRATEGY_CONFIG_PARAM = "apicurio.registry.artifact-id";
public static final String REGISTRY_GLOBAL_ID_STRATEGY_CONFIG_PARAM = "apicurio.registry.global-id";
public abstract class AbstractKafkaStrategyAwareSerDe<T, S extends AbstractKafkaStrategyAwareSerDe<T, S>> extends AbstractKafkaSerDe<S> {
public static final String REGISTRY_ARTIFACT_ID_STRATEGY_CONFIG_PARAM = "apicurio.registry.artifact-id";
public static final String REGISTRY_GLOBAL_ID_STRATEGY_CONFIG_PARAM = "apicurio.registry.global-id";
Constants for converters
public class SchemalessConverter<T> extends AbstractKafkaSerDe<SchemalessConverter<T>> implements Converter {
public static final String REGISTRY_CONVERTER_SERIALIZER_PARAM = "apicurio.registry.converter.serializer";
public static final String REGISTRY_CONVERTER_DESERIALIZER_PARAM = "apicurio.registry.converter.deserializer";
public class SchemalessConverter<T> extends AbstractKafkaSerDe<SchemalessConverter<T>> implements Converter {
public static final String REGISTRY_CONVERTER_SERIALIZER_PARAM = "apicurio.registry.converter.serializer";
public static final String REGISTRY_CONVERTER_DESERIALIZER_PARAM = "apicurio.registry.converter.deserializer";
Constants for Avro data providers
public interface AvroDatumProvider<T> {
String REGISTRY_AVRO_DATUM_PROVIDER_CONFIG_PARAM = "apicurio.registry.avro-datum-provider";
String REGISTRY_USE_SPECIFIC_AVRO_READER_CONFIG_PARAM = "apicurio.registry.use-specific-avro-reader";
public interface AvroDatumProvider<T> {
String REGISTRY_AVRO_DATUM_PROVIDER_CONFIG_PARAM = "apicurio.registry.avro-datum-provider";
String REGISTRY_USE_SPECIFIC_AVRO_READER_CONFIG_PARAM = "apicurio.registry.use-specific-avro-reader";
DefaultAvroDatumProvider (io.apicurio.registry.utils.serde.avro) ReflectAvroDatumProvider (io.apicurio.registry.utils.serde.avro)
DefaultAvroDatumProvider (io.apicurio.registry.utils.serde.avro)
ReflectAvroDatumProvider (io.apicurio.registry.utils.serde.avro)
10.6. Installing Service Registry Copy linkLink copied to clipboard!
The instructions to install Service Registry with AMQ Streams storage are described in the Service Registry documentation.
You can install more than one instance of Service Registry depending on your cluster configuration. The number of instances depends on the storage type you use and how many schemas you need to handle.
10.7. Registering a schema to Service Registry Copy linkLink copied to clipboard!
After you have defined a schema in the appropriate format, such as Apache Avro, you can add the schema to Service Registry.
You can add the schema through:
- The Service Registry web console
- A curl command using the Service Registry API
- A Maven plugin supplied with Service Registry
- Schema configuration added to your client code
Client applications cannot use Service Registry until you have registered your schemas.
Service Registry web console
Having installed Service Registry, you connect to the web console from the ui endpoint:
http://MY-REGISTRY-URL/ui
From the console, you can add, view and configure schemas. You can also create the rules that prevent invalid content being added to the registry.
For more information on using the Service Registry web console, see the Service Registry documentation.
Curl example
Plugin example
Configuration through a (producer) client example
10.8. Using a Service Registry schema from a producer client Copy linkLink copied to clipboard!
This procedure describes how to configure a Java producer client to use a schema from Service Registry.
Procedure
Configure the client with the URL of Service Registry.
For example:
String registryUrl_node1 = PropertiesUtil.property(clientProperties, "registry.url.node1", "https://my-cluster-service-registry-myproject.example.com/api"); RegistryService service = RegistryClient.cached(registryUrl);String registryUrl_node1 = PropertiesUtil.property(clientProperties, "registry.url.node1", "https://my-cluster-service-registry-myproject.example.com/api"); RegistryService service = RegistryClient.cached(registryUrl);Copy to Clipboard Copied! Toggle word wrap Toggle overflow Configure the client with the serializer services, and the strategy to look up the schema in Service Registry.
For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- The Service Registry URL.
- 2
- The serializer service for the message key provided by Service Registry.
- 3
- The serializer service for the message value provided by Service Registry.
- 4
- Lookup strategy to find the global ID for the schema. Matches the schema of the message against its global ID (artifact ID and schema version) in Service Registry.
10.9. Using a Service Registry schema from a consumer client Copy linkLink copied to clipboard!
This procedure describes how to configure a Java consumer client to use a schema from Service Registry.
Procedure
Configure the client with the URL of Service Registry.
For example:
String registryUrl_node1 = PropertiesUtil.property(clientProperties, "registry.url.node1", "https://my-cluster-service-registry-myproject.example.com/api"); RegistryService service = RegistryClient.cached(registryUrl);String registryUrl_node1 = PropertiesUtil.property(clientProperties, "registry.url.node1", "https://my-cluster-service-registry-myproject.example.com/api"); RegistryService service = RegistryClient.cached(registryUrl);Copy to Clipboard Copied! Toggle word wrap Toggle overflow Configure the client with the Service Registry deserializer service.
For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
Chapter 11. Distributed tracing Copy linkLink copied to clipboard!
This chapter outlines the support for distributed tracing in AMQ Streams, using Jaeger.
How you configure distributed tracing varies by AMQ Streams client and component.
- You instrument Kafka Producer, Consumer, and Streams API applications for distributed tracing using an OpenTracing client library. This involves adding instrumentation code to these clients, which monitors the execution of individual transactions in order to generate trace data.
- Distributed tracing support is built in to the Kafka Connect, MirrorMaker, and Kafka Bridge components of AMQ Streams. To configure these components for distributed tracing, you configure and update the relevant custom resources.
Before configuring distributed tracing in AMQ Streams clients and components, you must first initialize and configure a Jaeger tracer in the Kafka cluster, as described in Initializing a Jaeger tracer for Kafka clients.
Distributed tracing is not supported for Kafka brokers.
11.1. Overview of distributed tracing in AMQ Streams Copy linkLink copied to clipboard!
Distributed tracing allows developers and system administrators to track the progress of transactions between applications (and services in a microservice architecture) in a distributed system. This information is useful for monitoring application performance and investigating issues with target systems and end-user applications.
In AMQ Streams and data streaming platforms in general, distributed tracing facilitates the end-to-end tracking of messages: from source systems to the Kafka cluster and then to target systems and applications.
As an aspect of system observability, distributed tracing complements the metrics that are available to view in Grafana dashboards and the available loggers for each component.
OpenTracing overview
Distributed tracing in AMQ Streams is implemented using the open source OpenTracing and Jaeger projects.
The OpenTracing specification defines APIs that developers can use to instrument applications for distributed tracing. It is independent from the tracing system.
When instrumented, applications generate traces for individual transactions. Traces are composed of spans, which define specific units of work.
To simplify the instrumentation of the Kafka Bridge and Kafka Producer, Consumer, and Streams API applications, AMQ Streams includes the OpenTracing Apache Kafka Client Instrumentation library.
The OpenTracing project is merging with the OpenCensus project. The new, combined project is named OpenTelemetry. OpenTelemetry will provide compatibility for applications that are instrumented using the OpenTracing APIs.
Jaeger overview
Jaeger, a tracing system, is an implementation of the OpenTracing APIs used for monitoring and troubleshooting microservices-based distributed systems. It consists of four main components and provides client libraries for instrumenting applications. You can use the Jaeger user interface to visualize, query, filter, and analyze trace data.
An example of a query in the Jaeger user interface
11.1.1. Distributed tracing support in AMQ Streams Copy linkLink copied to clipboard!
In AMQ Streams, distributed tracing is supported in:
- Kafka Connect (including Kafka Connect with Source2Image support)
- MirrorMaker
- The AMQ Streams Kafka Bridge
You enable and configure distributed tracing for these components by setting template configuration properties in the relevant custom resource (for example, KafkaConnect and KafkaBridge).
To enable distributed tracing in Kafka Producer, Consumer, and Streams API applications, you can instrument application code using the OpenTracing Apache Kafka Client Instrumentation library. When instrumented, these clients generate traces for messages (for example, when producing messages or writing offsets to the log).
Traces are sampled according to a sampling strategy and then visualized in the Jaeger user interface. This trace data is useful for monitoring the performance of your Kafka cluster and debugging issues with target systems and applications.
Outline of procedures
To set up distributed tracing for AMQ Streams, follow these procedures:
This chapter covers setting up distributed tracing for AMQ Streams clients and components only. Setting up distributed tracing for applications and systems beyond AMQ Streams is outside the scope of this chapter. To learn more about this subject, see the OpenTracing documentation and search for "inject and extract".
Before you start
Before you set up distributed tracing for AMQ Streams, it is helpful to understand:
- The basics of OpenTracing, including key concepts such as traces, spans, and tracers. Refer to the OpenTracing documentation.
- The components of the Jaeger architecure.
Prerequisites
- The Jaeger backend components are deployed to your OpenShift cluster. For deployment instructions, see the Jaeger deployment documentation.
11.2. Setting up tracing for Kafka clients Copy linkLink copied to clipboard!
This section describes how to initialize a Jaeger tracer to allow you to instrument your client applications for distributed tracing.
11.2.1. Initializing a Jaeger tracer for Kafka clients Copy linkLink copied to clipboard!
Configure and initialize a Jaeger tracer using a set of tracing environment variables.
Procedure
Perform the following steps for each client application.
Add Maven dependencies for Jaeger to the
pom.xmlfile for the client application:<dependency> <groupId>io.jaegertracing</groupId> <artifactId>jaeger-client</artifactId> <version>1.1.0.redhat-00002</version> </dependency><dependency> <groupId>io.jaegertracing</groupId> <artifactId>jaeger-client</artifactId> <version>1.1.0.redhat-00002</version> </dependency>Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Define the configuration of the Jaeger tracer using the tracing environment variables.
Create the Jaeger tracer from the environment variables that you defined in step two:
Tracer tracer = Configuration.fromEnv().getTracer();
Tracer tracer = Configuration.fromEnv().getTracer();Copy to Clipboard Copied! Toggle word wrap Toggle overflow NoteFor alternative ways to initialize a Jaeger tracer, see the Java OpenTracing library documentation.
Register the Jaeger tracer as a global tracer:
GlobalTracer.register(tracer);
GlobalTracer.register(tracer);Copy to Clipboard Copied! Toggle word wrap Toggle overflow
A Jaeger tracer is now initialized for the client application to use.
11.2.2. Tracing environment variables Copy linkLink copied to clipboard!
Use these environment variables when configuring a Jaeger tracer for Kafka clients.
The tracing environment variables are part of the Jaeger project and are subject to change. For the latest environment variables, see the Jaeger documentation.
| Property | Required | Description |
|---|---|---|
|
| Yes | The name of the Jaeger tracer service. |
|
| No |
The hostname for communicating with the |
|
| No |
The port used for communicating with the |
|
| No |
The traces endpoint. Only define this variable if the client application will bypass the |
|
| No | The authentication token to send to the endpoint as a bearer token. |
|
| No | The username to send to the endpoint if using basic authentication. |
|
| No | The password to send to the endpoint if using basic authentication. |
|
| No |
A comma-separated list of formats to use for propagating the trace context. Defaults to the standard Jaeger format. Valid values are |
|
| No | Indicates whether the reporter should also log the spans. |
|
| No | The reporter’s maximum queue size. |
|
| No | The reporter’s flush interval, in ms. Defines how frequently the Jaeger reporter flushes span batches. |
|
| No | The sampling strategy to use for client traces: Constant, Probabilistic, Rate Limiting, or Remote (the default type). To sample all traces, use the Constant sampling strategy with a parameter of 1. For more information, see the Jaeger documentation. |
|
| No | The sampler parameter (number). |
|
| No | The hostname and port to use if a Remote sampling strategy is selected. |
|
| No | A comma-separated list of tracer-level tags that are added to all reported spans.
The value can also refer to an environment variable using the format |
Additional resources
11.3. Instrumenting Kafka clients with tracers Copy linkLink copied to clipboard!
This section describes how to instrument Kafka Producer, Consumer, and Streams API applications for distributed tracing.
11.3.1. Instrumenting Kafka Producers and Consumers for tracing Copy linkLink copied to clipboard!
Use a Decorator pattern or Interceptors to instrument your Java Producer and Consumer application code for distributed tracing.
Procedure
Perform these steps in the application code of each Kafka Producer and Consumer application.
Add the Maven dependency for OpenTracing to the Producer or Consumer’s
pom.xmlfile.<dependency> <groupId>io.opentracing.contrib</groupId> <artifactId>opentracing-kafka-client</artifactId> <version>0.1.12.redhat-00001</version> </dependency><dependency> <groupId>io.opentracing.contrib</groupId> <artifactId>opentracing-kafka-client</artifactId> <version>0.1.12.redhat-00001</version> </dependency>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Instrument your client application code using either a Decorator pattern or Interceptors.
If you prefer to use a Decorator pattern, use following example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow If you prefer to use Interceptors, use the following example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
11.3.1.1. Custom span names in a Decorator pattern Copy linkLink copied to clipboard!
A span is a logical unit of work in Jaeger, with an operation name, start time, and duration.
If you use a Decorator pattern to instrument your Kafka Producer and Consumer applications, you can define custom span names by passing a BiFunction object as an additional argument when creating the TracingKafkaProducer and TracingKafkaConsumer objects. The OpenTracing Apache Kafka Client Instrumentation library includes several built-in span names, which are described below.
Example: Using custom span names to instrument client application code in a Decorator pattern
11.3.1.2. Built-in span names Copy linkLink copied to clipboard!
When defining custom span names, you can use the following BiFunctions in the ClientSpanNameProvider class. If no spanNameProvider is specified, CONSUMER_OPERATION_NAME and PRODUCER_OPERATION_NAME are used.
| BiFunction | Description |
|---|---|
|
|
Returns the |
|
|
Returns a String concatenation of |
|
|
Returns the name of the topic that the message was sent to or retrieved from in the format |
|
|
Returns a String concatenation of |
|
|
Returns the operation name and the topic name: |
|
|
Returns a String concatenation of |
11.3.2. Instrumenting Kafka Streams applications for tracing Copy linkLink copied to clipboard!
This section describes how to instrument Kafka Streams API applications for distributed tracing.
Procedure
Perform the following steps for each Kafka Streams API application.
Add the
opentracing-kafka-streamsdependency to the pom.xml file for your Kafka Streams API application:<dependency> <groupId>io.opentracing.contrib</groupId> <artifactId>opentracing-kafka-streams</artifactId> <version>0.1.12.redhat-00001</version> </dependency><dependency> <groupId>io.opentracing.contrib</groupId> <artifactId>opentracing-kafka-streams</artifactId> <version>0.1.12.redhat-00001</version> </dependency>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create an instance of the
TracingKafkaClientSuppliersupplier interface:KafkaClientSupplier supplier = new TracingKafkaClientSupplier(tracer);
KafkaClientSupplier supplier = new TracingKafkaClientSupplier(tracer);Copy to Clipboard Copied! Toggle word wrap Toggle overflow Provide the supplier interface to
KafkaStreams:KafkaStreams streams = new KafkaStreams(builder.build(), new StreamsConfig(config), supplier); streams.start();
KafkaStreams streams = new KafkaStreams(builder.build(), new StreamsConfig(config), supplier); streams.start();Copy to Clipboard Copied! Toggle word wrap Toggle overflow
11.4. Setting up tracing for MirrorMaker, Kafka Connect, and the Kafka Bridge Copy linkLink copied to clipboard!
Distributed tracing is supported for MirrorMaker, Kafka Connect (including Kafka Connect with Source2Image support), and the AMQ Streams Kafka Bridge.
Tracing in MirrorMaker
For MirrorMaker, messages are traced from the source cluster to the target cluster; the trace data records messages entering and leaving the MirrorMaker component.
Tracing in Kafka Connect
Only messages produced and consumed by Kafka Connect itself are traced. To trace messages sent between Kafka Connect and external systems, you must configure tracing in the connectors for those systems. For more information, see Section 3.2, “Kafka Connect cluster configuration”.
Tracing in the Kafka Bridge
Messages produced and consumed by the Kafka Bridge are traced. Incoming HTTP requests from client applications to send and receive messages through the Kafka Bridge are also traced. In order to have end-to-end tracing, you must configure tracing in your HTTP clients.
11.4.1. Enabling tracing in MirrorMaker, Kafka Connect, and Kafka Bridge resources Copy linkLink copied to clipboard!
Update the configuration of KafkaMirrorMaker, KafkaConnect, KafkaConnectS2I, and KafkaBridge custom resources to specify and configure a Jaeger tracer service for each resource. Updating a tracing-enabled resource in your OpenShift cluster triggers two events:
- Interceptor classes are updated in the integrated consumers and producers in MirrorMaker, Kafka Connect, or the AMQ Streams Kafka Bridge.
- For MirrorMaker and Kafka Connect, the tracing agent initializes a Jaeger tracer based on the tracing configuration defined in the resource.
- For the Kafka Bridge, a Jaeger tracer based on the tracing configuration defined in the resource is initialized by the Kafka Bridge itself.
Procedure
Perform these steps for each KafkaMirrorMaker, KafkaConnect, KafkaConnectS2I, and KafkaBridge resource.
In the
spec.templateproperty, configure the Jaeger tracer service. For example:Jaeger tracer configuration for Kafka Connect
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Jaeger tracer configuration for MirrorMaker
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Jaeger tracer configuration for the Kafka Bridge
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 1
- Use the tracing environment variables as template configuration properties.
- 2
- Set the
spec.tracing.typeproperty tojaeger.
Create or update the resource:
oc apply -f your-file
oc apply -f your-fileCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Chapter 12. Security Copy linkLink copied to clipboard!
AMQ Streams supports encrypted communication between the Kafka and AMQ Streams components using the TLS protocol. Communication between Kafka brokers (interbroker communication), between ZooKeeper nodes (internodal communication), and between these and the AMQ Streams operators is always encrypted. Communication between Kafka clients and Kafka brokers is encrypted according to how the cluster is configured. For the Kafka and AMQ Streams components, TLS certificates are also used for authentication.
The Cluster Operator automatically sets up and renews TLS certificates to enable encryption and authentication within your cluster. It also sets up other TLS certificates if you want to enable encryption or TLS authentication between Kafka brokers and clients. Certificates provided by users are not renewed.
You can provide your own server certificates, called Kafka listener certificates, for TLS listeners or external listeners which have TLS encryption enabled. For more information, see Section 12.8, “Kafka listener certificates”.
Figure 12.1. Example architecture diagram of the communication secured by TLS.
12.1. Certificate Authorities Copy linkLink copied to clipboard!
To support encryption, each AMQ Streams component needs its own private keys and public key certificates. All component certificates are signed by an internal Certificate Authority (CA) called the cluster CA.
Similarly, each Kafka client application connecting to AMQ Streams using TLS client authentication needs to provide private keys and certificates. A second internal CA, named the clients CA, is used to sign certificates for the Kafka clients.
12.1.1. CA certificates Copy linkLink copied to clipboard!
Both the cluster CA and clients CA have a self-signed public key certificate.
Kafka brokers are configured to trust certificates signed by either the cluster CA or clients CA. Components that clients do not need to connect to, such as ZooKeeper, only trust certificates signed by the cluster CA. Unless TLS encryption for external listeners is disabled, client applications must trust certificates signed by the cluster CA. This is also true for client applications that perform mutual TLS authentication.
By default, AMQ Streams automatically generates and renews CA certificates issued by the cluster CA or clients CA. You can configure the management of these CA certificates in the Kafka.spec.clusterCa and Kafka.spec.clientsCa objects. Certificates provided by users are not renewed.
You can provide your own CA certificates for the cluster CA or clients CA. For more information, see Section 12.1.3, “Installing your own CA certificates”. If you provide your own certificates, you must manually renew them when needed.
12.1.2. Validity periods of CA certificates Copy linkLink copied to clipboard!
CA certificate validity periods are expressed as a number of days after certificate generation. You can configure the validity period of:
-
Cluster CA certificates in
Kafka.spec.clusterCa.validityDays -
Client CA certificates in
Kafka.spec.clientsCa.validityDays
12.1.3. Installing your own CA certificates Copy linkLink copied to clipboard!
This procedure describes how to install your own CA certificates and private keys instead of using CA certificates and private keys generated by the Cluster Operator.
Prerequisites
- The Cluster Operator is running.
- A Kafka cluster is not yet deployed.
Your own X.509 certificates and keys in PEM format for the cluster CA or clients CA.
If you want to use a cluster or clients CA which is not a Root CA, you have to include the whole chain in the certificate file. The chain should be in the following order:
- The cluster or clients CA
- One or more intermediate CAs
- The root CA
- All CAs in the chain should be configured as a CA in the X509v3 Basic Constraints.
Procedure
Put your CA certificate in the corresponding
Secret(<cluster>-cluster-ca-certfor the cluster CA or<cluster>-clients-ca-certfor the clients CA):Run the following commands:
Delete any existing secret (ignore "Not Exists" errors) Create and label the new secret
# Delete any existing secret (ignore "Not Exists" errors) oc delete secret <ca-cert-secret> # Create and label the new secret oc create secret generic <ca-cert-secret> --from-file=ca.crt=<ca-cert-file>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Put your CA key in the corresponding
Secret(<cluster>-cluster-cafor the cluster CA or<cluster>-clients-cafor the clients CA):Delete the existing secret Create the new one
# Delete the existing secret oc delete secret <ca-key-secret> # Create the new one oc create secret generic <ca-key-secret> --from-file=ca.key=<ca-key-file>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Label both
Secretswith the labelsstrimzi.io/kind=Kafkaandstrimzi.io/cluster=<my-cluster>:oc label secret <ca-cert-secret> strimzi.io/kind=Kafka strimzi.io/cluster=<my-cluster> oc label secret <ca-key-secret> strimzi.io/kind=Kafka strimzi.io/cluster=<my-cluster>
oc label secret <ca-cert-secret> strimzi.io/kind=Kafka strimzi.io/cluster=<my-cluster> oc label secret <ca-key-secret> strimzi.io/kind=Kafka strimzi.io/cluster=<my-cluster>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create the
Kafkaresource for your cluster, configuring either theKafka.spec.clusterCaor theKafka.spec.clientsCaobject to not use generated CAs:Example fragment
Kafkaresource configuring the cluster CA to use certificates you supply for yourselfCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Additional resources
- For the procedure for renewing CA certificates you have previously installed, see Section 12.3.4, “Renewing your own CA certificates”.
- Section 12.8.1, “Providing your own Kafka listener certificates”.
12.2. Secrets Copy linkLink copied to clipboard!
AMQ Streams uses Secrets to store private keys and certificates for Kafka cluster components and clients. Secrets are used for establishing TLS encrypted connections between Kafka brokers, and between brokers and clients. They are also used for mutual TLS authentication.
- A Cluster Secret contains a cluster CA certificate to sign Kafka broker certificates, and is used by a connecting client to establish a TLS encrypted connection with the Kafka cluster to validate broker identity.
- A Client Secret contains a client CA certificate for a user to sign its own client certificate to allow mutual authentication against the Kafka cluster. The broker validates the client identity through the client CA certificate itself.
- A User Secret contains a private key and certificate, which are generated and signed by the client CA certificate when a new user is created. The key and certificate are used for authentication and authorization when accessing the cluster.
Secrets provide private keys and certificates in PEM and PKCS #12 formats. Using private keys and certificates in PEM format means that users have to get them from the Secrets, and generate a corresponding truststore (or keystore) to use in their Java applications. PKCS #12 storage provides a truststore (or keystore) that can be used directly.
All keys are 2048 bits in size.
12.2.1. PKCS #12 storage Copy linkLink copied to clipboard!
PKCS #12 defines an archive file format (.p12) for storing cryptography objects into a single file with password protection. You can use PKCS #12 to manage certificates and keys in one place.
Each Secret contains fields specific to PKCS #12.
-
The
.p12field contains the certificates and keys. -
The
.passwordfield is the password that protects the archive.
12.2.2. Cluster CA Secrets Copy linkLink copied to clipboard!
| Secret name | Field within Secret | Description |
|---|---|---|
|
|
| The current private key for the cluster CA. |
|
|
| PKCS #12 archive file for storing certificates and keys. |
|
| Password for protecting the PKCS #12 archive file. | |
|
| The current certificate for the cluster CA. | |
|
|
| PKCS #12 archive file for storing certificates and keys. |
|
| Password for protecting the PKCS #12 archive file. | |
|
|
Certificate for Kafka broker pod <num>. Signed by a current or former cluster CA private key in | |
|
| Private key for Kafka broker pod <num>. | |
|
|
| PKCS #12 archive file for storing certificates and keys. |
|
| Password for protecting the PKCS #12 archive file. | |
|
|
Certificate for ZooKeeper node <num>. Signed by a current or former cluster CA private key in | |
|
| Private key for ZooKeeper pod <num>. | |
|
|
| PKCS #12 archive file for storing certificates and keys. |
|
| Password for protecting the PKCS #12 archive file. | |
|
|
Certificate for TLS communication between the Entity Operator and Kafka or ZooKeeper. Signed by a current or former cluster CA private key in | |
|
| Private key for TLS communication between the Entity Operator and Kafka or ZooKeeper |
The CA certificates in <cluster>-cluster-ca-cert must be trusted by Kafka client applications so that they validate the Kafka broker certificates when connecting to Kafka brokers over TLS.
Only <cluster>-cluster-ca-cert needs to be used by clients. All other Secrets in the table above only need to be accessed by the AMQ Streams components. You can enforce this using OpenShift role-based access controls if necessary.
12.2.3. Client CA Secrets Copy linkLink copied to clipboard!
| Secret name | Field within Secret | Description |
|---|---|---|
|
|
| The current private key for the clients CA. |
|
|
| PKCS #12 archive file for storing certificates and keys. |
|
| Password for protecting the PKCS #12 archive file. | |
|
| The current certificate for the clients CA. |
The certificates in <cluster>-clients-ca-cert are those which the Kafka brokers trust.
<cluster>-clients-ca is used to sign certificates of client applications. It needs to be accessible to the AMQ Streams components and for administrative access if you are intending to issue application certificates without using the User Operator. You can enforce this using OpenShift role-based access controls if necessary.
12.2.4. User Secrets Copy linkLink copied to clipboard!
| Secret name | Field within Secret | Description |
|---|---|---|
|
|
| PKCS #12 archive file for storing certificates and keys. |
|
| Password for protecting the PKCS #12 archive file. | |
|
| Certificate for the user, signed by the clients CA | |
|
| Private key for the user |
12.3. Certificate renewal Copy linkLink copied to clipboard!
The cluster CA and clients CA certificates are only valid for a limited time period, known as the validity period. This is usually defined as a number of days since the certificate was generated. For auto-generated CA certificates, you can configure the validity period in Kafka.spec.clusterCa.validityDays and Kafka.spec.clientsCa.validityDays. The default validity period for both certificates is 365 days. Manually-installed CA certificates should have their own validity period defined.
When a CA certificate expires, components and clients which still trust that certificate will not accept TLS connections from peers whose certificate were signed by the CA private key. The components and clients need to trust the new CA certificate instead.
To allow the renewal of CA certificates without a loss of service, the Cluster Operator will initiate certificate renewal before the old CA certificates expire. You can configure the renewal period in Kafka.spec.clusterCa.renewalDays and Kafka.spec.clientsCa.renewalDays (both default to 30 days). The renewal period is measured backwards, from the expiry date of the current certificate.
Not Before Not After
| |
|<--------------- validityDays --------------->|
<--- renewalDays --->|
Not Before Not After
| |
|<--------------- validityDays --------------->|
<--- renewalDays --->|
The behavior of the Cluster Operator during the renewal period depends on whether the relevant setting is enabled, in either Kafka.spec.clusterCa.generateCertificateAuthority or Kafka.spec.clientsCa.generateCertificateAuthority.
12.3.1. Renewal process with generated CAs Copy linkLink copied to clipboard!
The Cluster Operator performs the following process to renew CA certificates:
-
Generate a new CA certificate, but retain the existing key. The new certificate replaces the old one with the name
ca.crtwithin the correspondingSecret. - Generate new client certificates (for ZooKeeper nodes, Kafka brokers, and the Entity Operator). This is not strictly necessary because the signing key has not changed, but it keeps the validity period of the client certificate in sync with the CA certificate.
- Restart ZooKeeper nodes so that they will trust the new CA certificate and use the new client certificates.
- Restart Kafka brokers so that they will trust the new CA certificate and use the new client certificates.
- Restart the Topic and User Operators so that they will trust the new CA certificate and use the new client certificates.
12.3.2. Client applications Copy linkLink copied to clipboard!
The Cluster Operator is not aware of the client applications using the Kafka cluster.
When connecting to the cluster, and to ensure they operate correctly, client applications must:
- Trust the cluster CA certificate published in the <cluster>-cluster-ca-cert Secret.
Use the credentials published in their <user-name> Secret to connect to the cluster.
The User Secret provides credentials in PEM and PKCS #12 format, or it can provide a password when using SCRAM-SHA authentication. The User Operator creates the user credentials when a user is created.
For workloads running inside the same OpenShift cluster and namespace, Secrets can be mounted as a volume so the client Pods construct their keystores and truststores from the current state of the Secrets. For more details on this procedure, see Configuring internal clients to trust the cluster CA.
12.3.2.1. Client certificate renewal Copy linkLink copied to clipboard!
You must ensure clients continue to work after certificate renewal. The renewal process depends on how the clients are configured.
If you are provisioning client certificates and keys manually, you must generate new client certificates and ensure the new certificates are used by clients within the renewal period. Failure to do this by the end of the renewal period could result in client applications being unable to connect to the cluster.
12.3.3. Renewing CA certificates manually Copy linkLink copied to clipboard!
Unless the Kafka.spec.clusterCa.generateCertificateAuthority and Kafka.spec.clientsCa.generateCertificateAuthority objects are set to false, the cluster and clients CA certificates will auto-renew at the start of their respective certificate renewal periods. You can manually renew one or both of these certificates before the certificate renewal period starts, if required for security reasons. A renewed certificate uses the same private key as the old certificate.
Prerequisites
- The Cluster Operator is running.
- A Kafka cluster in which CA certificates and private keys are installed.
Procedure
Apply the
strimzi.io/force-renewannotation to theSecretthat contains the CA certificate that you want to renew.Expand Certificate Secret Annotate command Cluster CA
<cluster-name>-cluster-ca-cert
oc annotate secret <cluster-name>-cluster-ca-cert strimzi.io/force-renew=trueClients CA
<cluster-name>-clients-ca-cert
oc annotate secret <cluster-name>-clients-ca-cert strimzi.io/force-renew=true
At the next reconciliation the Cluster Operator will generate a new CA certificate for the Secret that you annotated. If maintenance time windows are configured, the Cluster Operator will generate the new CA certificate at the first reconciliation within the next maintenance time window.
Client applications must reload the cluster and clients CA certificates that were renewed by the Cluster Operator.
12.3.4. Renewing your own CA certificates Copy linkLink copied to clipboard!
This procedure describes how to renew CA certificates and private keys that you previously installed. You will need to follow this procedure during the renewal period in order to replace CA certificates which will soon expire.
Prerequisites
- The Cluster Operator is running.
- A Kafka cluster in which you previously installed your own CA certificates and private keys.
New cluster and clients X.509 certificates and keys in PEM format. These could be generated using
opensslusing a command such as:openssl req -x509 -new -days <validity> --nodes -out ca.crt -keyout ca.key
openssl req -x509 -new -days <validity> --nodes -out ca.crt -keyout ca.keyCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Procedure
Establish what CA certificates already exist in the
Secret:Use the following commands:
oc describe secret <ca-cert-secret>
oc describe secret <ca-cert-secret>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Prepare a directory containing the existing CA certificates in the secret.
mkdir new-ca-cert-secret cd new-ca-cert-secret
mkdir new-ca-cert-secret cd new-ca-cert-secretCopy to Clipboard Copied! Toggle word wrap Toggle overflow For each certificate <ca-certificate> from the previous step, run:
Fetch the existing secret
# Fetch the existing secret oc get secret <ca-cert-secret> -o 'jsonpath={.data.<ca-certificate>}' | base64 -d > <ca-certificate>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Rename the old
ca.crtfile toca_DATE.crt, where DATE is the certificate expiry date in the format <year>-<month>-<day>_T<hour>_-<minute>-_<second>_Z, for exampleca-2018-09-27T17-32-00Z.crt.mv ca.crt ca-$(date -u -d$(openssl x509 -enddate -noout -in ca.crt | sed 's/.*=//') +'%Y-%m-%dT%H-%M-%SZ').crt
mv ca.crt ca-$(date -u -d$(openssl x509 -enddate -noout -in ca.crt | sed 's/.*=//') +'%Y-%m-%dT%H-%M-%SZ').crtCopy to Clipboard Copied! Toggle word wrap Toggle overflow Copy the new CA certificate into the directory, naming it
ca.crtcp <path-to-new-cert> ca.crt
cp <path-to-new-cert> ca.crtCopy to Clipboard Copied! Toggle word wrap Toggle overflow Replace the CA certificate
Secret(<cluster>-cluster-caor<cluster>-clients-ca). This can be done using the following commands:Delete the existing secret Re-create the secret with the new private key
# Delete the existing secret oc delete secret <ca-cert-secret> # Re-create the secret with the new private key oc create secret generic <ca-cert-secret> --from-file=.Copy to Clipboard Copied! Toggle word wrap Toggle overflow You can now delete the directory you created:
cd .. rm -r new-ca-cert-secret
cd .. rm -r new-ca-cert-secretCopy to Clipboard Copied! Toggle word wrap Toggle overflow Replace the CA key
Secret(<cluster>-cluster-caor<cluster>-clients-ca). This can be done using the following commands:Delete the existing secret Re-create the secret with the new private key
# Delete the existing secret oc delete secret <ca-key-secret> # Re-create the secret with the new private key oc create secret generic <ca-key-secret> --from-file=ca.key=<ca-key-file>Copy to Clipboard Copied! Toggle word wrap Toggle overflow
12.4. Replacing private keys Copy linkLink copied to clipboard!
You can replace the private keys used by the cluster CA and clients CA certificates. When a private key is replaced, the Cluster Operator generates a new CA certificate for the new private key.
Prerequisites
- The Cluster Operator is running.
- A Kafka cluster in which CA certificates and private keys are installed.
Procedure
Apply the
strimzi.io/force-replaceannotation to theSecretthat contains the private key that you want to renew.Expand Private key for Secret Annotate command Cluster CA
<cluster-name>-cluster-ca
oc annotate secret <cluster-name>-cluster-ca strimzi.io/force-replace=trueClients CA
<cluster-name>-clients-ca
oc annotate secret <cluster-name>-clients-ca strimzi.io/force-replace=true
At the next reconciliation the Cluster Operator will:
-
Generate a new private key for the
Secretthat you annotated - Generate a new CA certificate
If maintenance time windows are configured, the Cluster Operator will generate the new private key and CA certificate at the first reconciliation within the next maintenance time window.
Client applications must reload the cluster and clients CA certificates that were renewed by the Cluster Operator.
Additional resources
12.5. TLS connections Copy linkLink copied to clipboard!
12.5.1. ZooKeeper communication Copy linkLink copied to clipboard!
ZooKeeper does not support TLS itself. By deploying a TLS sidecar within every ZooKeeper pod, the Cluster Operator is able to provide data encryption and authentication between ZooKeeper nodes in a cluster. ZooKeeper only communicates with the TLS sidecar over the loopback interface. The TLS sidecar then proxies all ZooKeeper traffic, TLS decrypting data upon entry into a ZooKeeper pod, and TLS encrypting data upon departure from a ZooKeeper pod.
This TLS encrypting stunnel proxy is instantiated from the spec.zookeeper.stunnelImage specified in the Kafka resource.
12.5.2. Kafka interbroker communication Copy linkLink copied to clipboard!
Communication between Kafka brokers is done through an internal listener on port 9091, which is encrypted by default and not accessible to Kafka clients.
Communication between Kafka brokers and ZooKeeper nodes uses a TLS sidecar, as described above.
12.5.3. Topic and User Operators Copy linkLink copied to clipboard!
Like the Cluster Operator, the Topic and User Operators each use a TLS sidecar when communicating with ZooKeeper. The Topic Operator connects to Kafka brokers on port 9091.
12.5.4. Kafka Client connections Copy linkLink copied to clipboard!
Encrypted communication between Kafka brokers and clients running within the same OpenShift cluster can be provided by configuring the spec.kafka.listeners.tls listener, which listens on port 9093.
Encrypted communication between Kafka brokers and clients running outside the same OpenShift cluster can be provided by configuring the spec.kafka.listeners.external listener (the port of the external listener depends on its type).
Unencrypted client communication with brokers can be configured by spec.kafka.listeners.plain, which listens on port 9092.
12.6. Configuring internal clients to trust the cluster CA Copy linkLink copied to clipboard!
This procedure describes how to configure a Kafka client that resides inside the OpenShift cluster — connecting to the tls listener on port 9093 — to trust the cluster CA certificate.
The easiest way to achieve this for an internal client is to use a volume mount to access the Secrets containing the necessary certificates and keys.
Follow the steps to configure trust certificates that are signed by the cluster CA for Java-based Kafka Producer, Consumer, and Streams APIs.
Choose the steps to follow according to the certificate format of the cluster CA: PKCS #12 (.p12) or PEM (.crt).
The steps describe how to mount the Cluster Secret that verifies the identity of the Kafka cluster to the client pod.
Prerequisites
- The Cluster Operator must be running.
-
There needs to be a
Kafkaresource within the OpenShift cluster. - You need a Kafka client application outside the OpenShift cluster that will connect using TLS, and needs to trust the cluster CA certificate.
-
The client application must be running in the same namespace as the
Kafkaresource.
Using PKCS #12 format (.p12)
Mount the cluster Secret as a volume when defining the client pod.
For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Here we’re mounting:
- The PKCS #12 file into an exact path, which can be configured
- The password into an environment variable, where it can be used for Java configuration
Configure the Kafka client with the following properties:
A security protocol option:
-
security.protocol: SSLwhen using TLS for encryption (with or without TLS authentication). -
security.protocol: SASL_SSLwhen using SCRAM-SHA authentication over TLS.
-
-
ssl.truststore.locationwith the truststore location where the certificates were imported. -
ssl.truststore.passwordwith the password for accessing the truststore. -
ssl.truststore.type=PKCS12to identify the truststore type.
Using PEM format (.crt)
Mount the cluster Secret as a volume when defining the client pod.
For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Use the certificate with clients that use certificates in X.509 format.
12.7. Configuring external clients to trust the cluster CA Copy linkLink copied to clipboard!
This procedure describes how to configure a Kafka client that resides outside the OpenShift cluster – connecting to the external listener on port 9094 – to trust the cluster CA certificate. Follow this procedure when setting up the client and during the renewal period, when the old clients CA certificate is replaced.
Follow the steps to configure trust certificates that are signed by the cluster CA for Java-based Kafka Producer, Consumer, and Streams APIs.
Choose the steps to follow according to the certificate format of the cluster CA: PKCS #12 (.p12) or PEM (.crt).
The steps describe how to obtain the certificate from the Cluster Secret that verifies the identity of the Kafka cluster.
The <cluster-name>-cluster-ca-cert Secret will contain more than one CA certificate during the CA certificate renewal period. Clients must add all of them to their truststores.
Prerequisites
- The Cluster Operator must be running.
-
There needs to be a
Kafkaresource within the OpenShift cluster. - You need a Kafka client application outside the OpenShift cluster that will connect using TLS, and needs to trust the cluster CA certificate.
Using PKCS #12 format (.p12)
Extract the cluster CA certificate and password from the generated
<cluster-name>-cluster-ca-certSecret.oc get secret <cluster-name>-cluster-ca-cert -o jsonpath='{.data.ca\.p12}' | base64 -d > ca.p12oc get secret <cluster-name>-cluster-ca-cert -o jsonpath='{.data.ca\.p12}' | base64 -d > ca.p12Copy to Clipboard Copied! Toggle word wrap Toggle overflow oc get secret <cluster-name>-cluster-ca-cert -o jsonpath='{.data.ca\.password}' | base64 -d > ca.passwordoc get secret <cluster-name>-cluster-ca-cert -o jsonpath='{.data.ca\.password}' | base64 -d > ca.passwordCopy to Clipboard Copied! Toggle word wrap Toggle overflow Configure the Kafka client with the following properties:
A security protocol option:
-
security.protocol: SSLwhen using TLS for encryption (with or without TLS authentication). -
security.protocol: SASL_SSLwhen using SCRAM-SHA authentication over TLS.
-
-
ssl.truststore.locationwith the truststore location where the certificates were imported. -
ssl.truststore.passwordwith the password for accessing the truststore. This property can be omitted if it is not needed by the truststore. -
ssl.truststore.type=PKCS12to identify the truststore type.
Using PEM format (.crt)
Extract the cluster CA certificate from the generated
<cluster-name>-cluster-ca-certSecret.oc get secret <cluster-name>-cluster-ca-cert -o jsonpath='{.data.ca\.crt}' | base64 -d > ca.crtoc get secret <cluster-name>-cluster-ca-cert -o jsonpath='{.data.ca\.crt}' | base64 -d > ca.crtCopy to Clipboard Copied! Toggle word wrap Toggle overflow - Use the certificate with clients that use certificates in X.509 format.
12.8. Kafka listener certificates Copy linkLink copied to clipboard!
You can provide your own server certificates and private keys for the following types of listeners:
- TLS listeners for inter-cluster communication
-
External listeners (
route,loadbalancer,ingress, andnodeporttypes) which have TLS encryption enabled, for communication between Kafka clients and Kafka brokers
These user-provided certificates are called Kafka listener certificates.
Providing Kafka listener certificates for external listeners allows you to leverage existing security infrastructure, such as your organization’s private CA or a public CA. Kafka clients will connect to Kafka brokers using Kafka listener certificates rather than certificates signed by the cluster CA or clients CA.
You must manually renew Kafka listener certificates when needed.
12.8.1. Providing your own Kafka listener certificates Copy linkLink copied to clipboard!
This procedure shows how to configure a listener to use your own private key and server certificate, called a Kafka listener certificate.
Your client applications should use the CA public key as a trusted certificate in order to verify the identity of the Kafka broker.
Prerequisites
- An OpenShift cluster.
- The Cluster Operator is running.
For each listener, a compatible server certificate signed by an external CA.
- Provide an X.509 certificate in PEM format.
- Specify the correct Subject Alternative Names (SANs) for each listener. For more information, see Section 12.8.2, “Alternative subjects in server certificates for Kafka listeners”.
- You can provide a certificate that includes the whole CA chain in the certificate file.
Procedure
Create a
Secretcontaining your private key and server certificate:oc create secret generic my-secret --from-file=my-listener-key.key --from-file=my-listener-certificate.crt
oc create secret generic my-secret --from-file=my-listener-key.key --from-file=my-listener-certificate.crtCopy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the
Kafkaresource for your cluster. Configure the listener to use yourSecret, certificate file, and private key file in theconfiguration.brokerCertChainAndKeyproperty.Example configuration for a
loadbalancerexternal listener with TLS encryption enabledCopy to Clipboard Copied! Toggle word wrap Toggle overflow Example configuration for a TLS listener
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Apply the new configuration to create or update the resource:
oc apply -f kafka.yaml
oc apply -f kafka.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow The Cluster Operator starts a rolling update of the Kafka cluster, which updates the configuration of the listeners.
NoteA rolling update is also started if you update a Kafka listener certificate in a
Secretthat is already used by a TLS or external listener.
12.8.2. Alternative subjects in server certificates for Kafka listeners Copy linkLink copied to clipboard!
In order to use TLS hostname verification with your own Kafka listener certificates, you must use the correct Subject Alternative Names (SANs) for each listener. The certificate SANs must specify hostnames for:
- All of the Kafka brokers in your cluster
- The Kafka cluster bootstrap service
You can use wildcard certificates if they are supported by your CA.
12.8.2.1. TLS listener SAN examples Copy linkLink copied to clipboard!
Use the following examples to help you specify hostnames of the SANs in your certificates for TLS listeners.
Wildcards example
Non-wildcards example
12.8.2.2. External listener SAN examples Copy linkLink copied to clipboard!
For external listeners which have TLS encryption enabled, the hostnames you need to specify in certificates depends on the external listener type.
| External listener type | In the SANs, specify… |
|---|---|
|
|
Addresses of all Kafka broker You can use a matching wildcard name. |
|
|
Addresses of all Kafka broker You can use a matching wildcard name. |
|
| Addresses of all OpenShift worker nodes that the Kafka broker pods might be scheduled to. You can use a matching wildcard name. |
Additional resources
Chapter 13. Managing AMQ Streams Copy linkLink copied to clipboard!
This chapter covers tasks to maintain a deployment of AMQ Streams.
13.1. Discovering services using labels and annotations Copy linkLink copied to clipboard!
Service discovery makes it easier for client applications running in the same OpenShift cluster as AMQ Streams to interact with a Kafka cluster.
A service discovery label and annotation is generated for services used to access the Kafka cluster:
- Internal Kafka bootstrap service
- HTTP Bridge service
The label helps to make the service discoverable, and the annotation provides connection details that a client application can use to make the connection.
The service discovery label, strimzi.io/discovery, is set as true for the Service resources. The service discovery annotation has the same key, providing connection details in JSON format for each service.
Example internal Kafka bootstrap service
Example HTTP Bridge service
13.1.1. Returning connection details on services Copy linkLink copied to clipboard!
You can find the services by specifying the discovery label when fetching services from the command line or a corresponding API call.
oc get service -l strimzi.io/discovery=true
oc get service -l strimzi.io/discovery=true
The connection details are returned when retrieving the service discovery label.
13.2. Checking the status of a custom resource Copy linkLink copied to clipboard!
The status property of a AMQ Streams custom resource publishes information about the resource to users and tools that need it.
13.2.1. AMQ Streams custom resource status information Copy linkLink copied to clipboard!
Several resources have a status property, as described in the following table.
| AMQ Streams resource | Schema reference | Publishes status information on… |
|---|---|---|
|
| The Kafka cluster. | |
|
| The Kafka Connect cluster, if deployed. | |
|
| The Kafka Connect cluster with Source-to-Image support, if deployed. | |
|
|
| |
|
| The Kafka MirrorMaker tool, if deployed. | |
|
| Kafka topics in your Kafka cluster. | |
|
| Kafka users in your Kafka cluster. | |
|
| The AMQ Streams Kafka Bridge, if deployed. |
The status property of a resource provides information on the resource’s:
-
Current state, in the
status.conditionsproperty -
Last observed generation, in the
status.observedGenerationproperty
The status property also provides resource-specific information. For example:
-
KafkaConnectStatusprovides the REST API endpoint for Kafka Connect connectors. -
KafkaUserStatusprovides the user name of the Kafka user and theSecretin which their credentials are stored. -
KafkaBridgeStatusprovides the HTTP address at which external client applications can access the Bridge service.
A resource’s current state is useful for tracking progress related to the resource achieving its desired state, as defined by the spec property. The status conditions provide the time and reason the state of the resource changed and details of events preventing or delaying the operator from realizing the resource’s desired state.
The last observed generation is the generation of the resource that was last reconciled by the Cluster Operator. If the value of observedGeneration is different from the value of metadata.generation, the operator has not yet processed the latest update to the resource. If these values are the same, the status information reflects the most recent changes to the resource.
AMQ Streams creates and maintains the status of custom resources, periodically evaluating the current state of the custom resource and updating its status accordingly. When performing an update on a custom resource using oc edit, for example, its status is not editable. Moreover, changing the status would not affect the configuration of the Kafka cluster.
Here we see the status property specified for a Kafka custom resource.
Kafka custom resource with status
- 1
- Status
conditionsdescribe criteria related to the status that cannot be deduced from the existing resource information, or are specific to the instance of a resource. - 2
- The
Readycondition indicates whether the Cluster Operator currently considers the Kafka cluster able to handle traffic. - 3
- The
observedGenerationindicates the generation of theKafkacustom resource that was last reconciled by the Cluster Operator. - 4
- The
listenersdescribe the current Kafka bootstrap addresses by type.ImportantThe address in the custom resource status for external listeners with type
nodeportis currently not supported.
The Kafka bootstrap addresses listed in the status do not signify that those endpoints or the Kafka cluster is in a ready state.
Accessing status information
You can access status information for a resource from the command line. For more information, see Section 13.2.2, “Finding the status of a custom resource”.
13.2.2. Finding the status of a custom resource Copy linkLink copied to clipboard!
This procedure describes how to find the status of a custom resource.
Prerequisites
- An OpenShift cluster.
- The Cluster Operator is running.
Procedure
Specify the custom resource and use the
-o jsonpathoption to apply a standard JSONPath expression to select thestatusproperty:oc get kafka <kafka_resource_name> -o jsonpath='{.status}'oc get kafka <kafka_resource_name> -o jsonpath='{.status}'Copy to Clipboard Copied! Toggle word wrap Toggle overflow This expression returns all the status information for the specified custom resource. You can use dot notation, such as
status.listenersorstatus.observedGeneration, to fine-tune the status information you wish to see.
Additional resources
- Section 13.2.1, “AMQ Streams custom resource status information”
- For more information about using JSONPath, see JSONPath support.
13.3. Recovering a cluster from persistent volumes Copy linkLink copied to clipboard!
You can recover a Kafka cluster from persistent volumes (PVs) if they are still present.
You might want to do this, for example, after:
- A namespace was deleted unintentionally
- A whole OpenShift cluster is lost, but the PVs remain in the infrastructure
13.3.1. Recovery from namespace deletion Copy linkLink copied to clipboard!
Recovery from namespace deletion is possible because of the relationship between persistent volumes and namespaces. A PersistentVolume (PV) is a storage resource that lives outside of a namespace. A PV is mounted into a Kafka pod using a PersistentVolumeClaim (PVC), which lives inside a namespace.
The reclaim policy for a PV tells a cluster how to act when a namespace is deleted. If the reclaim policy is set as:
- Delete (default), PVs are deleted when PVCs are deleted within a namespace
- Retain, PVs are not deleted when a namespace is deleted
To ensure that you can recover from a PV if a namespace is deleted unintentionally, the policy must be reset from Delete to Retain in the PV specification using the persistentVolumeReclaimPolicy property:
Alternatively, PVs can inherit the reclaim policy of an associated storage class. Storage classes are used for dynamic volume allocation.
By configuring the reclaimPolicy property for the storage class, PVs that use the storage class are created with the appropriate reclaim policy. The storage class is configured for the PV using the storageClassName property.
If you are using Retain as the reclaim policy, but you want to delete an entire cluster, you need to delete the PVs manually. Otherwise they will not be deleted, and may cause unnecessary expenditure on resources.
13.3.2. Recovery from loss of an OpenShift cluster Copy linkLink copied to clipboard!
When a cluster is lost, you can use the data from disks/volumes to recover the cluster if they were preserved within the infrastructure. The recovery procedure is the same as with namespace deletion, assuming PVs can be recovered and they were created manually.
13.3.3. Recovering a deleted cluster from persistent volumes Copy linkLink copied to clipboard!
This procedure describes how to recover a deleted cluster from persistent volumes (PVs).
In this situation, the Topic Operator identifies that topics exist in Kafka, but the KafkaTopic resources do not exist.
When you get to the step to recreate your cluster, you have two options:
Use Option 1 when you can recover all
KafkaTopicresources.The
KafkaTopicresources must therefore be recovered before the cluster is started so that the corresponding topics are not deleted by the Topic Operator.Use Option 2 when you are unable to recover all
KafkaTopicresources.This time you deploy your cluster without the Topic Operator, delete the Topic Operator data in ZooKeeper, and then redeploy it so that the Topic Operator can recreate the
KafkaTopicresources from the corresponding topics.
If the Topic Operator is not deployed, you only need to recover the PersistentVolumeClaim (PVC) resources.
Before you begin
In this procedure, it is essential that PVs are mounted into the correct PVC to avoid data corruption. A volumeName is specified for the PVC and this must match the name of the PV.
For more information, see:
The procedure does not include recovery of KafkaUser resources, which must be recreated manually. If passwords and certificates need to be retained, secrets must be recreated before creating the KafkaUser resources.
Procedure
Check information on the PVs in the cluster:
oc get pv
oc get pvCopy to Clipboard Copied! Toggle word wrap Toggle overflow Information is presented for PVs with data.
Example output showing columns important to this procedure:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - NAME shows the name of each PV.
- RECLAIM POLICY shows that PVs are retained.
- CLAIM shows the link to the original PVCs.
Recreate the original namespace:
oc create namespace myproject
oc create namespace myprojectCopy to Clipboard Copied! Toggle word wrap Toggle overflow Recreate the original PVC resource specifications, linking the PVCs to the appropriate PV:
For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Edit the PV specifications to delete the
claimRefproperties that bound the original PVC.For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow In the example, the following properties are deleted:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Deploy the Cluster Operator.
oc apply -f install/cluster-operator -n my-project
oc apply -f install/cluster-operator -n my-projectCopy to Clipboard Copied! Toggle word wrap Toggle overflow Recreate your cluster.
Follow the steps depending on whether or not you have all the
KafkaTopicresources needed to recreate your cluster.Option 1: If you have all the
KafkaTopicresources that existed before you lost your cluster, including internal topics such as committed offsets from__consumer_offsets:Recreate all
KafkaTopicresources.It is essential that you recreate the resources before deploying the cluster, or the Topic Operator will delete the topics.
Deploy the Kafka cluster.
For example:
oc apply -f kafka.yaml
oc apply -f kafka.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow
Option 2: If you do not have all the
KafkaTopicresources that existed before you lost your cluster:Deploy the Kafka cluster, as with the first option, but without the Topic Operator by removing the
topicOperatorproperty from the Kafka resource before deploying.If you include the Topic Operator in the deployment, the Topic Operator will delete all the topics.
Run an
execcommand to one of the Kafka broker pods to open the ZooKeeper shell script.For example, where my-cluster-kafka-0 is the name of the broker pod:
oc exec my-cluster-kafka-0 bin/zookeeper-shell.sh localhost:2181
oc exec my-cluster-kafka-0 bin/zookeeper-shell.sh localhost:2181Copy to Clipboard Copied! Toggle word wrap Toggle overflow Delete the whole
/strimzipath to remove the Topic Operator storage:deleteall /strimzi
deleteall /strimziCopy to Clipboard Copied! Toggle word wrap Toggle overflow Enable the Topic Operator by redeploying the Kafka cluster with the
topicOperatorproperty to recreate theKafkaTopicresources.For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
- 1
- Here we show the default configuration, which has no additional properties. You specify the required configuration using the properties described in Section B.61, “
EntityTopicOperatorSpecschema reference”.
Verify the recovery by listing the
KafkaTopicresources:oc get KafkaTopic
oc get KafkaTopicCopy to Clipboard Copied! Toggle word wrap Toggle overflow
13.4. Uninstalling AMQ Streams Copy linkLink copied to clipboard!
This procedure describes how to uninstall AMQ Streams and remove resources related to the deployment.
Prerequisites
In order to perform this procedure, identify resources created specifically for a deployment and referenced from the AMQ Streams resource.
Such resources include:
- Secrets (Custom CAs and certificates, Kafka Connect secrets, and other Kafka secrets)
-
Logging
ConfigMaps(of typeexternal)
These are resources referenced by Kafka, KafkaConnect, KafkaConnectS2I, KafkaMirrorMaker, or KafkaBridge configuration.
Procedure
Delete the Cluster Operator
Deployment, relatedCustomResourceDefinitions, andRBACresources:oc delete -f install/cluster-operator
oc delete -f install/cluster-operatorCopy to Clipboard Copied! Toggle word wrap Toggle overflow WarningDeleting
CustomResourceDefinitionsresults in the garbage collection of the corresponding custom resources (Kafka,KafkaConnect,KafkaConnectS2I,KafkaMirrorMaker, orKafkaBridge) and the resources dependent on them (Deployments, StatefulSets, and other dependent resources).- Delete the resources you identified in the prerequisites.
Appendix A. Frequently asked questions Copy linkLink copied to clipboard!
Appendix B. Custom Resource API Reference Copy linkLink copied to clipboard!
B.1. Kafka schema reference Copy linkLink copied to clipboard!
| Property | Description |
|---|---|
| spec | The specification of the Kafka and ZooKeeper clusters, and Topic Operator. |
| status | The status of the Kafka and ZooKeeper clusters, and Topic Operator. |
B.2. KafkaSpec schema reference Copy linkLink copied to clipboard!
Used in: Kafka
| Property | Description |
|---|---|
| kafka | Configuration of the Kafka cluster. |
| zookeeper | Configuration of the ZooKeeper cluster. |
| topicOperator |
The property |
| entityOperator | Configuration of the Entity Operator. |
| clusterCa | Configuration of the cluster certificate authority. |
| clientsCa | Configuration of the clients certificate authority. |
| cruiseControl | Configuration for Cruise Control deployment. Deploys a Cruise Control instance when specified. |
| kafkaExporter | Configuration of the Kafka Exporter. Kafka Exporter can provide additional metrics, for example lag of consumer group at topic/partition. |
| maintenanceTimeWindows | A list of time windows for maintenance tasks (that is, certificates renewal). Each time window is defined by a cron expression. |
| string array |
B.3. KafkaClusterSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaSpec
| Property | Description |
|---|---|
| replicas | The number of pods in the cluster. |
| integer | |
| image |
The docker image for the pods. The default value depends on the configured |
| string | |
| storage |
Storage configuration (disk). Cannot be updated. The type depends on the value of the |
| listeners | Configures listeners of Kafka brokers. |
| authorization |
Authorization configuration for Kafka brokers. The type depends on the value of the |
|
| |
| config | Kafka broker config properties with the following prefixes cannot be set: listeners, advertised., broker., listener., host.name, port, inter.broker.listener.name, sasl., ssl., security., password., principal.builder.class, log.dir, zookeeper.connect, zookeeper.set.acl, authorizer., super.user, cruise.control.metrics.topic, cruise.control.metrics.reporter.bootstrap.servers (with the exception of: zookeeper.connection.timeout.ms, ssl.cipher.suites, ssl.protocol, ssl.enabled.protocols,cruise.control.metrics.topic.num.partitions, cruise.control.metrics.topic.replication.factor, cruise.control.metrics.topic.retention.ms). |
| map | |
| rack |
Configuration of the |
| brokerRackInitImage |
The image of the init container used for initializing the |
| string | |
| affinity |
The property |
| tolerations |
The property |
| Toleration array | |
| livenessProbe | Pod liveness checking. |
| readinessProbe | Pod readiness checking. |
| jvmOptions | JVM Options for pods. |
| jmxOptions | JMX Options for Kafka brokers. |
| resources | CPU and memory resources to reserve. See external documentation of core/v1 resourcerequirements. |
| metrics | The Prometheus JMX Exporter configuration. See https://github.com/prometheus/jmx_exporter for details of the structure of this configuration. |
| map | |
| logging |
Logging configuration for Kafka. The type depends on the value of the |
| tlsSidecar | TLS sidecar configuration. |
| template |
Template for Kafka cluster resources. The template allows users to specify how are the |
| version | The kafka broker version. Defaults to 2.5.0. Consult the user documentation to understand the process required to upgrade or downgrade the version. |
| string |
B.4. EphemeralStorage schema reference Copy linkLink copied to clipboard!
Used in: JbodStorage, KafkaClusterSpec, ZookeeperClusterSpec
The type property is a discriminator that distinguishes the use of the type EphemeralStorage from PersistentClaimStorage. It must have the value ephemeral for the type EphemeralStorage.
| Property | Description |
|---|---|
| id | Storage identification number. It is mandatory only for storage volumes defined in a storage of type 'jbod'. |
| integer | |
| sizeLimit | When type=ephemeral, defines the total amount of local storage required for this EmptyDir volume (for example 1Gi). |
| string | |
| type |
Must be |
| string |
B.5. PersistentClaimStorage schema reference Copy linkLink copied to clipboard!
Used in: JbodStorage, KafkaClusterSpec, ZookeeperClusterSpec
The type property is a discriminator that distinguishes the use of the type PersistentClaimStorage from EphemeralStorage. It must have the value persistent-claim for the type PersistentClaimStorage.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| size | When type=persistent-claim, defines the size of the persistent volume claim (i.e 1Gi). Mandatory when type=persistent-claim. |
| string | |
| selector | Specifies a specific persistent volume to use. It contains key:value pairs representing labels for selecting such a volume. |
| map | |
| deleteClaim | Specifies if the persistent volume claim has to be deleted when the cluster is un-deployed. |
| boolean | |
| class | The storage class to use for dynamic volume allocation. |
| string | |
| id | Storage identification number. It is mandatory only for storage volumes defined in a storage of type 'jbod'. |
| integer | |
| overrides |
Overrides for individual brokers. The |
B.6. PersistentClaimStorageOverride schema reference Copy linkLink copied to clipboard!
Used in: PersistentClaimStorage
| Property | Description |
|---|---|
| class | The storage class to use for dynamic volume allocation for this broker. |
| string | |
| broker | Id of the kafka broker (broker identifier). |
| integer |
B.7. JbodStorage schema reference Copy linkLink copied to clipboard!
Used in: KafkaClusterSpec
The type property is a discriminator that distinguishes the use of the type JbodStorage from EphemeralStorage, PersistentClaimStorage. It must have the value jbod for the type JbodStorage.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| volumes | List of volumes as Storage objects representing the JBOD disks array. |
B.8. KafkaListeners schema reference Copy linkLink copied to clipboard!
Used in: KafkaClusterSpec
| Property | Description |
|---|---|
| plain | Configures plain listener on port 9092. |
| tls | Configures TLS listener on port 9093. |
| external |
Configures external listener on port 9094. The type depends on the value of the |
|
|
B.9. KafkaListenerPlain schema reference Copy linkLink copied to clipboard!
Used in: KafkaListeners
| Property | Description |
|---|---|
| authentication |
Authentication configuration for this listener. Since this listener does not use TLS transport you cannot configure an authentication with |
|
| |
| networkPolicyPeers | List of peers which should be able to connect to this listener. Peers in this list are combined using a logical OR operation. If this field is empty or missing, all connections will be allowed for this listener. If this field is present and contains at least one item, the listener only allows the traffic which matches at least one item in this list. See external documentation of networking.k8s.io/v1 networkpolicypeer. |
| NetworkPolicyPeer array |
B.10. KafkaListenerAuthenticationTls schema reference Copy linkLink copied to clipboard!
Used in: KafkaListenerExternalIngress, KafkaListenerExternalLoadBalancer, KafkaListenerExternalNodePort, KafkaListenerExternalRoute, KafkaListenerPlain, KafkaListenerTls
The type property is a discriminator that distinguishes the use of the type KafkaListenerAuthenticationTls from KafkaListenerAuthenticationScramSha512, KafkaListenerAuthenticationOAuth. It must have the value tls for the type KafkaListenerAuthenticationTls.
| Property | Description |
|---|---|
| type |
Must be |
| string |
B.11. KafkaListenerAuthenticationScramSha512 schema reference Copy linkLink copied to clipboard!
Used in: KafkaListenerExternalIngress, KafkaListenerExternalLoadBalancer, KafkaListenerExternalNodePort, KafkaListenerExternalRoute, KafkaListenerPlain, KafkaListenerTls
The type property is a discriminator that distinguishes the use of the type KafkaListenerAuthenticationScramSha512 from KafkaListenerAuthenticationTls, KafkaListenerAuthenticationOAuth. It must have the value scram-sha-512 for the type KafkaListenerAuthenticationScramSha512.
| Property | Description |
|---|---|
| type |
Must be |
| string |
B.12. KafkaListenerAuthenticationOAuth schema reference Copy linkLink copied to clipboard!
Used in: KafkaListenerExternalIngress, KafkaListenerExternalLoadBalancer, KafkaListenerExternalNodePort, KafkaListenerExternalRoute, KafkaListenerPlain, KafkaListenerTls
The type property is a discriminator that distinguishes the use of the type KafkaListenerAuthenticationOAuth from KafkaListenerAuthenticationTls, KafkaListenerAuthenticationScramSha512. It must have the value oauth for the type KafkaListenerAuthenticationOAuth.
| Property | Description |
|---|---|
| accessTokenIsJwt |
Configure whether the access token is treated as JWT. This must be set to |
| boolean | |
| checkAccessTokenType |
Configure whether the access token type check is performed or not. This should be set to |
| boolean | |
| checkIssuer |
Enable or disable issuer checking. By default issuer is checked using the value configured by |
| boolean | |
| clientId | OAuth Client ID which the Kafka broker can use to authenticate against the authorization server and use the introspect endpoint URI. |
| string | |
| clientSecret | Link to OpenShift Secret containing the OAuth client secret which the Kafka broker can use to authenticate against the authorization server and use the introspect endpoint URI. |
| disableTlsHostnameVerification |
Enable or disable TLS hostname verification. Default value is |
| boolean | |
| enableECDSA |
Enable or disable ECDSA support by installing BouncyCastle crypto provider. Default value is |
| boolean | |
| fallbackUserNameClaim |
The fallback username claim to be used for the user id if the claim specified by |
| string | |
| fallbackUserNamePrefix |
The prefix to use with the value of |
| string | |
| introspectionEndpointUri | URI of the token introspection endpoint which can be used to validate opaque non-JWT tokens. |
| string | |
| jwksEndpointUri | URI of the JWKS certificate endpoint, which can be used for local JWT validation. |
| string | |
| jwksExpirySeconds |
Configures how often are the JWKS certificates considered valid. The expiry interval has to be at least 60 seconds longer then the refresh interval specified in |
| integer | |
| jwksRefreshSeconds |
Configures how often are the JWKS certificates refreshed. The refresh interval has to be at least 60 seconds shorter then the expiry interval specified in |
| integer | |
| tlsTrustedCertificates | Trusted certificates for TLS connection to the OAuth server. |
|
| |
| type |
Must be |
| string | |
| userInfoEndpointUri | URI of the User Info Endpoint to use as a fallback to obtaining the user id when the Introspection Endpoint does not return information that can be used for the user id. |
| string | |
| userNameClaim |
Name of the claim from the JWT authentication token, Introspection Endpoint response or User Info Endpoint response which will be used to extract the user id. Defaults to |
| string | |
| validIssuerUri | URI of the token issuer used for authentication. |
| string | |
| validTokenType |
Valid value for the |
| string |
B.13. GenericSecretSource schema reference Copy linkLink copied to clipboard!
Used in: KafkaClientAuthenticationOAuth, KafkaListenerAuthenticationOAuth
| Property | Description |
|---|---|
| key | The key under which the secret value is stored in the OpenShift Secret. |
| string | |
| secretName | The name of the OpenShift Secret containing the secret value. |
| string |
B.14. CertSecretSource schema reference Copy linkLink copied to clipboard!
Used in: KafkaAuthorizationKeycloak, KafkaBridgeTls, KafkaClientAuthenticationOAuth, KafkaConnectTls, KafkaListenerAuthenticationOAuth, KafkaMirrorMaker2Tls, KafkaMirrorMakerTls
| Property | Description |
|---|---|
| certificate | The name of the file certificate in the Secret. |
| string | |
| secretName | The name of the Secret containing the certificate. |
| string |
B.15. KafkaListenerTls schema reference Copy linkLink copied to clipboard!
Used in: KafkaListeners
| Property | Description |
|---|---|
| authentication |
Authentication configuration for this listener. The type depends on the value of the |
|
| |
| configuration | Configuration of TLS listener. |
| networkPolicyPeers | List of peers which should be able to connect to this listener. Peers in this list are combined using a logical OR operation. If this field is empty or missing, all connections will be allowed for this listener. If this field is present and contains at least one item, the listener only allows the traffic which matches at least one item in this list. See external documentation of networking.k8s.io/v1 networkpolicypeer. |
| NetworkPolicyPeer array |
B.16. TlsListenerConfiguration schema reference Copy linkLink copied to clipboard!
Used in: KafkaListenerTls
| Property | Description |
|---|---|
| brokerCertChainAndKey |
Reference to the |
B.17. CertAndKeySecretSource schema reference Copy linkLink copied to clipboard!
Used in: IngressListenerConfiguration, KafkaClientAuthenticationTls, KafkaListenerExternalConfiguration, NodePortListenerConfiguration, TlsListenerConfiguration
| Property | Description |
|---|---|
| certificate | The name of the file certificate in the Secret. |
| string | |
| key | The name of the private key in the Secret. |
| string | |
| secretName | The name of the Secret containing the certificate. |
| string |
B.18. KafkaListenerExternalRoute schema reference Copy linkLink copied to clipboard!
Used in: KafkaListeners
The type property is a discriminator that distinguishes the use of the type KafkaListenerExternalRoute from KafkaListenerExternalLoadBalancer, KafkaListenerExternalNodePort, KafkaListenerExternalIngress. It must have the value route for the type KafkaListenerExternalRoute.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| authentication |
Authentication configuration for Kafka brokers. The type depends on the value of the |
|
| |
| overrides | Overrides for external bootstrap and broker services and externally advertised addresses. |
| configuration | External listener configuration. |
| networkPolicyPeers | List of peers which should be able to connect to this listener. Peers in this list are combined using a logical OR operation. If this field is empty or missing, all connections will be allowed for this listener. If this field is present and contains at least one item, the listener only allows the traffic which matches at least one item in this list. See external documentation of networking.k8s.io/v1 networkpolicypeer. |
| NetworkPolicyPeer array |
B.19. RouteListenerOverride schema reference Copy linkLink copied to clipboard!
Used in: KafkaListenerExternalRoute
| Property | Description |
|---|---|
| bootstrap | External bootstrap service configuration. |
| brokers | External broker services configuration. |
B.20. RouteListenerBootstrapOverride schema reference Copy linkLink copied to clipboard!
Used in: RouteListenerOverride
| Property | Description |
|---|---|
| address | Additional address name for the bootstrap service. The address will be added to the list of subject alternative names of the TLS certificates. |
| string | |
| host |
Host for the bootstrap route. This field will be used in the |
| string |
B.21. RouteListenerBrokerOverride schema reference Copy linkLink copied to clipboard!
Used in: RouteListenerOverride
| Property | Description |
|---|---|
| broker | Id of the kafka broker (broker identifier). |
| integer | |
| advertisedHost |
The host name which will be used in the brokers' |
| string | |
| advertisedPort |
The port number which will be used in the brokers' |
| integer | |
| host |
Host for the broker route. This field will be used in the |
| string |
B.22. KafkaListenerExternalConfiguration schema reference Copy linkLink copied to clipboard!
Used in: KafkaListenerExternalLoadBalancer, KafkaListenerExternalRoute
| Property | Description |
|---|---|
| brokerCertChainAndKey |
Reference to the |
B.23. KafkaListenerExternalLoadBalancer schema reference Copy linkLink copied to clipboard!
Used in: KafkaListeners
The type property is a discriminator that distinguishes the use of the type KafkaListenerExternalLoadBalancer from KafkaListenerExternalRoute, KafkaListenerExternalNodePort, KafkaListenerExternalIngress. It must have the value loadbalancer for the type KafkaListenerExternalLoadBalancer.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| authentication |
Authentication configuration for Kafka brokers. The type depends on the value of the |
|
| |
| overrides | Overrides for external bootstrap and broker services and externally advertised addresses. |
| configuration | External listener configuration. |
| networkPolicyPeers | List of peers which should be able to connect to this listener. Peers in this list are combined using a logical OR operation. If this field is empty or missing, all connections will be allowed for this listener. If this field is present and contains at least one item, the listener only allows the traffic which matches at least one item in this list. See external documentation of networking.k8s.io/v1 networkpolicypeer. |
| NetworkPolicyPeer array | |
| tls |
Enables TLS encryption on the listener. By default set to |
| boolean |
B.24. LoadBalancerListenerOverride schema reference Copy linkLink copied to clipboard!
Used in: KafkaListenerExternalLoadBalancer
| Property | Description |
|---|---|
| bootstrap | External bootstrap service configuration. |
| brokers | External broker services configuration. |
B.25. LoadBalancerListenerBootstrapOverride schema reference Copy linkLink copied to clipboard!
Used in: LoadBalancerListenerOverride
| Property | Description |
|---|---|
| address | Additional address name for the bootstrap service. The address will be added to the list of subject alternative names of the TLS certificates. |
| string | |
| dnsAnnotations |
Annotations that will be added to the |
| map | |
| loadBalancerIP |
The loadbalancer is requested with the IP address specified in this field. This feature depends on whether the underlying cloud provider supports specifying the |
| string |
B.26. LoadBalancerListenerBrokerOverride schema reference Copy linkLink copied to clipboard!
Used in: LoadBalancerListenerOverride
| Property | Description |
|---|---|
| broker | Id of the kafka broker (broker identifier). |
| integer | |
| advertisedHost |
The host name which will be used in the brokers' |
| string | |
| advertisedPort |
The port number which will be used in the brokers' |
| integer | |
| dnsAnnotations |
Annotations that will be added to the |
| map | |
| loadBalancerIP |
The loadbalancer is requested with the IP address specified in this field. This feature depends on whether the underlying cloud provider supports specifying the |
| string |
B.27. KafkaListenerExternalNodePort schema reference Copy linkLink copied to clipboard!
Used in: KafkaListeners
The type property is a discriminator that distinguishes the use of the type KafkaListenerExternalNodePort from KafkaListenerExternalRoute, KafkaListenerExternalLoadBalancer, KafkaListenerExternalIngress. It must have the value nodeport for the type KafkaListenerExternalNodePort.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| authentication |
Authentication configuration for Kafka brokers. The type depends on the value of the |
|
| |
| overrides | Overrides for external bootstrap and broker services and externally advertised addresses. |
| configuration | External listener configuration. |
| networkPolicyPeers | List of peers which should be able to connect to this listener. Peers in this list are combined using a logical OR operation. If this field is empty or missing, all connections will be allowed for this listener. If this field is present and contains at least one item, the listener only allows the traffic which matches at least one item in this list. See external documentation of networking.k8s.io/v1 networkpolicypeer. |
| NetworkPolicyPeer array | |
| tls |
Enables TLS encryption on the listener. By default set to |
| boolean |
B.28. NodePortListenerOverride schema reference Copy linkLink copied to clipboard!
Used in: KafkaListenerExternalNodePort
| Property | Description |
|---|---|
| bootstrap | External bootstrap service configuration. |
| brokers | External broker services configuration. |
B.29. NodePortListenerBootstrapOverride schema reference Copy linkLink copied to clipboard!
Used in: NodePortListenerOverride
| Property | Description |
|---|---|
| address | Additional address name for the bootstrap service. The address will be added to the list of subject alternative names of the TLS certificates. |
| string | |
| dnsAnnotations |
Annotations that will be added to the |
| map | |
| nodePort | Node port for the bootstrap service. |
| integer |
B.30. NodePortListenerBrokerOverride schema reference Copy linkLink copied to clipboard!
Used in: NodePortListenerOverride
| Property | Description |
|---|---|
| broker | Id of the kafka broker (broker identifier). |
| integer | |
| advertisedHost |
The host name which will be used in the brokers' |
| string | |
| advertisedPort |
The port number which will be used in the brokers' |
| integer | |
| nodePort | Node port for the broker service. |
| integer | |
| dnsAnnotations |
Annotations that will be added to the |
| map |
B.31. NodePortListenerConfiguration schema reference Copy linkLink copied to clipboard!
Used in: KafkaListenerExternalNodePort
| Property | Description |
|---|---|
| brokerCertChainAndKey |
Reference to the |
| preferredAddressType |
Defines which address type should be used as the node address. Available types are: This field can be used to select the address type which will be used as the preferred type and checked first. In case no address will be found for this address type, the other types will be used in the default order.. |
| string (one of [ExternalDNS, ExternalIP, Hostname, InternalIP, InternalDNS]) |
B.32. KafkaListenerExternalIngress schema reference Copy linkLink copied to clipboard!
Used in: KafkaListeners
The type property is a discriminator that distinguishes the use of the type KafkaListenerExternalIngress from KafkaListenerExternalRoute, KafkaListenerExternalLoadBalancer, KafkaListenerExternalNodePort. It must have the value ingress for the type KafkaListenerExternalIngress.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| authentication |
Authentication configuration for Kafka brokers. The type depends on the value of the |
|
| |
| class |
Configures the |
| string | |
| configuration | External listener configuration. |
| networkPolicyPeers | List of peers which should be able to connect to this listener. Peers in this list are combined using a logical OR operation. If this field is empty or missing, all connections will be allowed for this listener. If this field is present and contains at least one item, the listener only allows the traffic which matches at least one item in this list. See external documentation of networking.k8s.io/v1 networkpolicypeer. |
| NetworkPolicyPeer array |
B.33. IngressListenerConfiguration schema reference Copy linkLink copied to clipboard!
Used in: KafkaListenerExternalIngress
| Property | Description |
|---|---|
| bootstrap | External bootstrap ingress configuration. |
| brokers | External broker ingress configuration. |
| brokerCertChainAndKey |
Reference to the |
B.34. IngressListenerBootstrapConfiguration schema reference Copy linkLink copied to clipboard!
Used in: IngressListenerConfiguration
| Property | Description |
|---|---|
| address | Additional address name for the bootstrap service. The address will be added to the list of subject alternative names of the TLS certificates. |
| string | |
| dnsAnnotations |
Annotations that will be added to the |
| map | |
| host | Host for the bootstrap route. This field will be used in the Ingress resource. |
| string |
B.35. IngressListenerBrokerConfiguration schema reference Copy linkLink copied to clipboard!
Used in: IngressListenerConfiguration
| Property | Description |
|---|---|
| broker | Id of the kafka broker (broker identifier). |
| integer | |
| advertisedHost |
The host name which will be used in the brokers' |
| string | |
| advertisedPort |
The port number which will be used in the brokers' |
| integer | |
| host | Host for the broker ingress. This field will be used in the Ingress resource. |
| string | |
| dnsAnnotations |
Annotations that will be added to the |
| map |
B.36. KafkaAuthorizationSimple schema reference Copy linkLink copied to clipboard!
Used in: KafkaClusterSpec
The type property is a discriminator that distinguishes the use of the type KafkaAuthorizationSimple from KafkaAuthorizationOpa, KafkaAuthorizationKeycloak. It must have the value simple for the type KafkaAuthorizationSimple.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| superUsers | List of super users. Should contain list of user principals which should get unlimited access rights. |
| string array |
B.37. KafkaAuthorizationOpa schema reference Copy linkLink copied to clipboard!
Used in: KafkaClusterSpec
To use Open Policy Agent authorization, set the type property in the authorization section to the value opa. The Open Policy Agent authorizer has several configuration options:
url- The URL used to connect to the Open Policy Agent server. The URL has to include the policy which will be queried by the authorizer. Required.
allowOnError-
Defines whether a Kafka client should be allowed or denied by default when the authorizer fails to query the Open Policy Agent, for example, when it is temporarily unavailable. Defaults to
false- all actions will be denied. initialCacheCapacity-
Initial capacity of the local cache used by the authorizer to avoid querying the Open Policy Agent for every request. Defaults to
5000. maximumCacheSize-
Maximum capacity of the local cache used by the authorizer to avoid querying the Open Policy Agent for every request. Defaults to
50000. expireAfterMs-
The expiration of the records kept in the local cache to avoid querying the Open Policy Agent for every request. Defines how often the cached authorization decisions are reloaded from the Open Policy Agent server. In milliseconds. Defaults to
3600000milliseconds (1 hour). superUsers- A list of user principals treated as super users, so that they are always allowed without querying the open Policy Agent policy. For more information see Super users.
An example of Open Policy Agent authorizer configuration
The type property is a discriminator that distinguishes the use of the type KafkaAuthorizationOpa from KafkaAuthorizationSimple, KafkaAuthorizationKeycloak. It must have the value opa for the type KafkaAuthorizationOpa.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| url | The URL used to connect to the Open Policy Agent server. The URL has to include the policy which will be queried by the authorizer. This option is required. |
| string | |
| allowOnError |
Defines whether a Kafka client should be allowed or denied by default when the authorizer fails to query the Open Policy Agent, for example, when it is temporarily unavailable). Defaults to |
| boolean | |
| initialCacheCapacity |
Initial capacity of the local cache used by the authorizer to avoid querying the Open Policy Agent for every request Defaults to |
| integer | |
| maximumCacheSize |
Maximum capacity of the local cache used by the authorizer to avoid querying the Open Policy Agent for every request. Defaults to |
| integer | |
| expireAfterMs |
The expiration of the records kept in the local cache to avoid querying the Open Policy Agent for every request. Defines how often the cached authorization decisions are reloaded from the Open Policy Agent server. In milliseconds. Defaults to |
| integer | |
| superUsers | List of super users, which is specifically a list of user principals that have unlimited access rights. |
| string array |
B.38. KafkaAuthorizationKeycloak schema reference Copy linkLink copied to clipboard!
Used in: KafkaClusterSpec
The type property is a discriminator that distinguishes the use of the type KafkaAuthorizationKeycloak from KafkaAuthorizationSimple, KafkaAuthorizationOpa. It must have the value keycloak for the type KafkaAuthorizationKeycloak.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| clientId | OAuth Client ID which the Kafka client can use to authenticate against the OAuth server and use the token endpoint URI. |
| string | |
| tokenEndpointUri | Authorization server token endpoint URI. |
| string | |
| tlsTrustedCertificates | Trusted certificates for TLS connection to the OAuth server. |
|
| |
| disableTlsHostnameVerification |
Enable or disable TLS hostname verification. Default value is |
| boolean | |
| delegateToKafkaAcls |
Whether authorization decision should be delegated to the 'Simple' authorizer if DENIED by Red Hat Single Sign-On Authorization Services policies.Default value is |
| boolean | |
| superUsers | List of super users. Should contain list of user principals which should get unlimited access rights. |
| string array |
B.39. Rack schema reference Copy linkLink copied to clipboard!
Used in: KafkaClusterSpec
| Property | Description |
|---|---|
| topologyKey |
A key that matches labels assigned to the OpenShift cluster nodes. The value of the label is used to set the broker’s |
| string |
B.40. Probe schema reference Copy linkLink copied to clipboard!
Used in: CruiseControlSpec, EntityTopicOperatorSpec, EntityUserOperatorSpec, KafkaBridgeSpec, KafkaClusterSpec, KafkaConnectS2ISpec, KafkaConnectSpec, KafkaExporterSpec, KafkaMirrorMaker2Spec, KafkaMirrorMakerSpec, TlsSidecar, TopicOperatorSpec, ZookeeperClusterSpec
| Property | Description |
|---|---|
| failureThreshold | Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. |
| integer | |
| initialDelaySeconds | The initial delay before first the health is first checked. |
| integer | |
| periodSeconds | How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. |
| integer | |
| successThreshold | Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1. |
| integer | |
| timeoutSeconds | The timeout for each attempted health check. |
| integer |
B.41. JvmOptions schema reference Copy linkLink copied to clipboard!
Used in: CruiseControlSpec, EntityTopicOperatorSpec, EntityUserOperatorSpec, KafkaBridgeSpec, KafkaClusterSpec, KafkaConnectS2ISpec, KafkaConnectSpec, KafkaMirrorMaker2Spec, KafkaMirrorMakerSpec, TopicOperatorSpec, ZookeeperClusterSpec
| Property | Description |
|---|---|
| -XX | A map of -XX options to the JVM. |
| map | |
| -Xms | -Xms option to to the JVM. |
| string | |
| -Xmx | -Xmx option to to the JVM. |
| string | |
| gcLoggingEnabled | Specifies whether the Garbage Collection logging is enabled. The default is false. |
| boolean | |
| javaSystemProperties |
A map of additional system properties which will be passed using the |
|
|
B.42. SystemProperty schema reference Copy linkLink copied to clipboard!
Used in: JvmOptions
| Property | Description |
|---|---|
| name | The system property name. |
| string | |
| value | The system property value. |
| string |
B.43. KafkaJmxOptions schema reference Copy linkLink copied to clipboard!
Used in: KafkaClusterSpec
| Property | Description |
|---|---|
| authentication |
Authentication configuration for connecting to the Kafka JMX port. The type depends on the value of the |
B.44. KafkaJmxAuthenticationPassword schema reference Copy linkLink copied to clipboard!
Used in: KafkaJmxOptions
The type property is a discriminator that distinguishes the use of the type KafkaJmxAuthenticationPassword from other subtypes which may be added in the future. It must have the value password for the type KafkaJmxAuthenticationPassword.
| Property | Description |
|---|---|
| type |
Must be |
| string |
B.45. InlineLogging schema reference Copy linkLink copied to clipboard!
Used in: CruiseControlSpec, EntityTopicOperatorSpec, EntityUserOperatorSpec, KafkaBridgeSpec, KafkaClusterSpec, KafkaConnectS2ISpec, KafkaConnectSpec, KafkaMirrorMaker2Spec, KafkaMirrorMakerSpec, TopicOperatorSpec, ZookeeperClusterSpec
The type property is a discriminator that distinguishes the use of the type InlineLogging from ExternalLogging. It must have the value inline for the type InlineLogging.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| loggers | A Map from logger name to logger level. |
| map |
B.46. ExternalLogging schema reference Copy linkLink copied to clipboard!
Used in: CruiseControlSpec, EntityTopicOperatorSpec, EntityUserOperatorSpec, KafkaBridgeSpec, KafkaClusterSpec, KafkaConnectS2ISpec, KafkaConnectSpec, KafkaMirrorMaker2Spec, KafkaMirrorMakerSpec, TopicOperatorSpec, ZookeeperClusterSpec
The type property is a discriminator that distinguishes the use of the type ExternalLogging from InlineLogging. It must have the value external for the type ExternalLogging.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| name |
The name of the |
| string |
B.47. TlsSidecar schema reference Copy linkLink copied to clipboard!
Used in: CruiseControlSpec, EntityOperatorSpec, KafkaClusterSpec, TopicOperatorSpec, ZookeeperClusterSpec
| Property | Description |
|---|---|
| image | The docker image for the container. |
| string | |
| livenessProbe | Pod liveness checking. |
| logLevel |
The log level for the TLS sidecar. Default value is |
| string (one of [emerg, debug, crit, err, alert, warning, notice, info]) | |
| readinessProbe | Pod readiness checking. |
| resources | CPU and memory resources to reserve. See external documentation of core/v1 resourcerequirements. |
B.48. KafkaClusterTemplate schema reference Copy linkLink copied to clipboard!
Used in: KafkaClusterSpec
| Property | Description |
|---|---|
| statefulset |
Template for Kafka |
| pod |
Template for Kafka |
| bootstrapService |
Template for Kafka bootstrap |
| brokersService |
Template for Kafka broker |
| externalBootstrapService |
Template for Kafka external bootstrap |
| perPodService |
Template for Kafka per-pod |
| externalBootstrapRoute |
Template for Kafka external bootstrap |
| perPodRoute |
Template for Kafka per-pod |
| externalBootstrapIngress |
Template for Kafka external bootstrap |
| perPodIngress |
Template for Kafka per-pod |
| persistentVolumeClaim |
Template for all Kafka |
| podDisruptionBudget |
Template for Kafka |
| kafkaContainer | Template for the Kafka broker container. |
| tlsSidecarContainer | Template for the Kafka broker TLS sidecar container. |
| initContainer | Template for the Kafka init container. |
B.49. StatefulSetTemplate schema reference Copy linkLink copied to clipboard!
Used in: KafkaClusterTemplate, ZookeeperClusterTemplate
| Property | Description |
|---|---|
| metadata | Metadata which should be applied to the resource. |
| podManagementPolicy |
PodManagementPolicy which will be used for this StatefulSet. Valid values are |
| string (one of [OrderedReady, Parallel]) |
B.50. MetadataTemplate schema reference Copy linkLink copied to clipboard!
Used in: ExternalServiceTemplate, PodDisruptionBudgetTemplate, PodTemplate, ResourceTemplate, StatefulSetTemplate
| Property | Description |
|---|---|
| labels |
Labels which should be added to the resource template. Can be applied to different resources such as |
| map | |
| annotations |
Annotations which should be added to the resource template. Can be applied to different resources such as |
| map |
B.51. PodTemplate schema reference Copy linkLink copied to clipboard!
Used in: CruiseControlTemplate, EntityOperatorTemplate, KafkaBridgeTemplate, KafkaClusterTemplate, KafkaConnectTemplate, KafkaExporterTemplate, KafkaMirrorMakerTemplate, ZookeeperClusterTemplate
| Property | Description |
|---|---|
| metadata | Metadata applied to the resource. |
| imagePullSecrets | List of references to secrets in the same namespace to use for pulling any of the images used by this Pod. See external documentation of core/v1 localobjectreference. |
| LocalObjectReference array | |
| securityContext | Configures pod-level security attributes and common container settings. See external documentation of core/v1 podsecuritycontext. |
| terminationGracePeriodSeconds | The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process.Value must be non-negative integer. The value zero indicates delete immediately. Defaults to 30 seconds. |
| integer | |
| affinity | The pod’s affinity rules. See external documentation of core/v1 affinity. |
| priorityClassName | The name of the Priority Class to which these pods will be assigned. |
| string | |
| schedulerName |
The name of the scheduler used to dispatch this |
| string | |
| tolerations | The pod’s tolerations. See external documentation of core/v1 toleration. |
| Toleration array |
B.52. ResourceTemplate schema reference Copy linkLink copied to clipboard!
Used in: CruiseControlTemplate, EntityOperatorTemplate, KafkaBridgeTemplate, KafkaClusterTemplate, KafkaConnectTemplate, KafkaExporterTemplate, KafkaMirrorMakerTemplate, ZookeeperClusterTemplate
| Property | Description |
|---|---|
| metadata | Metadata which should be applied to the resource. |
B.53. ExternalServiceTemplate schema reference Copy linkLink copied to clipboard!
Used in: KafkaClusterTemplate
| Property | Description |
|---|---|
| metadata | Metadata which should be applied to the resource. |
| externalTrafficPolicy |
Specifies whether the service routes external traffic to node-local or cluster-wide endpoints. |
| string (one of [Local, Cluster]) | |
| loadBalancerSourceRanges |
A list of CIDR ranges (for example |
| string array |
B.54. PodDisruptionBudgetTemplate schema reference Copy linkLink copied to clipboard!
Used in: CruiseControlTemplate, KafkaBridgeTemplate, KafkaClusterTemplate, KafkaConnectTemplate, KafkaMirrorMakerTemplate, ZookeeperClusterTemplate
| Property | Description |
|---|---|
| metadata |
Metadata to apply to the |
| maxUnavailable |
Maximum number of unavailable pods to allow automatic Pod eviction. A Pod eviction is allowed when the |
| integer |
B.55. ContainerTemplate schema reference Copy linkLink copied to clipboard!
Used in: CruiseControlTemplate, EntityOperatorTemplate, KafkaBridgeTemplate, KafkaClusterTemplate, KafkaConnectTemplate, KafkaExporterTemplate, KafkaMirrorMakerTemplate, ZookeeperClusterTemplate
| Property | Description |
|---|---|
| env | Environment variables which should be applied to the container. |
|
| |
| securityContext | Security context for the container. See external documentation of core/v1 securitycontext. |
B.56. ContainerEnvVar schema reference Copy linkLink copied to clipboard!
Used in: ContainerTemplate
| Property | Description |
|---|---|
| name | The environment variable key. |
| string | |
| value | The environment variable value. |
| string |
B.57. ZookeeperClusterSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaSpec
| Property | Description |
|---|---|
| replicas | The number of pods in the cluster. |
| integer | |
| image | The docker image for the pods. |
| string | |
| storage |
Storage configuration (disk). Cannot be updated. The type depends on the value of the |
| config | The ZooKeeper broker config. Properties with the following prefixes cannot be set: server., dataDir, dataLogDir, clientPort, authProvider, quorum.auth, requireClientAuthScheme, snapshot.trust.empty, standaloneEnabled, reconfigEnabled, 4lw.commands.whitelist, secureClientPort, ssl., serverCnxnFactory, sslQuorum (with the exception of: ssl.protocol, ssl.quorum.protocol, ssl.enabledProtocols, ssl.quorum.enabledProtocols, ssl.ciphersuites, ssl.quorum.ciphersuites, ssl.hostnameVerification, ssl.quorum.hostnameVerification). |
| map | |
| affinity |
The property |
| tolerations |
The property |
| Toleration array | |
| livenessProbe | Pod liveness checking. |
| readinessProbe | Pod readiness checking. |
| jvmOptions | JVM Options for pods. |
| resources | CPU and memory resources to reserve. See external documentation of core/v1 resourcerequirements. |
| metrics | The Prometheus JMX Exporter configuration. See https://github.com/prometheus/jmx_exporter for details of the structure of this configuration. |
| map | |
| logging |
Logging configuration for ZooKeeper. The type depends on the value of the |
| template |
Template for ZooKeeper cluster resources. The template allows users to specify how are the |
| tlsSidecar |
The property |
B.58. ZookeeperClusterTemplate schema reference Copy linkLink copied to clipboard!
Used in: ZookeeperClusterSpec
| Property | Description |
|---|---|
| statefulset |
Template for ZooKeeper |
| pod |
Template for ZooKeeper |
| clientService |
Template for ZooKeeper client |
| nodesService |
Template for ZooKeeper nodes |
| persistentVolumeClaim |
Template for all ZooKeeper |
| podDisruptionBudget |
Template for ZooKeeper |
| zookeeperContainer | Template for the ZooKeeper container. |
| tlsSidecarContainer |
The property |
B.59. TopicOperatorSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaSpec
| Property | Description |
|---|---|
| watchedNamespace | The namespace the Topic Operator should watch. |
| string | |
| image | The image to use for the Topic Operator. |
| string | |
| reconciliationIntervalSeconds | Interval between periodic reconciliations. |
| integer | |
| zookeeperSessionTimeoutSeconds | Timeout for the ZooKeeper session. |
| integer | |
| affinity | Pod affinity rules. See external documentation of core/v1 affinity. |
| resources | CPU and memory resources to reserve. See external documentation of core/v1 resourcerequirements. |
| topicMetadataMaxAttempts | The number of attempts at getting topic metadata. |
| integer | |
| tlsSidecar | TLS sidecar configuration. |
| logging |
Logging configuration. The type depends on the value of the |
| jvmOptions | JVM Options for pods. |
| livenessProbe | Pod liveness checking. |
| readinessProbe | Pod readiness checking. |
B.60. EntityOperatorSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaSpec
| Property | Description |
|---|---|
| topicOperator | Configuration of the Topic Operator. |
| userOperator | Configuration of the User Operator. |
| affinity |
The property |
| tolerations |
The property |
| Toleration array | |
| tlsSidecar | TLS sidecar configuration. |
| template |
Template for Entity Operator resources. The template allows users to specify how is the |
B.61. EntityTopicOperatorSpec schema reference Copy linkLink copied to clipboard!
Used in: EntityOperatorSpec
| Property | Description |
|---|---|
| watchedNamespace | The namespace the Topic Operator should watch. |
| string | |
| image | The image to use for the Topic Operator. |
| string | |
| reconciliationIntervalSeconds | Interval between periodic reconciliations. |
| integer | |
| zookeeperSessionTimeoutSeconds | Timeout for the ZooKeeper session. |
| integer | |
| livenessProbe | Pod liveness checking. |
| readinessProbe | Pod readiness checking. |
| resources | CPU and memory resources to reserve. See external documentation of core/v1 resourcerequirements. |
| topicMetadataMaxAttempts | The number of attempts at getting topic metadata. |
| integer | |
| logging |
Logging configuration. The type depends on the value of the |
| jvmOptions | JVM Options for pods. |
B.62. EntityUserOperatorSpec schema reference Copy linkLink copied to clipboard!
Used in: EntityOperatorSpec
| Property | Description |
|---|---|
| watchedNamespace | The namespace the User Operator should watch. |
| string | |
| image | The image to use for the User Operator. |
| string | |
| reconciliationIntervalSeconds | Interval between periodic reconciliations. |
| integer | |
| zookeeperSessionTimeoutSeconds | Timeout for the ZooKeeper session. |
| integer | |
| livenessProbe | Pod liveness checking. |
| readinessProbe | Pod readiness checking. |
| resources | CPU and memory resources to reserve. See external documentation of core/v1 resourcerequirements. |
| logging |
Logging configuration. The type depends on the value of the |
| jvmOptions | JVM Options for pods. |
B.63. EntityOperatorTemplate schema reference Copy linkLink copied to clipboard!
Used in: EntityOperatorSpec
| Property | Description |
|---|---|
| deployment |
Template for Entity Operator |
| pod |
Template for Entity Operator |
| tlsSidecarContainer | Template for the Entity Operator TLS sidecar container. |
| topicOperatorContainer | Template for the Entity Topic Operator container. |
| userOperatorContainer | Template for the Entity User Operator container. |
B.64. CertificateAuthority schema reference Copy linkLink copied to clipboard!
Used in: KafkaSpec
Configuration of how TLS certificates are used within the cluster. This applies to certificates used for both internal communication within the cluster and to certificates used for client access via Kafka.spec.kafka.listeners.tls.
| Property | Description |
|---|---|
| generateCertificateAuthority | If true then Certificate Authority certificates will be generated automatically. Otherwise the user will need to provide a Secret with the CA certificate. Default is true. |
| boolean | |
| validityDays | The number of days generated certificates should be valid for. The default is 365. |
| integer | |
| renewalDays |
The number of days in the certificate renewal period. This is the number of days before the a certificate expires during which renewal actions may be performed. When |
| integer | |
| certificateExpirationPolicy |
How should CA certificate expiration be handled when |
| string (one of [replace-key, renew-certificate]) |
B.65. CruiseControlSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaSpec
| Property | Description |
|---|---|
| image | The docker image for the pods. |
| string | |
| config | The Cruise Control configuration. For a full list of configuration options refer to https://github.com/linkedin/cruise-control/wiki/Configurations. Note that properties with the following prefixes cannot be set: bootstrap.servers, client.id, zookeeper., network., security., failed.brokers.zk.path,webserver.http., webserver.api.urlprefix, webserver.session.path, webserver.accesslog., two.step., request.reason.required,metric.reporter.sampler.bootstrap.servers, metric.reporter.topic, partition.metric.sample.store.topic, broker.metric.sample.store.topic,capacity.config.file, self.healing., anomaly.detection., ssl. |
| map | |
| livenessProbe | Pod liveness checking for the Cruise Control container. |
| readinessProbe | Pod readiness checking for the Cruise Control container. |
| jvmOptions | JVM Options for the Cruise Control container. |
| resources | CPU and memory resources to reserve for the Cruise Control container. See external documentation of core/v1 resourcerequirements. |
| logging |
Logging configuration (log4j1) for Cruise Control. The type depends on the value of the |
| tlsSidecar | TLS sidecar configuration. |
| template |
Template to specify how Cruise Control resources, |
| brokerCapacity |
The Cruise Control |
B.66. CruiseControlTemplate schema reference Copy linkLink copied to clipboard!
Used in: CruiseControlSpec
| Property | Description |
|---|---|
| deployment |
Template for Cruise Control |
| pod |
Template for Cruise Control |
| apiService |
Template for Cruise Control API |
| podDisruptionBudget |
Template for Cruise Control |
| cruiseControlContainer | Template for the Cruise Control container. |
| tlsSidecarContainer | Template for the Cruise Control TLS sidecar container. |
B.67. BrokerCapacity schema reference Copy linkLink copied to clipboard!
Used in: CruiseControlSpec
| Property | Description |
|---|---|
| disk | Broker capacity for disk in bytes, for example, 100Gi. |
| string | |
| cpuUtilization | Broker capacity for CPU resource utilization as a percentage (0 - 100). |
| integer | |
| inboundNetwork | Broker capacity for inbound network throughput in bytes per second, for example, 10000KB/s. |
| string | |
| outboundNetwork | Broker capacity for outbound network throughput in bytes per second, for example 10000KB/s. |
| string |
B.68. KafkaExporterSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaSpec
| Property | Description |
|---|---|
| image | The docker image for the pods. |
| string | |
| groupRegex |
Regular expression to specify which consumer groups to collect. Default value is |
| string | |
| topicRegex |
Regular expression to specify which topics to collect. Default value is |
| string | |
| resources | CPU and memory resources to reserve. See external documentation of core/v1 resourcerequirements. |
| logging |
Only log messages with the given severity or above. Valid levels: [ |
| string | |
| enableSaramaLogging | Enable Sarama logging, a Go client library used by the Kafka Exporter. |
| boolean | |
| template | Customization of deployment templates and pods. |
| livenessProbe | Pod liveness check. |
| readinessProbe | Pod readiness check. |
B.69. KafkaExporterTemplate schema reference Copy linkLink copied to clipboard!
Used in: KafkaExporterSpec
| Property | Description |
|---|---|
| deployment |
Template for Kafka Exporter |
| pod |
Template for Kafka Exporter |
| service |
Template for Kafka Exporter |
| container | Template for the Kafka Exporter container. |
B.70. KafkaStatus schema reference Copy linkLink copied to clipboard!
Used in: Kafka
| Property | Description |
|---|---|
| conditions | List of status conditions. |
|
| |
| observedGeneration | The generation of the CRD that was last reconciled by the operator. |
| integer | |
| listeners | Addresses of the internal and external listeners. |
|
|
B.71. Condition schema reference Copy linkLink copied to clipboard!
Used in: KafkaBridgeStatus, KafkaConnectorStatus, KafkaConnectS2IStatus, KafkaConnectStatus, KafkaMirrorMaker2Status, KafkaMirrorMakerStatus, KafkaRebalanceStatus, KafkaStatus, KafkaTopicStatus, KafkaUserStatus
| Property | Description |
|---|---|
| type | The unique identifier of a condition, used to distinguish between other conditions in the resource. |
| string | |
| status | The status of the condition, either True, False or Unknown. |
| string | |
| lastTransitionTime | Last time the condition of a type changed from one status to another. The required format is 'yyyy-MM-ddTHH:mm:ssZ', in the UTC time zone. |
| string | |
| reason | The reason for the condition’s last transition (a single word in CamelCase). |
| string | |
| message | Human-readable message indicating details about the condition’s last transition. |
| string |
B.72. ListenerStatus schema reference Copy linkLink copied to clipboard!
Used in: KafkaStatus
| Property | Description |
|---|---|
| type |
The type of the listener. Can be one of the following three types: |
| string | |
| addresses | A list of the addresses for this listener. |
|
| |
| bootstrapServers |
A comma-separated list of |
| string | |
| certificates |
A list of TLS certificates which can be used to verify the identity of the server when connecting to the given listener. Set only for |
| string array |
B.73. ListenerAddress schema reference Copy linkLink copied to clipboard!
Used in: ListenerStatus
| Property | Description |
|---|---|
| host | The DNS name or IP address of the Kafka bootstrap service. |
| string | |
| port | The port of the Kafka bootstrap service. |
| integer |
B.74. KafkaConnect schema reference Copy linkLink copied to clipboard!
| Property | Description |
|---|---|
| spec | The specification of the Kafka Connect cluster. |
| status | The status of the Kafka Connect cluster. |
B.75. KafkaConnectSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaConnect
| Property | Description |
|---|---|
| replicas | The number of pods in the Kafka Connect group. |
| integer | |
| version | The Kafka Connect version. Defaults to 2.5.0. Consult the user documentation to understand the process required to upgrade or downgrade the version. |
| string | |
| image | The docker image for the pods. |
| string | |
| bootstrapServers | Bootstrap servers to connect to. This should be given as a comma separated list of <hostname>:<port> pairs. |
| string | |
| tls | TLS configuration. |
| authentication |
Authentication configuration for Kafka Connect. The type depends on the value of the |
|
| |
| config | The Kafka Connect configuration. Properties with the following prefixes cannot be set: ssl., sasl., security., listeners, plugin.path, rest., bootstrap.servers, consumer.interceptor.classes, producer.interceptor.classes (with the exception of: ssl.endpoint.identification.algorithm, ssl.cipher.suites, ssl.protocol, ssl.enabled.protocols). |
| map | |
| resources | The maximum limits for CPU and memory resources and the requested initial resources. See external documentation of core/v1 resourcerequirements. |
| livenessProbe | Pod liveness checking. |
| readinessProbe | Pod readiness checking. |
| jvmOptions | JVM Options for pods. |
| affinity |
The property |
| tolerations |
The property |
| Toleration array | |
| logging |
Logging configuration for Kafka Connect. The type depends on the value of the |
| metrics | The Prometheus JMX Exporter configuration. See https://github.com/prometheus/jmx_exporter for details of the structure of this configuration. |
| map | |
| tracing |
The configuration of tracing in Kafka Connect. The type depends on the value of the |
| template |
Template for Kafka Connect and Kafka Connect S2I resources. The template allows users to specify how the |
| externalConfiguration | Pass data from Secrets or ConfigMaps to the Kafka Connect pods and use them to configure connectors. |
B.76. KafkaConnectTls schema reference Copy linkLink copied to clipboard!
Used in: KafkaConnectS2ISpec, KafkaConnectSpec
| Property | Description |
|---|---|
| trustedCertificates | Trusted certificates for TLS connection. |
|
|
B.77. KafkaClientAuthenticationTls schema reference Copy linkLink copied to clipboard!
Used in: KafkaBridgeSpec, KafkaConnectS2ISpec, KafkaConnectSpec, KafkaMirrorMaker2ClusterSpec, KafkaMirrorMakerConsumerSpec, KafkaMirrorMakerProducerSpec
To use TLS client authentication, set the type property to the value tls. TLS client authentication uses a TLS certificate to authenticate. The certificate is specified in the certificateAndKey property and is always loaded from an OpenShift secret. In the secret, the certificate must be stored in X509 format under two different keys: public and private.
TLS client authentication can only be used with TLS connections.
An example TLS client authentication configuration
The type property is a discriminator that distinguishes the use of the type KafkaClientAuthenticationTls from KafkaClientAuthenticationScramSha512, KafkaClientAuthenticationPlain, KafkaClientAuthenticationOAuth. It must have the value tls for the type KafkaClientAuthenticationTls.
| Property | Description |
|---|---|
| certificateAndKey |
Reference to the |
| type |
Must be |
| string |
B.78. KafkaClientAuthenticationScramSha512 schema reference Copy linkLink copied to clipboard!
Used in: KafkaBridgeSpec, KafkaConnectS2ISpec, KafkaConnectSpec, KafkaMirrorMaker2ClusterSpec, KafkaMirrorMakerConsumerSpec, KafkaMirrorMakerProducerSpec
To configure SASL-based SCRAM-SHA-512 authentication, set the type property to scram-sha-512. The SCRAM-SHA-512 authentication mechanism requires a username and password.
-
Specify the username in the
usernameproperty. -
In the
passwordSecretproperty, specify a link to aSecretcontaining the password. ThesecretNameproperty contains the name of theSecretand thepasswordproperty contains the name of the key under which the password is stored inside theSecret.
Do not specify the actual password in the password field.
An example SASL based SCRAM-SHA-512 client authentication configuration
The type property is a discriminator that distinguishes the use of the type KafkaClientAuthenticationScramSha512 from KafkaClientAuthenticationTls, KafkaClientAuthenticationPlain, KafkaClientAuthenticationOAuth. It must have the value scram-sha-512 for the type KafkaClientAuthenticationScramSha512.
| Property | Description |
|---|---|
| passwordSecret |
Reference to the |
| type |
Must be |
| string | |
| username | Username used for the authentication. |
| string |
B.79. PasswordSecretSource schema reference Copy linkLink copied to clipboard!
Used in: KafkaClientAuthenticationPlain, KafkaClientAuthenticationScramSha512
| Property | Description |
|---|---|
| password | The name of the key in the Secret under which the password is stored. |
| string | |
| secretName | The name of the Secret containing the password. |
| string |
B.80. KafkaClientAuthenticationPlain schema reference Copy linkLink copied to clipboard!
Used in: KafkaBridgeSpec, KafkaConnectS2ISpec, KafkaConnectSpec, KafkaMirrorMaker2ClusterSpec, KafkaMirrorMakerConsumerSpec, KafkaMirrorMakerProducerSpec
To configure SASL-based PLAIN authentication, set the type property to plain. SASL PLAIN authentication mechanism requires a username and password.
The SASL PLAIN mechanism will transfer the username and password across the network in cleartext. Only use SASL PLAIN authentication if TLS encryption is enabled.
-
Specify the username in the
usernameproperty. -
In the
passwordSecretproperty, specify a link to aSecretcontaining the password. ThesecretNameproperty contains the name of such aSecretand thepasswordproperty contains the name of the key under which the password is stored inside theSecret.
Do not specify the actual password in the password field.
An example SASL based PLAIN client authentication configuration
The type property is a discriminator that distinguishes the use of the type KafkaClientAuthenticationPlain from KafkaClientAuthenticationTls, KafkaClientAuthenticationScramSha512, KafkaClientAuthenticationOAuth. It must have the value plain for the type KafkaClientAuthenticationPlain.
| Property | Description |
|---|---|
| passwordSecret |
Reference to the |
| type |
Must be |
| string | |
| username | Username used for the authentication. |
| string |
B.81. KafkaClientAuthenticationOAuth schema reference Copy linkLink copied to clipboard!
Used in: KafkaBridgeSpec, KafkaConnectS2ISpec, KafkaConnectSpec, KafkaMirrorMaker2ClusterSpec, KafkaMirrorMakerConsumerSpec, KafkaMirrorMakerProducerSpec
To use OAuth client authentication, set the type property to the value oauth. OAuth authentication can be configured using:
- Client ID and secret
- Client ID and refresh token
- Access token
- TLS
Client ID and secret
You can configure the address of your authorization server in the tokenEndpointUri property together with the client ID and client secret used in authentication. The OAuth client will connect to the OAuth server, authenticate using the client ID and secret and get an access token which it will use to authenticate with the Kafka broker. In the clientSecret property, specify a link to a Secret containing the client secret.
An example of OAuth client authentication using client ID and client secret
Client ID and refresh token
You can configure the address of your OAuth server in the tokenEndpointUri property together with the OAuth client ID and refresh token. The OAuth client will connect to the OAuth server, authenticate using the client ID and refresh token and get an access token which it will use to authenticate with the Kafka broker. In the refreshToken property, specify a link to a Secret containing the refresh token.
An example of OAuth client authentication using client ID and refresh token
Access token
You can configure the access token used for authentication with the Kafka broker directly. In this case, you do not specify the tokenEndpointUri. In the accessToken property, specify a link to a Secret containing the access token.
An example of OAuth client authentication using only an access token
authentication:
type: oauth
accessToken:
secretName: my-access-token-secret
key: access-token
authentication:
type: oauth
accessToken:
secretName: my-access-token-secret
key: access-token
TLS
Accessing the OAuth server using the HTTPS protocol does not require any additional configuration as long as the TLS certificates used by it are signed by a trusted certification authority and its hostname is listed in the certificate.
If your OAuth server is using certificates which are self-signed or are signed by a certification authority which is not trusted, you can configure a list of trusted certificates in the custom resoruce. The tlsTrustedCertificates property contains a list of secrets with key names under which the certificates are stored. The certificates must be stored in X509 format.
An example of TLS certificates provided
The OAuth client will by default verify that the hostname of your OAuth server matches either the certificate subject or one of the alternative DNS names. If it is not required, you can disable the hostname verification.
An example of disabled TLS hostname verification
The type property is a discriminator that distinguishes the use of the type KafkaClientAuthenticationOAuth from KafkaClientAuthenticationTls, KafkaClientAuthenticationScramSha512, KafkaClientAuthenticationPlain. It must have the value oauth for the type KafkaClientAuthenticationOAuth.
| Property | Description |
|---|---|
| accessToken | Link to OpenShift Secret containing the access token which was obtained from the authorization server. |
| accessTokenIsJwt |
Configure whether access token should be treated as JWT. This should be set to |
| boolean | |
| clientId | OAuth Client ID which the Kafka client can use to authenticate against the OAuth server and use the token endpoint URI. |
| string | |
| clientSecret | Link to OpenShift Secret containing the OAuth client secret which the Kafka client can use to authenticate against the OAuth server and use the token endpoint URI. |
| disableTlsHostnameVerification |
Enable or disable TLS hostname verification. Default value is |
| boolean | |
| maxTokenExpirySeconds | Set or limit time-to-live of the access tokens to the specified number of seconds. This should be set if the authorization server returns opaque tokens. |
| integer | |
| refreshToken | Link to OpenShift Secret containing the refresh token which can be used to obtain access token from the authorization server. |
| scope |
OAuth scope to use when authenticating against the authorization server. Some authorization servers require this to be set. The possible values depend on how authorization server is configured. By default |
| string | |
| tlsTrustedCertificates | Trusted certificates for TLS connection to the OAuth server. |
|
| |
| tokenEndpointUri | Authorization server token endpoint URI. |
| string | |
| type |
Must be |
| string |
B.82. JaegerTracing schema reference Copy linkLink copied to clipboard!
Used in: KafkaBridgeSpec, KafkaConnectS2ISpec, KafkaConnectSpec, KafkaMirrorMaker2Spec, KafkaMirrorMakerSpec
The type property is a discriminator that distinguishes the use of the type JaegerTracing from other subtypes which may be added in the future. It must have the value jaeger for the type JaegerTracing.
| Property | Description |
|---|---|
| type |
Must be |
| string |
B.83. KafkaConnectTemplate schema reference Copy linkLink copied to clipboard!
Used in: KafkaConnectS2ISpec, KafkaConnectSpec, KafkaMirrorMaker2Spec
| Property | Description |
|---|---|
| deployment |
Template for Kafka Connect |
| pod |
Template for Kafka Connect |
| apiService |
Template for Kafka Connect API |
| connectContainer | Template for the Kafka Connect container. |
| podDisruptionBudget |
Template for Kafka Connect |
B.84. ExternalConfiguration schema reference Copy linkLink copied to clipboard!
Used in: KafkaConnectS2ISpec, KafkaConnectSpec, KafkaMirrorMaker2Spec
| Property | Description |
|---|---|
| env | Allows to pass data from Secret or ConfigMap to the Kafka Connect pods as environment variables. |
|
| |
| volumes | Allows to pass data from Secret or ConfigMap to the Kafka Connect pods as volumes. |
B.85. ExternalConfigurationEnv schema reference Copy linkLink copied to clipboard!
Used in: ExternalConfiguration
| Property | Description |
|---|---|
| name |
Name of the environment variable which will be passed to the Kafka Connect pods. The name of the environment variable cannot start with |
| string | |
| valueFrom | Value of the environment variable which will be passed to the Kafka Connect pods. It can be passed either as a reference to Secret or ConfigMap field. The field has to specify exactly one Secret or ConfigMap. |
B.86. ExternalConfigurationEnvVarSource schema reference Copy linkLink copied to clipboard!
Used in: ExternalConfigurationEnv
| Property | Description |
|---|---|
| configMapKeyRef | Refernce to a key in a ConfigMap. See external documentation of core/v1 configmapkeyselector. |
| secretKeyRef | Reference to a key in a Secret. See external documentation of core/v1 secretkeyselector. |
B.87. ExternalConfigurationVolumeSource schema reference Copy linkLink copied to clipboard!
Used in: ExternalConfiguration
| Property | Description |
|---|---|
| configMap | Reference to a key in a ConfigMap. Exactly one Secret or ConfigMap has to be specified. See external documentation of core/v1 configmapvolumesource. |
| name | Name of the volume which will be added to the Kafka Connect pods. |
| string | |
| secret | Reference to a key in a Secret. Exactly one Secret or ConfigMap has to be specified. See external documentation of core/v1 secretvolumesource. |
B.88. KafkaConnectStatus schema reference Copy linkLink copied to clipboard!
Used in: KafkaConnect
| Property | Description |
|---|---|
| conditions | List of status conditions. |
|
| |
| observedGeneration | The generation of the CRD that was last reconciled by the operator. |
| integer | |
| url | The URL of the REST API endpoint for managing and monitoring Kafka Connect connectors. |
| string | |
| connectorPlugins | The list of connector plugins available in this Kafka Connect deployment. |
|
| |
| podSelector | Label selector for pods providing this resource. See external documentation of meta/v1 labelselector. |
| replicas | The current number of pods being used to provide this resource. |
| integer |
B.89. ConnectorPlugin schema reference Copy linkLink copied to clipboard!
Used in: KafkaConnectS2IStatus, KafkaConnectStatus, KafkaMirrorMaker2Status
| Property | Description |
|---|---|
| type |
The type of the connector plugin. The available types are |
| string | |
| version | The version of the connector plugin. |
| string | |
| class | The class of the connector plugin. |
| string |
B.90. KafkaConnectS2I schema reference Copy linkLink copied to clipboard!
| Property | Description |
|---|---|
| spec | The specification of the Kafka Connect Source-to-Image (S2I) cluster. |
| status | The status of the Kafka Connect Source-to-Image (S2I) cluster. |
B.91. KafkaConnectS2ISpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaConnectS2I
| Property | Description |
|---|---|
| replicas | The number of pods in the Kafka Connect group. |
| integer | |
| image | The docker image for the pods. |
| string | |
| buildResources | CPU and memory resources to reserve. See external documentation of core/v1 resourcerequirements. |
| livenessProbe | Pod liveness checking. |
| readinessProbe | Pod readiness checking. |
| jvmOptions | JVM Options for pods. |
| affinity |
The property |
| logging |
Logging configuration for Kafka Connect. The type depends on the value of the |
| metrics | The Prometheus JMX Exporter configuration. See https://github.com/prometheus/jmx_exporter for details of the structure of this configuration. |
| map | |
| template |
Template for Kafka Connect and Kafka Connect S2I resources. The template allows users to specify how the |
| authentication |
Authentication configuration for Kafka Connect. The type depends on the value of the |
|
| |
| bootstrapServers | Bootstrap servers to connect to. This should be given as a comma separated list of <hostname>:<port> pairs. |
| string | |
| config | The Kafka Connect configuration. Properties with the following prefixes cannot be set: ssl., sasl., security., listeners, plugin.path, rest., bootstrap.servers, consumer.interceptor.classes, producer.interceptor.classes (with the exception of: ssl.endpoint.identification.algorithm, ssl.cipher.suites, ssl.protocol, ssl.enabled.protocols). |
| map | |
| externalConfiguration | Pass data from Secrets or ConfigMaps to the Kafka Connect pods and use them to configure connectors. |
| insecureSourceRepository | When true this configures the source repository with the 'Local' reference policy and an import policy that accepts insecure source tags. |
| boolean | |
| resources | The maximum limits for CPU and memory resources and the requested initial resources. See external documentation of core/v1 resourcerequirements. |
| tls | TLS configuration. |
| tolerations |
The property |
| Toleration array | |
| tracing |
The configuration of tracing in Kafka Connect. The type depends on the value of the |
| version | The Kafka Connect version. Defaults to 2.5.0. Consult the user documentation to understand the process required to upgrade or downgrade the version. |
| string |
B.92. KafkaConnectS2IStatus schema reference Copy linkLink copied to clipboard!
Used in: KafkaConnectS2I
| Property | Description |
|---|---|
| conditions | List of status conditions. |
|
| |
| observedGeneration | The generation of the CRD that was last reconciled by the operator. |
| integer | |
| url | The URL of the REST API endpoint for managing and monitoring Kafka Connect connectors. |
| string | |
| connectorPlugins | The list of connector plugins available in this Kafka Connect deployment. |
|
| |
| buildConfigName | The name of the build configuration. |
| string | |
| podSelector | Label selector for pods providing this resource. See external documentation of meta/v1 labelselector. |
| replicas | The current number of pods being used to provide this resource. |
| integer |
B.93. KafkaTopic schema reference Copy linkLink copied to clipboard!
| Property | Description |
|---|---|
| spec | The specification of the topic. |
| status | The status of the topic. |
B.94. KafkaTopicSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaTopic
| Property | Description |
|---|---|
| partitions | The number of partitions the topic should have. This cannot be decreased after topic creation. It can be increased after topic creation, but it is important to understand the consequences that has, especially for topics with semantic partitioning. |
| integer | |
| replicas | The number of replicas the topic should have. |
| integer | |
| config | The topic configuration. |
| map | |
| topicName | The name of the topic. When absent this will default to the metadata.name of the topic. It is recommended to not set this unless the topic name is not a valid OpenShift resource name. |
| string |
B.95. KafkaTopicStatus schema reference Copy linkLink copied to clipboard!
Used in: KafkaTopic
| Property | Description |
|---|---|
| conditions | List of status conditions. |
|
| |
| observedGeneration | The generation of the CRD that was last reconciled by the operator. |
| integer |
B.96. KafkaUser schema reference Copy linkLink copied to clipboard!
| Property | Description |
|---|---|
| spec | The specification of the user. |
| status | The status of the Kafka User. |
B.97. KafkaUserSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaUser
| Property | Description |
|---|---|
| authentication |
Authentication mechanism enabled for this Kafka user. The type depends on the value of the |
|
| |
| authorization |
Authorization rules for this Kafka user. The type depends on the value of the |
| quotas | Quotas on requests to control the broker resources used by clients. Network bandwidth and request rate quotas can be enforced.Kafka documentation for Kafka User quotas can be found at http://kafka.apache.org/documentation/#design_quotas. |
B.98. KafkaUserTlsClientAuthentication schema reference Copy linkLink copied to clipboard!
Used in: KafkaUserSpec
The type property is a discriminator that distinguishes the use of the type KafkaUserTlsClientAuthentication from KafkaUserScramSha512ClientAuthentication. It must have the value tls for the type KafkaUserTlsClientAuthentication.
| Property | Description |
|---|---|
| type |
Must be |
| string |
B.99. KafkaUserScramSha512ClientAuthentication schema reference Copy linkLink copied to clipboard!
Used in: KafkaUserSpec
The type property is a discriminator that distinguishes the use of the type KafkaUserScramSha512ClientAuthentication from KafkaUserTlsClientAuthentication. It must have the value scram-sha-512 for the type KafkaUserScramSha512ClientAuthentication.
| Property | Description |
|---|---|
| type |
Must be |
| string |
B.100. KafkaUserAuthorizationSimple schema reference Copy linkLink copied to clipboard!
Used in: KafkaUserSpec
The type property is a discriminator that distinguishes the use of the type KafkaUserAuthorizationSimple from other subtypes which may be added in the future. It must have the value simple for the type KafkaUserAuthorizationSimple.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| acls | List of ACL rules which should be applied to this user. |
|
|
B.101. AclRule schema reference Copy linkLink copied to clipboard!
Used in: KafkaUserAuthorizationSimple
| Property | Description |
|---|---|
| host | The host from which the action described in the ACL rule is allowed or denied. |
| string | |
| operation | Operation which will be allowed or denied. Supported operations are: Read, Write, Create, Delete, Alter, Describe, ClusterAction, AlterConfigs, DescribeConfigs, IdempotentWrite and All. |
| string (one of [Read, Write, Delete, Alter, Describe, All, IdempotentWrite, ClusterAction, Create, AlterConfigs, DescribeConfigs]) | |
| resource |
Indicates the resource for which given ACL rule applies. The type depends on the value of the |
|
| |
| type |
The type of the rule. Currently the only supported type is |
| string (one of [allow, deny]) |
B.102. AclRuleTopicResource schema reference Copy linkLink copied to clipboard!
Used in: AclRule
The type property is a discriminator that distinguishes the use of the type AclRuleTopicResource from AclRuleGroupResource, AclRuleClusterResource, AclRuleTransactionalIdResource. It must have the value topic for the type AclRuleTopicResource.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| name |
Name of resource for which given ACL rule applies. Can be combined with |
| string | |
| patternType |
Describes the pattern used in the resource field. The supported types are |
| string (one of [prefix, literal]) |
B.103. AclRuleGroupResource schema reference Copy linkLink copied to clipboard!
Used in: AclRule
The type property is a discriminator that distinguishes the use of the type AclRuleGroupResource from AclRuleTopicResource, AclRuleClusterResource, AclRuleTransactionalIdResource. It must have the value group for the type AclRuleGroupResource.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| name |
Name of resource for which given ACL rule applies. Can be combined with |
| string | |
| patternType |
Describes the pattern used in the resource field. The supported types are |
| string (one of [prefix, literal]) |
B.104. AclRuleClusterResource schema reference Copy linkLink copied to clipboard!
Used in: AclRule
The type property is a discriminator that distinguishes the use of the type AclRuleClusterResource from AclRuleTopicResource, AclRuleGroupResource, AclRuleTransactionalIdResource. It must have the value cluster for the type AclRuleClusterResource.
| Property | Description |
|---|---|
| type |
Must be |
| string |
B.105. AclRuleTransactionalIdResource schema reference Copy linkLink copied to clipboard!
Used in: AclRule
The type property is a discriminator that distinguishes the use of the type AclRuleTransactionalIdResource from AclRuleTopicResource, AclRuleGroupResource, AclRuleClusterResource. It must have the value transactionalId for the type AclRuleTransactionalIdResource.
| Property | Description |
|---|---|
| type |
Must be |
| string | |
| name |
Name of resource for which given ACL rule applies. Can be combined with |
| string | |
| patternType |
Describes the pattern used in the resource field. The supported types are |
| string (one of [prefix, literal]) |
B.106. KafkaUserQuotas schema reference Copy linkLink copied to clipboard!
Used in: KafkaUserSpec
Kafka allows a user to enforce certain quotas to control usage of resources by clients. Quotas split into two categories:
- Network usage quotas, which are defined as the byte rate threshold for each group of clients sharing a quota
- CPU utilization quotas, which are defined as the percentage of time a client can utilize on request handler I/O threads and network threads of each broker within a quota window
Using quotas for Kafka clients might be useful in a number of situations. Consider a wrongly configured Kafka producer which is sending requests at too high a rate. Such misconfiguration can cause a denial of service to other clients, so the problematic client ought to be blocked. By using a network limiting quota, it is possible to prevent this situation from significantly impacting other clients.
AMQ Streams supports user-level quotas, but not client-level quotas.
An example Kafka user quotas
spec:
quotas:
producerByteRate: 1048576
consumerByteRate: 2097152
requestPercentage: 55
spec:
quotas:
producerByteRate: 1048576
consumerByteRate: 2097152
requestPercentage: 55
For more info about Kafka user quotas visit Apache Kafka documentation.
| Property | Description |
|---|---|
| consumerByteRate | A quota on the maximum bytes per-second that each client group can fetch from a broker before the clients in the group are throttled. Defined on a per-broker basis. |
| integer | |
| producerByteRate | A quota on the maximum bytes per-second that each client group can publish to a broker before the clients in the group are throttled. Defined on a per-broker basis. |
| integer | |
| requestPercentage | A quota on the maximum CPU utilization of each client group as a percentage of network and I/O threads. |
| integer |
B.107. KafkaUserStatus schema reference Copy linkLink copied to clipboard!
Used in: KafkaUser
| Property | Description |
|---|---|
| conditions | List of status conditions. |
|
| |
| observedGeneration | The generation of the CRD that was last reconciled by the operator. |
| integer | |
| username | Username. |
| string | |
| secret |
The name of |
| string |
B.108. KafkaMirrorMaker schema reference Copy linkLink copied to clipboard!
| Property | Description |
|---|---|
| spec | The specification of Kafka MirrorMaker. |
| status | The status of Kafka MirrorMaker. |
B.109. KafkaMirrorMakerSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaMirrorMaker
| Property | Description |
|---|---|
| replicas |
The number of pods in the |
| integer | |
| image | The docker image for the pods. |
| string | |
| whitelist |
List of topics which are included for mirroring. This option allows any regular expression using Java-style regular expressions. Mirroring two topics named A and B is achieved by using the whitelist |
| string | |
| consumer | Configuration of source cluster. |
| producer | Configuration of target cluster. |
| resources | CPU and memory resources to reserve. See external documentation of core/v1 resourcerequirements. |
| affinity |
The property |
| tolerations |
The property |
| Toleration array | |
| jvmOptions | JVM Options for pods. |
| logging |
Logging configuration for MirrorMaker. The type depends on the value of the |
| metrics | The Prometheus JMX Exporter configuration. See JMX Exporter documentation for details of the structure of this configuration. |
| map | |
| tracing |
The configuration of tracing in Kafka MirrorMaker. The type depends on the value of the |
| template |
Template to specify how Kafka MirrorMaker resources, |
| livenessProbe | Pod liveness checking. |
| readinessProbe | Pod readiness checking. |
| version | The Kafka MirrorMaker version. Defaults to 2.5.0. Consult the documentation to understand the process required to upgrade or downgrade the version. |
| string |
B.110. KafkaMirrorMakerConsumerSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaMirrorMakerSpec
Use the three allowed ssl configuration options to run external listeners with a specific cipher suite for a TLS version. A cipher suite combines algorithms for secure connection and data transfer.
Example SSL configuration
- 1
- The cipher suite for TLS using a combination of
ECDHEkey exchange mechanism,RSAauthentication algorithm,AESbulk encyption algorithm andSHA384MAC algorithm. - 2
- The SSl protocol
TLSv1.2is enabled. - 3
- Specifies the
TLSv1.2protocol to generate the SSL context. Allowed values areTLSv1.1andTLSv1.2.
| Property | Description |
|---|---|
| numStreams | Specifies the number of consumer stream threads to create. |
| integer | |
| offsetCommitInterval | Specifies the offset auto-commit interval in ms. Default value is 60000. |
| integer | |
| groupId | A unique string that identifies the consumer group this consumer belongs to. |
| string | |
| bootstrapServers | A list of host:port pairs for establishing the initial connection to the Kafka cluster. |
| string | |
| authentication |
Authentication configuration for connecting to the cluster. The type depends on the value of the |
|
| |
| config | The MirrorMaker consumer config. Properties with the following prefixes cannot be set: ssl., bootstrap.servers, group.id, sasl., security., interceptor.classes (with the exception of: ssl.endpoint.identification.algorithm, ssl.cipher.suites, ssl.protocol, ssl.enabled.protocols). |
| map | |
| tls | TLS configuration for connecting MirrorMaker to the cluster. |
B.111. KafkaMirrorMakerTls schema reference Copy linkLink copied to clipboard!
Used in: KafkaMirrorMakerConsumerSpec, KafkaMirrorMakerProducerSpec
Use the tls property to configure TLS encryption. Provide a list of secrets with key names under which the certificates are stored in X.509 format.
An example TLS encryption configuration
tls:
trustedCertificates:
- secretName: my-cluster-cluster-ca-cert
certificate: ca.crt
tls:
trustedCertificates:
- secretName: my-cluster-cluster-ca-cert
certificate: ca.crt
| Property | Description |
|---|---|
| trustedCertificates | Trusted certificates for TLS connection. |
|
|
B.112. KafkaMirrorMakerProducerSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaMirrorMakerSpec
Use the three allowed ssl configuration options to run external listeners with a specific cipher suite for a TLS version. A cipher suite combines algorithms for secure connection and data transfer.
Example SSL configuration
- 1
- The cipher suite for TLS using a combination of
ECDHEkey exchange mechanism,RSAauthentication algorithm,AESbulk encyption algorithm andSHA384MAC algorithm. - 2
- The SSl protocol
TLSv1.2is enabled. - 3
- Specifies the
TLSv1.2protocol to generate the SSL context. Allowed values areTLSv1.1andTLSv1.2.
| Property | Description |
|---|---|
| bootstrapServers | A list of host:port pairs for establishing the initial connection to the Kafka cluster. |
| string | |
| abortOnSendFailure |
Flag to set the MirrorMaker to exit on a failed send. Default value is |
| boolean | |
| authentication |
Authentication configuration for connecting to the cluster. The type depends on the value of the |
|
| |
| config | The MirrorMaker producer config. Properties with the following prefixes cannot be set: ssl., bootstrap.servers, sasl., security., interceptor.classes (with the exception of: ssl.endpoint.identification.algorithm, ssl.cipher.suites, ssl.protocol, ssl.enabled.protocols). |
| map | |
| tls | TLS configuration for connecting MirrorMaker to the cluster. |
B.113. KafkaMirrorMakerTemplate schema reference Copy linkLink copied to clipboard!
Used in: KafkaMirrorMakerSpec
| Property | Description |
|---|---|
| deployment |
Template for Kafka MirrorMaker |
| pod |
Template for Kafka MirrorMaker |
| mirrorMakerContainer | Template for Kafka MirrorMaker container. |
| podDisruptionBudget |
Template for Kafka MirrorMaker |
B.114. KafkaMirrorMakerStatus schema reference Copy linkLink copied to clipboard!
Used in: KafkaMirrorMaker
| Property | Description |
|---|---|
| conditions | List of status conditions. |
|
| |
| observedGeneration | The generation of the CRD that was last reconciled by the operator. |
| integer | |
| podSelector | Label selector for pods providing this resource. See external documentation of meta/v1 labelselector. |
| replicas | The current number of pods being used to provide this resource. |
| integer |
B.115. KafkaBridge schema reference Copy linkLink copied to clipboard!
| Property | Description |
|---|---|
| spec | The specification of the Kafka Bridge. |
| status | The status of the Kafka Bridge. |
B.116. KafkaBridgeSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaBridge
| Property | Description |
|---|---|
| replicas |
The number of pods in the |
| integer | |
| image | The docker image for the pods. |
| string | |
| bootstrapServers | A list of host:port pairs for establishing the initial connection to the Kafka cluster. |
| string | |
| tls | TLS configuration for connecting Kafka Bridge to the cluster. |
| authentication |
Authentication configuration for connecting to the cluster. The type depends on the value of the |
|
| |
| http | The HTTP related configuration. |
| consumer | Kafka consumer related configuration. |
| producer | Kafka producer related configuration. |
| resources | CPU and memory resources to reserve. See external documentation of core/v1 resourcerequirements. |
| jvmOptions | Currently not supported JVM Options for pods. |
| logging |
Logging configuration for Kafka Bridge. The type depends on the value of the |
| metrics | Currently not supported The Prometheus JMX Exporter configuration. See JMX Exporter documentation for details of the structure of this configuration. |
| map | |
| livenessProbe | Pod liveness checking. |
| readinessProbe | Pod readiness checking. |
| template |
Template for Kafka Bridge resources. The template allows users to specify how is the |
| tracing |
The configuration of tracing in Kafka Bridge. The type depends on the value of the |
B.117. KafkaBridgeTls schema reference Copy linkLink copied to clipboard!
Used in: KafkaBridgeSpec
| Property | Description |
|---|---|
| trustedCertificates | Trusted certificates for TLS connection. |
|
|
B.118. KafkaBridgeHttpConfig schema reference Copy linkLink copied to clipboard!
Used in: KafkaBridgeSpec
| Property | Description |
|---|---|
| port | The port which is the server listening on. |
| integer | |
| cors | CORS configuration for the HTTP Bridge. |
B.119. KafkaBridgeHttpCors schema reference Copy linkLink copied to clipboard!
Used in: KafkaBridgeHttpConfig
| Property | Description |
|---|---|
| allowedOrigins | List of allowed origins. Java regular expressions can be used. |
| string array | |
| allowedMethods | List of allowed HTTP methods. |
| string array |
B.120. KafkaBridgeConsumerSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaBridgeSpec
| Property | Description |
|---|---|
| config | The Kafka consumer configuration used for consumer instances created by the bridge. Properties with the following prefixes cannot be set: ssl., bootstrap.servers, group.id, sasl., security. (with the exception of: ssl.endpoint.identification.algorithm, ssl.cipher.suites, ssl.protocol, ssl.enabled.protocols). |
| map |
B.121. KafkaBridgeProducerSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaBridgeSpec
| Property | Description |
|---|---|
| config | The Kafka producer configuration used for producer instances created by the bridge. Properties with the following prefixes cannot be set: ssl., bootstrap.servers, sasl., security. (with the exception of: ssl.endpoint.identification.algorithm, ssl.cipher.suites, ssl.protocol, ssl.enabled.protocols). |
| map |
B.122. KafkaBridgeTemplate schema reference Copy linkLink copied to clipboard!
Used in: KafkaBridgeSpec
| Property | Description |
|---|---|
| deployment |
Template for Kafka Bridge |
| pod |
Template for Kafka Bridge |
| apiService |
Template for Kafka Bridge API |
| bridgeContainer | Template for the Kafka Bridge container. |
| podDisruptionBudget |
Template for Kafka Bridge |
B.123. KafkaBridgeStatus schema reference Copy linkLink copied to clipboard!
Used in: KafkaBridge
| Property | Description |
|---|---|
| conditions | List of status conditions. |
|
| |
| observedGeneration | The generation of the CRD that was last reconciled by the operator. |
| integer | |
| url | The URL at which external client applications can access the Kafka Bridge. |
| string | |
| podSelector | Label selector for pods providing this resource. See external documentation of meta/v1 labelselector. |
| replicas | The current number of pods being used to provide this resource. |
| integer |
B.124. KafkaConnector schema reference Copy linkLink copied to clipboard!
| Property | Description |
|---|---|
| spec | The specification of the Kafka Connector. |
| status | The status of the Kafka Connector. |
B.125. KafkaConnectorSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaConnector
| Property | Description |
|---|---|
| class | The Class for the Kafka Connector. |
| string | |
| tasksMax | The maximum number of tasks for the Kafka Connector. |
| integer | |
| config | The Kafka Connector configuration. The following properties cannot be set: connector.class, tasks.max. |
| map | |
| pause | Whether the connector should be paused. Defaults to false. |
| boolean |
B.126. KafkaConnectorStatus schema reference Copy linkLink copied to clipboard!
Used in: KafkaConnector
| Property | Description |
|---|---|
| conditions | List of status conditions. |
|
| |
| observedGeneration | The generation of the CRD that was last reconciled by the operator. |
| integer | |
| connectorStatus | The connector status, as reported by the Kafka Connect REST API. |
| map | |
| tasksMax | The maximum number of tasks for the Kafka Connector. |
| integer |
B.127. KafkaMirrorMaker2 schema reference Copy linkLink copied to clipboard!
| Property | Description |
|---|---|
| spec | The specification of the Kafka MirrorMaker 2.0 cluster. |
| status | The status of the Kafka MirrorMaker 2.0 cluster. |
B.128. KafkaMirrorMaker2Spec schema reference Copy linkLink copied to clipboard!
Used in: KafkaMirrorMaker2
| Property | Description |
|---|---|
| replicas | The number of pods in the Kafka Connect group. |
| integer | |
| version | The Kafka Connect version. Defaults to 2.5.0. Consult the user documentation to understand the process required to upgrade or downgrade the version. |
| string | |
| image | The docker image for the pods. |
| string | |
| connectCluster |
The cluster alias used for Kafka Connect. The alias must match a cluster in the list at |
| string | |
| clusters | Kafka clusters for mirroring. |
| mirrors | Configuration of the MirrorMaker 2.0 connectors. |
| resources | The maximum limits for CPU and memory resources and the requested initial resources. See external documentation of core/v1 resourcerequirements. |
| livenessProbe | Pod liveness checking. |
| readinessProbe | Pod readiness checking. |
| jvmOptions | JVM Options for pods. |
| affinity |
The property |
| tolerations |
The property |
| Toleration array | |
| logging |
Logging configuration for Kafka Connect. The type depends on the value of the |
| metrics | The Prometheus JMX Exporter configuration. See https://github.com/prometheus/jmx_exporter for details of the structure of this configuration. |
| map | |
| tracing |
The configuration of tracing in Kafka Connect. The type depends on the value of the |
| template |
Template for Kafka Connect and Kafka Connect S2I resources. The template allows users to specify how the |
| externalConfiguration | Pass data from Secrets or ConfigMaps to the Kafka Connect pods and use them to configure connectors. |
B.129. KafkaMirrorMaker2ClusterSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaMirrorMaker2Spec
Use the three allowed ssl configuration options to run external listeners with a specific cipher suite for a TLS version. A cipher suite combines algorithms for secure connection and data transfer.
Example SSL configuration
- 1
- The cipher suite for TLS using a combination of
ECDHEkey exchange mechanism,RSAauthentication algorithm,AESbulk encyption algorithm andSHA384MAC algorithm. - 2
- The SSl protocol
TLSv1.2is enabled. - 3
- Specifies the
TLSv1.2protocol to generate the SSL context. Allowed values areTLSv1.1andTLSv1.2.
| Property | Description |
|---|---|
| alias | Alias used to reference the Kafka cluster. |
| string | |
| bootstrapServers |
A comma-separated list of |
| string | |
| config | The MirrorMaker 2.0 cluster config. Properties with the following prefixes cannot be set: ssl., sasl., security., listeners, plugin.path, rest., bootstrap.servers, consumer.interceptor.classes, producer.interceptor.classes (with the exception of: ssl.endpoint.identification.algorithm, ssl.cipher.suites, ssl.protocol, ssl.enabled.protocols). |
| map | |
| tls | TLS configuration for connecting MirrorMaker 2.0 connectors to a cluster. |
| authentication |
Authentication configuration for connecting to the cluster. The type depends on the value of the |
|
|
B.130. KafkaMirrorMaker2Tls schema reference Copy linkLink copied to clipboard!
Used in: KafkaMirrorMaker2ClusterSpec
| Property | Description |
|---|---|
| trustedCertificates | Trusted certificates for TLS connection. |
|
|
B.131. KafkaMirrorMaker2MirrorSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaMirrorMaker2Spec
| Property | Description |
|---|---|
| sourceCluster |
The alias of the source cluster used by the Kafka MirrorMaker 2.0 connectors. The alias must match a cluster in the list at |
| string | |
| targetCluster |
The alias of the target cluster used by the Kafka MirrorMaker 2.0 connectors. The alias must match a cluster in the list at |
| string | |
| sourceConnector | The specification of the Kafka MirrorMaker 2.0 source connector. |
| checkpointConnector | The specification of the Kafka MirrorMaker 2.0 checkpoint connector. |
| heartbeatConnector | The specification of the Kafka MirrorMaker 2.0 heartbeat connector. |
| topicsPattern | A regular expression matching the topics to be mirrored, for example, "topic1|topic2|topic3". Comma-separated lists are also supported. |
| string | |
| topicsBlacklistPattern | A regular expression matching the topics to exclude from mirroring. Comma-separated lists are also supported. |
| string | |
| groupsPattern | A regular expression matching the consumer groups to be mirrored. Comma-separated lists are also supported. |
| string | |
| groupsBlacklistPattern | A regular expression matching the consumer groups to exclude from mirroring. Comma-separated lists are also supported. |
| string |
B.132. KafkaMirrorMaker2ConnectorSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaMirrorMaker2MirrorSpec
| Property | Description |
|---|---|
| tasksMax | The maximum number of tasks for the Kafka Connector. |
| integer | |
| config | The Kafka Connector configuration. The following properties cannot be set: connector.class, tasks.max. |
| map | |
| pause | Whether the connector should be paused. Defaults to false. |
| boolean |
B.133. KafkaMirrorMaker2Status schema reference Copy linkLink copied to clipboard!
Used in: KafkaMirrorMaker2
| Property | Description |
|---|---|
| conditions | List of status conditions. |
|
| |
| observedGeneration | The generation of the CRD that was last reconciled by the operator. |
| integer | |
| url | The URL of the REST API endpoint for managing and monitoring Kafka Connect connectors. |
| string | |
| connectorPlugins | The list of connector plugins available in this Kafka Connect deployment. |
|
| |
| connectors | List of MirrorMaker 2.0 connector statuses, as reported by the Kafka Connect REST API. |
| map array | |
| podSelector | Label selector for pods providing this resource. See external documentation of meta/v1 labelselector. |
| replicas | The current number of pods being used to provide this resource. |
| integer |
B.134. KafkaRebalance schema reference Copy linkLink copied to clipboard!
| Property | Description |
|---|---|
| spec | The specification of the Kafka rebalance. |
| status | The status of the Kafka rebalance. |
B.135. KafkaRebalanceSpec schema reference Copy linkLink copied to clipboard!
Used in: KafkaRebalance
| Property | Description |
|---|---|
| goals | A list of goals, ordered by decreasing priority, to use for generating and executing the rebalance proposal. The supported goals are available at https://github.com/linkedin/cruise-control#goals. If an empty goals list is provided, the goals declared in the default.goals Cruise Control configuration parameter are used. |
| string array | |
| skipHardGoalCheck | Whether to allow the hard goals specified in the Kafka CR to be skipped in rebalance proposal generation. This can be useful when some of those hard goals are preventing a balance solution being found. Default is false. |
| boolean |
B.136. KafkaRebalanceStatus schema reference Copy linkLink copied to clipboard!
Used in: KafkaRebalance
| Property | Description |
|---|---|
| conditions | List of status conditions. |
|
| |
| observedGeneration | The generation of the CRD that was last reconciled by the operator. |
| integer | |
| sessionId | The session identifier for requests to Cruise Control pertaining to this KafkaRebalance resource. This is used by the Kafka Rebalance operator to track the status of ongoing rebalancing operations. |
| string | |
| optimizationResult | A JSON object describing the optimization result. |
| map |
Appendix C. Using Your Subscription Copy linkLink copied to clipboard!
AMQ Streams is provided through a software subscription. To manage your subscriptions, access your account at the Red Hat Customer Portal.
Accessing Your Account
- Go to access.redhat.com.
- If you do not already have an account, create one.
- Log in to your account.
Activating a Subscription
- Go to access.redhat.com.
- Navigate to My Subscriptions.
- Navigate to Activate a subscription and enter your 16-digit activation number.
Downloading Zip and Tar Files
To access zip or tar files, use the customer portal to find the relevant files for download. If you are using RPM packages, this step is not required.
- Open a browser and log in to the Red Hat Customer Portal Product Downloads page at access.redhat.com/downloads.
- Locate the Red Hat AMQ Streams entries in the JBOSS INTEGRATION AND AUTOMATION category.
- Select the desired AMQ Streams product. The Software Downloads page opens.
- Click the Download link for your component.
Revised on 2020-07-09 06:57:11 UTC