Where is 3.2.x pulsar-client-kafka? #22849
-
According to the official documentation, <dependency>
<groupId>org.apache.pulsar</groupId>
<artifactId>pulsar-client-kafka</artifactId>
<version>3.2.3</version>
</dependency> I don't see this version in maven central.2.11.x is the last version there. Do you support latest version of this that match with current latest version of Pulsar? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
It is managed in https://github.com/apache/pulsar-adapters and released separately. There haven't been releases since 2.11.0 . It doesn't follow the Pulsar releases, but it should continue to be compatible with recent Pulsar client versions. To use a newer Pulsar client version, it's recommended to use the Pulsar BOM. Please see docs at https://pulsar.apache.org/docs/3.2.x/client-libraries-java-setup/#pulsar-bom how to use Pulsar BOM. pulsar-client-kafka is a Kafka compatibility wrapper over the Pulsar Java client. You might also need to use the unshaded version of |
Beta Was this translation helpful? Give feedback.
It is managed in https://github.com/apache/pulsar-adapters and released separately. There haven't been releases since 2.11.0 . It doesn't follow the Pulsar releases, but it should continue to be compatible with recent Pulsar client versions.
To use a newer Pulsar client version, it's recommended to use the Pulsar BOM. Please see docs at https://pulsar.apache.org/docs/3.2.x/client-libraries-java-setup/#pulsar-bom how to use Pulsar BOM. pulsar-client-kafka is a Kafka compatibility wrapper over the Pulsar Java client. You might also need to use the unshaded version of
pulsar-client-kafka
which has the artifact idpulsar-client-kafka-original
.