Closed tomas-sedlon closed 9 months ago
also found - https://github.com/AbsaOSS/ABRiS/issues/208
but the docs mentioned there do not seem to say anything about how to enable https
Hello,
Abris just takes this URL and gives it to io.confluent.kafka.schemaregistry.client.CachedSchemaRegistryClient
. Since you have issues with this, I would recommend debugging this issue using CachedSchemaRegistryClient
alone and when it's working you can go back to full Abris.
You can see the exact way how client is created here: https://github.com/AbsaOSS/ABRiS/blob/master/src/main/scala/za/co/absa/abris/avro/registry/ConfluentRegistryClient.scala
Hi, I am using the ABRiS library with schema registry to read data from Kafka and deserialize them. This works well if I have a Confluent schema registry that requires just http call, but breaks when I have an https one. I am unable to force ABRis to make a https call.
My code:
produces:
notice the http:// in calling the schema registry. How can I force abris to use https?
Thanks a lot for any help!