Use Apicurio Schemaregistry in Confluent kafka #2459
Unanswered
ibalachandar86
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am using confluentinc/cp-kafka-connect docker image to run kafka connectors, using confluent schema registry.
Only Kafka connectors are running in Kubernetes not Kafka brokers and Schema registry. Below is my working Kubernetes yaml file with confluent schema registry.
Kubernetes YAML file
cp-control-center:
enabled: false
cp-kafka:
enabled: false
cp-kafka-rest:
enabled: false
cp-ksql-server:
enabled: false
cp-schema-registry:
enabled: false
cp-zookeeper:
enabled: false
cp-kafka-connect:
replicaCount: 1
image: {confluentinc/cp-kafka-connect image with kafka connectors}
imageTag: XXXX
imagePullPolicy: IfNotPresent
servicePort: 8083
configurationOverrides:
kafka:
bootstrapServers: "https://XXXX:9092"
Instead of Confluent Schema registry, We are trying to use Apicurio schema registry. We have installed Apicurio SR in a separate server not in Kubernetes.
In above YAML file, We have to provide Apicurio schema registry configs in place of quoted Confluent schema registry properties.
I could able to create tokens for my credentials and execute get/post schemas using curl command in APICurio SR.
My questions are,
Is it possible to use Apicurio schema registry in combination with Confluent Kafka?
If yes, what are the changes/configs I have use to make it work.
How to convert this token into authentication properties/configs?
Beta Was this translation helpful? Give feedback.
All reactions