Pulsar

The Apache Pulsar microservice provides server-to-server messaging for Unified Assurance microservices.

It is a supporting microservice for all microservice pipelines and runs in the a1-messaging namespace. See Understanding Microservice Pipelines in Unified Assurance Concepts for conceptual information.

Pulsar Prerequisites

Before deploying the microservice, confirm that a microservice cluster is set up. See Microservice Cluster Setup.

Deploying Pulsar

To deploy the microservice, run the appropriate command for your environment:

You can also use the Unified Assurance UI to deploy microservices. See Deploying a Microservice by Using the UI for more information.

Changing Pulsar Configuration Parameters

When running the install command, you can optionally change default configuration parameter values by including them in the command with additional --set arguments. You can add as many additional --set arguments as you need.

For example, set a parameter described in Default Pulsar Configuration by adding --set config.<parameter_name>=<parameter_value>. For example, disable IPv4 support and use IPv6 instead by adding --set config.pulsarIPv4Stack=false.

Default Pulsar Configuration

The following table describes the default configuration parameters found in the Helm chart under config for the microservice.

Name Possible Values Default Value Notes
bookkeeperEnsemble int
  • When singleNode is set to true, the default is 1.
  • When singleNode is set to false, the value for replicaCount is used.
  • If you specify a value when deploying the microservice, that value is used.
The number of BookKeeper bookies.
bookkeeperWriteQuorum int
  • When singleNode is set to true, the default is 1.
  • When singleNode is set to false, the value for replicaCount is used.
  • If you specify a value when deploying the microservice, that value is used.
The replication factor for BookKeeper entries.
bookkeeperAckQuorum int
  • When singleNode is set to true, the default is 1.
  • When singleNode is set to false, the value for replicaCount is used.
  • If you specify a value when deploying the microservice, that value is used.
The number of guaranteed BookKeeper copies (number of acks in a complete write).
pulsarIPv4Stack bool true Whether to use IPv4 (true) or IPv6 (false).