Pulsar C++ client

You can use Pulsar C++ client to create Pulsar producers and consumers in C++.

All the methods in producer, consumer, and reader of a C++ client are thread-safe.

支持的平台

Pulsar C++ client is supported on Linux and MacOS platforms.

Doxygen-generated API docs for the C++ client are available here.

系统要求

You need to install the following components before using the C++ client:

Linux

编译

  1. Clone the Pulsar repository.
  1. $ git clone https://github.com/apache/pulsar
  1. Install all necessary dependencies.
  1. $ apt-get install cmake libssl-dev libcurl4-openssl-dev liblog4cxx-dev \
  2. libprotobuf-dev protobuf-compiler libboost-all-dev google-mock libgtest-dev libjsoncpp-dev
  1. Compile and install Google Test.
  1. # libgtest-dev version is 1.18.0 or above
  2. $ cd /usr/src/googletest
  3. $ sudo cmake .
  4. $ sudo make
  5. $ sudo cp ./googlemock/libgmock.a ./googlemock/gtest/libgtest.a /usr/lib/
  6. # less than 1.18.0
  7. $ cd /usr/src/gtest
  8. $ sudo cmake .
  9. $ sudo make
  10. $ sudo cp libgtest.a /usr/lib
  11. $ cd /usr/src/gmock
  12. $ sudo cmake .
  13. $ sudo make
  14. $ sudo cp libgmock.a /usr/lib
  1. Compile the Pulsar client library for C++ inside the Pulsar repository.
  1. $ cd pulsar-client-cpp
  2. $ cmake .
  3. $ make

After you install the components successfully, the files libpulsar.so and libpulsar.a are in the lib folder of the repository. The tools perfProducer and perfConsumer are in the perf directory.

Install Dependencies

Since 2.1.0 release, Pulsar ships pre-built RPM and Debian packages. You can download and install those packages directly.

After you download and install RPM or DEB, the libpulsar.so, libpulsarnossl.so, libpulsar.a, and libpulsarwithdeps.a libraries are in your /usr/lib directory.

By default, they are built in code path ${PULSAR_HOME}/pulsar-client-cpp. You can build with the command below.

cmake . -DBUILD_TESTS=OFF -DLINK_STATIC=ON && make pulsarShared pulsarSharedNossl pulsarStatic pulsarStaticWithDeps -j 3.

These libraries rely on some other libraries. If you want to get detailed version of dependencies, see RPM or DEB files.

  1. libpulsar.so is a shared library, containing statically linked boost and openssl. It also dynamically links all other necessary libraries. You can use this Pulsar library with the command below.
  1. g++ --std=c++11 PulsarTest.cpp -o test /usr/lib/libpulsar.so -I/usr/local/ssl/include
  1. libpulsarnossl.so is a shared library, similar to libpulsar.so except that the libraries openssl and crypto are dynamically linked. You can use this Pulsar library with the command below.
  1. g++ --std=c++11 PulsarTest.cpp -o test /usr/lib/libpulsarnossl.so -lssl -lcrypto -I/usr/local/ssl/include -L/usr/local/ssl/lib
  1. libpulsar.a is a static library. You need to load dependencies before using this library. You can use this Pulsar library with the command below.
  1. g++ --std=c++11 PulsarTest.cpp -o test /usr/lib/libpulsar.a -lssl -lcrypto -ldl -lpthread -I/usr/local/ssl/include -L/usr/local/ssl/lib -lboost_system -lboost_regex -lcurl -lprotobuf -lzstd -lz
  1. libpulsarwithdeps.a is a static library, based on libpulsar.a. It is archived in the dependencies of libboost_regex, libboost_system, libcurl, libprotobuf, libzstd and libz. You can use this Pulsar library with the command below.
  1. g++ --std=c++11 PulsarTest.cpp -o test /usr/lib/libpulsarwithdeps.a -lssl -lcrypto -ldl -lpthread -I/usr/local/ssl/include -L/usr/local/ssl/lib

The libpulsarwithdeps.a does not include library openssl related libraries libssl and libcrypto, because these two libraries are related to security. It is more reasonable and easier to use the versions provided by the local system to handle security issues and upgrade libraries.

Install RPM

  1. Download a RPM package from the links in the table.
链接加密文件
clientasc, sha512
client-debuginfoasc, sha512
client-develasc, sha512
  1. Install the package using the following command.
  1. $ rpm -ivh apache-pulsar-client*.rpm

After you install RPM successfully, Pulsar libraries are in the /usr/lib directory.

Install Debian

  1. Download a Debian package from the links in the table.
链接加密文件
clientasc, sha512
client-develasc, sha512
  1. Install the package using the following command.
  1. $ apt install ./apache-pulsar-client*.deb

After you install DEB successfully, Pulsar libraries are in the /usr/lib directory.

编译

If you want to build RPM and Debian packages from the latest master, follow the instructions below. You should run all the instructions at the root directory of your cloned Pulsar repository.

There are recipes that build RPM and Debian packages containing a statically linked libpulsar.so / libpulsarnossl.so / libpulsar.a / libpulsarwithdeps.a with all required dependencies.

To build the C++ library packages, you need to build the Java packages first.

  1. mvn install -DskipTests

RPM

To build the RPM inside a Docker container, use the command below. The RPMs are in the pulsar-client-cpp/pkg/rpm/RPMS/x86_64/ path.

  1. pulsar-client-cpp/pkg/rpm/docker-build-rpm.sh
