Kafka operations
Manage a Kafka cluster connected to Pega Platform™ to adjust the database to your needs.
Scaling a Kafka cluster
Modify the size of your Kafka cluster by performing the following procedures:
- Reassigning partitions
- Adding a new node
- Starting a temporarily unavailable node
- Decommissioning a node
- Replacing a node
- Changing the replication factor
- Changing the number of partitions
- Deleting a data set
- Truncating a data set
Reassigning a partition
Assign partitions to Kafka nodes to grow and shrink Kafka clusters, to change the number of partitions, and to change the replication factor. During the partition reassignment process, the cluster becomes unavailable for reads and writes.
- Generate a reassignment map structure (a ring-like partition).
- Submit the map structure to Zookeper.
Kafka detects the change and performs rebalancing. Partitions are distributed evenly in the cluster according to the round-robin partition assignment algorithm.
Adding a new node
- Ensure that all nodes are available.
- Add a new Kafka node.
When a new node is added, the reassignment is started and the partitions are redistributed across all available nodes. To rebalance data among brokers, some data is moved from existing nodes to the new node.
Starting a temporarily unavailable node
When a node has been temporarily unavailable, Kafka synchronizes the existing partitions automatically, if replicas exist. The synchronization occurs in the background, and the cluster is available throughout that process.
Decommissioning a Stream service node
Decommissioning a Stream service node triggers the Kafka partition reassignment. Decommissioning is not a very stable procedure that can fail because of many factors, such as:
- Network issues
- A broker failure during the reassignment
- Existing offline partitions.
To decommission a node, complete one of the following processes, depending on the node status:
Decommissioning a normal or stopped node
If the node is up and normal or stopped, perform the following actions:
- Reassign the partitions.
- Shut down the Kafka cluster.
- To prevent issues when you add the node back in the future, delete data folders.
Decommissioning an unavailable node
- If you can bring up the node, when the cluster status returns to normal, run partition reassignment.
- If you cannot bring the node up, warn the users about the data loss (not implemented), and then run partition reassignment.
With enough replicas, you do not need to warn the users about the data loss.
Decommissioning the last node
- Warn the users about the data loss (not implemented).
- Remove all metadata topics.
- Remove the Kafka cluster data.
Replacing a node
Replace a node by completing one of the following processes that applies to your scenario:
- If you have an old volume attached, the node starts as a known node that has been temporarily unavailable.
- If you do not have an attached volume, but enough replicas, add the node as a new node.
- If you do not have an attached volume and not enough replicas, add the node as a new node.
Replication factor changes
You can configure a preferable replication factor (PRF) in the server settings dialog. The default PRF is 2.
If the number of nodes is less than PRF, the replication factor is set to the number of nodes, and a warning appears on the Stream service landing page.
If the number of nodes is greater than or equal to PRF, the replication factor is set to the PRF value.
For example, if you set the PRF value to 3, the following settings are configured:
- If the number of nodes is 1, the replication factor is set to 1 and a warning appears.
- If the number of nodes is 2, the replication factor is set to 2 and a warning appears.
- If the number of nodes is 3, the replication factor is set to 3.
- If the number of nodes is 4, the replication factor is set to 3.
Changing the number of partitions
The number of partitions is a global setting and you cannot change it once you create a topic or start a node. The default number of partitions is:
- 6 starting in Pega Platform version 8.7
- 20 in Pega Platform versions 8.6 and earlier
To change the number of partitions, in the prconfig.xml file, enter the following string:
<env name="dsm/services/stream/pyTopicPartitionsCount" value="22" />
Data set deletion
Data set deletion is supported.
Data set truncation
Kafka does not support topic truncation. The stream data set truncation implementation deletes the topic and then recreates it.
Multi-datacenter setup
The stream service supports multi-datacenter setup on the rack level. If datacenter machines are grouped into racks, supply that rack information in the prconfig.xml file, for example:
<env name="dsm/services/stream/server_properties/broker.rack" value = "Rack1" />
If partition replicas are placed in as many different racks as possible, the partition can continue to function if a rack goes down.
Recovering the stream service data
Recover stream service data by copying the files from one cluster to another.
Stop all stream service nodes on Cluster1.
Ensure that Cluster2 does not have any enabled services and shut down Pega Platform™.
Ensure that the pr_data_stream_nodes table in Cluster2 is empty.
Import the contents of the pr_data_stream_nodes table from Cluster1 to Cluster2.
Move the kafka-data folder from every stream service node of Cluster1 to Cluster2. Place the folder in either the default location or any other location with the proper configuration in the prconfig.xml file.
For more information, see <PLACEHOLDER>.
Start stream services on Cluster2.
To view the main outline for this article, see Kafka as a streaming service.
Previous topic Kafka configuration options Next topic Kafka standard deployment