Looking at https://github.com/confluentinc/confluent-kafka-dotnet/blob/master/examples/JsonSerialization/Program.cs it requires Schema Registry URL. Is there a simple way to serialize/deserialize JSON without that extra complexity?
JSON is a plaintext format. Use the String serializer
However, this doesn't guarantee your messages adhere to a particular format (required set of fields), so that's where you'd introduce a schema and a registry
2.1m questions
2.1m answers
60 comments
57.0k users