包名内容
pulsar-clientShared library libpulsar.so and libpulsarnossl.so
pulsar-client-develStatic library libpulsar.a, libpulsarwithdeps.aand C++ and C headers
pulsar-client-debuginfoDebug symbols for libpulsar.so

Debian

To build Debian packages, enter the following command.

  1. pulsar-client-cpp/pkg/deb/docker-build-deb.sh

Debian packages are created in the pulsar-client-cpp/pkg/deb/BUILD/DEB/ path.

包名内容
pulsar-clientShared library libpulsar.so and libpulsarnossl.so
pulsar-client-devStatic library libpulsar.a, libpulsarwithdeps.a and C++ and C headers

MacOS

编译

  1. Clone the Pulsar repository.
  1. $ git clone https://github.com/apache/pulsar
  1. Install all necessary dependencies.
  1. # OpenSSL installation
  2. $ brew install openssl
  3. $ export OPENSSL_INCLUDE_DIR=/usr/local/opt/openssl/include/
  4. $ export OPENSSL_ROOT_DIR=/usr/local/opt/openssl/
  5. # Protocol Buffers installation
  6. $ brew tap homebrew/versions
  7. $ brew install protobuf260
  8. $ brew install boost
  9. $ brew install log4cxx
  10. # Google Test installation
  11. $ git clone https://github.com/google/googletest.git
  12. $ cd googletest
  13. $ cmake .
  14. $ make install
  1. Compile the Pulsar client library in the repository that you cloned.
  1. $ cd pulsar-client-cpp
  2. $ cmake .
  3. $ make

Install libpulsar

Pulsar releases are available in the Homebrew core repository. You can install the C++ client library with the following command. The package is installed with the library and headers.

  1. brew install libpulsar

连接 URL

To connect Pulsar using client libraries, you need to specify a Pulsar protocol URL.

Pulsar protocol URLs are assigned to specific clusters, you can use the Pulsar URI scheme. The default port is 6650. The following is an example for localhost.

  1. pulsar://localhost:6650

In a Pulsar cluster in production, the URL looks as follows.

  1. pulsar://pulsar.us-west.example.com:6650

If you use TLS authentication, you need to add ssl, and the default port is 6651. The following is an example.

  1. pulsar+ssl://pulsar.us-west.example.com:6651

Create a consumer

To use Pulsar as a consumer, you need to create a consumer on the C++ client. The following is an example.

  1. Client client("pulsar://localhost:6650");
  2. Consumer consumer;
  3. Result result = client.subscribe("my-topic", "my-subscription-name", consumer);
  4. if (result != ResultOk) {
  5. LOG_ERROR("Failed to subscribe: " << result);
  6. return -1;
  7. }
  8. Message msg;
  9. while (true) {
  10. consumer.receive(msg);
  11. LOG_INFO("Received: " << msg
  12. << " with payload '" << msg.getDataAsString() << "'");
  13. consumer.acknowledge(msg);
  14. }
  15. client.close();

Create a producer

To use Pulsar as a producer, you need to create a producer on the C++ client. The following is an example.

  1. Client client("pulsar://localhost:6650");
  2. Producer producer;
  3. Result result = client.createProducer("my-topic", producer);
  4. if (result != ResultOk) {
  5. LOG_ERROR("Error creating producer: " << result);
  6. return -1;
  7. }
  8. // Publish 10 messages to the topic
  9. for (int i = 0; i < 10; i++){
  10. Message msg = MessageBuilder().setContent("my-message").build();
  11. Result res = producer.send(msg);
  12. LOG_INFO("Message sent: " << res);
  13. }
  14. client.close();

Enable authentication in connection URLs

If you use TLS authentication when connecting to Pulsar, you need to add ssl in the connection URLs, and the default port is 6651. The following is an example.

  1. ClientConfiguration config = ClientConfiguration();
  2. config.setUseTls(true);
  3. config.setTlsTrustCertsFilePath("/path/to/cacert.pem");
  4. config.setTlsAllowInsecureConnection(false);
  5. config.setAuth(pulsar::AuthTls::create(
  6. "/path/to/client-cert.pem", "/path/to/client-key.pem"););
  7. Client client("pulsar+ssl://my-broker.com:6651", config);

For complete examples, refer to C++ client examples.

Schema

This section describes some examples about schema. For more information about schema, see Pulsar schema.

Create producer with Avro schema

The following example shows how to create a producer with an Avro schema.

  1. static const std::string exampleSchema =
  2. "{\"type\":\"record\",\"name\":\"Example\",\"namespace\":\"test\","
  3. "\"fields\":[{\"name\":\"a\",\"type\":\"int\"},{\"name\":\"b\",\"type\":\"int\"}]}";
  4. Producer producer;
  5. ProducerConfiguration producerConf;
  6. producerConf.setSchema(SchemaInfo(AVRO, "Avro", exampleSchema));
  7. client.createProducer("topic-avro", producerConf, producer);

Create consumer with Avro schema

The following example shows how to create a consumer with an Avro schema.

  1. static const std::string exampleSchema =
  2. "{\"type\":\"record\",\"name\":\"Example\",\"namespace\":\"test\","
  3. "\"fields\":[{\"name\":\"a\",\"type\":\"int\"},{\"name\":\"b\",\"type\":\"int\"}]}";
  4. ConsumerConfiguration consumerConf;
  5. Consumer consumer;
  6. consumerConf.setSchema(SchemaInfo(AVRO, "Avro", exampleSchema));
  7. client.subscribe("topic-avro", "sub-2", consumerConf, consumer)