emirhosseini
emirhosseini

Reputation: 565

Can the Avro format be used for KSQL when using Apache Kafka without Confluent Platform?

I see in the docs that KSQL supports the Avro format through the Confluent Schema registry. But what if Apache Kafka is being used (not Confluent Platform)?

Is there an option to use an Avro SpecificRecord schema without using the schema registry?

Upvotes: 0

Views: 180

Answers (1)

Nishu Tayal
Nishu Tayal

Reputation: 20840

In order to use Avro format with KSQL, it is necessary to have Confluent Schema Registry up and running.

You can read more details here.

https://docs.confluent.io/current/ksql/docs/installation/server-config/avro-schema.html#using-avro-in-ksql

Upvotes: 1

Related Questions