pulsar-client-cpp icon indicating copy to clipboard operation
pulsar-client-cpp copied to clipboard

Apache Pulsar C++ client library

Results 88 pulsar-client-cpp issues
Sort by recently updated
recently updated
newest added

### Search before asking - [X] I searched in the [issues](https://github.com/apache/pulsar-client-cpp/issues) and found nothing similar. ### Version Debian GNU/Linux 10 (buster), aarch64 (but the executable is arm32), pulsar-client-cpp 3.3.0 ###...

### Search before asking - [X] I searched in the [issues](https://github.com/apache/pulsar-client-cpp/issues) and found nothing similar. ### Version client 3.2 server 3.2.2 ### Minimal reproduce step Use a producer to send...

### Search before asking - [X] I searched in the [issues](https://github.com/apache/pulsar-client-cpp/issues) and found nothing similar. ### Version 3.5.0 ### Minimal reproduce step See https://github.com/apache/pulsar/pull/22306 ### What did you expect to...

### Search before asking - [X] I searched in the [issues](https://github.com/apache/pulsar-client-cpp/issues) and found nothing similar. ### Version master ### Minimal reproduce step https://github.com/apache/pulsar-client-cpp/actions/runs/8229708235/job/22501936954?pr=409 ### What did you expect to see?...

### Motivation Currently the main branch is broken by the concurrent merge of https://github.com/apache/pulsar-client-cpp/pull/153 and https://github.com/apache/pulsar-client-cpp/pull/151. It's because when a batched message id is constructed from deserialization, there is no...

bug

PIP: https://github.com/apache/pulsar/pull/20453 ### Motivation Enable hostname verification by default. ### Modifications * Update the default value and the documentation to show the new default value. ### Verifying this change This...

### Motivation It is more reasonable to set routingMode default RoundRobinDistribution, just as the java client. Otherwise, user may ignore this config, and producer can not produce msg to all...

### Search before asking - [X] I searched in the [issues](https://github.com/apache/pulsar-client-cpp/issues) and found nothing similar. ### Version main ### Minimal reproduce step Enable `ackReceipt` for https://github.com/apache/pulsar-client-cpp/blob/main/tests/extensibleLM/ExtensibleLoadManagerTest.cc ```c++ ConsumerConfiguration consumerConf; consumerConf.setAckReceiptEnabled(true);...

I am using Pulsar Cpp in my project but it produces pulsar INFO logs roughly every 10 minutes. How can I close INFO logs from Pulsar? Example Log: INFO [139790546368256]...

FileLoggerFactory simply outputs logs to a single file. If users want to rotate log files, they need to implement custom LoggerFactory by themselves. Log4cxxLogger was deleted in #283, but this...