Date
1 - 2 of 2
Does anyone here has an experience with running schema manager (for avro) with strimzi kafka ?
Matthew Isaacs
I used the open source helm chart from Confluent: https://github.com/confluentinc/cp-helm-charts/tree/v5.4.0/charts/cp-schema-registry
The heap settings and resource limits were not sufficient for the 5.4.0 release (I need to send in a patch for this and other issues). Otherwise, don't forget to specify the your Kafka bootstrap endpoint:
On Wed, Feb 12, 2020 at 1:51 PM alonn <alonisser@...> wrote: > > Thanks, Yes, I'm trying with multiple instances. I can do with one, probably if that works > Can you please provide a sample deployment.yaml ? so I can see what I'm missing? > Tech blog:https://medium.com/@alonisser > Personal Blog:degeladom.wordpress.com > Tel:972-54-6734469 > Email: alonisser@... > > > > On Wed, Feb 12, 2020 at 7:51 PM Matthew Isaacs <matthew.isaacs@...> wrote: >> >> I'm running the Schema Registry service along side a Strimzi deployed Kafka. It seems to be working fine for me. Are you trying to run multiple instances of the the schema registry? I'm afraid I don't fully understand what problem you're having. |
|
alonisser@...
I've setup the most basic kafka persistent setup (see the crd below)
But can't seem to understand how to run schema registy against it (with kafka based leader selection) I see kafka logs with endless generations like this one Preparing to rebalance group schema-registry in state PreparingRebalance with old generation 24 So it does seem to actually connect , but then something goes wrong Using bootstrap servers leading to the kafka service 9092 port bootstrap.servers = [PLAINTEXT://my-fafka-bootstrap:9092]
The kafka crd apiVersion: kafka.strimzi.io/v1beta1 |
|