Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apache Kafka with Avro and Schema Repo - where in the message does the schema Id go?

Tags:

I want to use Avro to serialize the data for my Kafka messages and would like to use it with an Avro schema repository so I don't have to include the schema with every message.

Using Avro with Kafka seems like a popular thing to do, and lots of blogs / Stack Overflow questions / usergroups etc reference sending the Schema Id with the message but I cannot find an actual example of where it should go.

I think it should go in the Kafka message header somewhere but I cannot find an obvious place. If it was in the Avro message you would have to decode it against a schema to get the message contents and reveal the schema you need to decode against, which has obvious problems.

I am using the C# client but an example in any language would be great. The message class has these fields:

public MessageMetadata Meta { get; set; } public byte MagicNumber { get; set; } public byte Attribute { get; set; } public byte[] Key { get; set; } public byte[] Value { get; set; } 

but non of these seem correct. The MessageMetaData only has Offset and PartitionId.

So, where should the Avro Schema Id go?

like image 966
jheppinstall Avatar asked Jul 03 '15 10:07

jheppinstall


People also ask

What is schema ID in Kafka?

Schemas, Subjects, and Topics A Kafka topic contains messages, and each message is a key-value pair. Either the message key or the message value, or both, can be serialized as Avro, JSON, or Protobuf. A schema defines the structure of the data format. The Kafka topic name can be independent of the schema name.

How do I check my Avro schema?

If you want to validate the schema definition, then it's enough to try to build an object that is generated by the schema definition. You can do it in a unit test for example and when you will run the unit test, an exception will be thrown if you will not respect the avro schema definition.

Does Avro file contain schema?

Avro uses a schema to structure the data that is being encoded. It has two different types of schema languages; one for human editing (Avro IDL) and another which is more machine-readable based on JSON.

When using the confluent Kafka distribution where does the schema registry reside?

That's where Schema Registry comes into the picture. It is an application that resides outside of your Kafka cluster and handles the distribution of schemas to the producer and consumer by storing a copy of schema in its local cache.

What is Avro schema in Kafka?

However, also the Kafka producer creates a record/message, that is an Avro record. That record contains a schema ID and data. Also, the schema is registered if needed and then it serializes the data and schema ID, with the Kafka Avro Serializer. Why Use Schema Registry in Kafka?

What happens when you send an Avro message to Kafka?

In general what's happening when you send an Avro message to Kafka: The encoder gets the schema from the object to be encoded. Encoder asks the schema registry for an id for this schema.

How do Kafka Avro deserializers work?

Consumers receive payloads and deserialize them with Kafka Avro Deserializers, which use the Confluent Schema Registry. The Deserializer looks up the full schema from the cache or Schema Registry based on ID. Why Schema Registry? The consumer's schema could differ from the producer's.

How to get the schema ID of an Avro message?

The schema id is actually encoded in the avro message itself. Take a look at this to see how encoders/decoders are implemented. In general what's happening when you send an Avro message to Kafka: The encoder gets the schema from the object to be encoded.


1 Answers

The schema id is actually encoded in the avro message itself. Take a look at this to see how encoders/decoders are implemented.

In general what's happening when you send an Avro message to Kafka:

  1. The encoder gets the schema from the object to be encoded.
  2. Encoder asks the schema registry for an id for this schema. If the schema is already registered you'll get an existing id, if not - the registry will register the schema and return the new id.
  3. The object gets encoded as follows: [magic byte][schema id][actual message] where magic byte is just a 0x0 byte which is used to distinguish that kind of messages, schema id is a 4 byte integer value the rest is the actual encoded message.

When you decode the message back here's what happens:

  1. The decoder reads the first byte and makes sure it is 0x0.
  2. The decoder reads the next 4 bytes and converts them to an integer value. This is how schema id is decoded.
  3. Now when the decoder has a schema id it may ask the schema registry for the actual schema for this id. Voila!

If your key is Avro encoded then your key will be of the format described above. The same applies for value. This way your key and value may be both Avro values and use different schemas.

Edit to answer the question in comment:

The actual schema is stored in the schema repository (that is the whole point of schema repository actually - to store schemas :)). The Avro Object Container Files format has nothing to do with the format described above. KafkaAvroEncoder/Decoder use slightly different message format (but the actual messages are encoded exactly the same way sure).

The main difference between these formats is that Object Container Files carry the actual schema and may contain multiple messages corresponding to that schema, whereas the format described above carries only the schema id and exactly one message corresponding to that schema.

Passing object-container-file-encoded messages around would probably be not obvious to follow/maintain because one Kafka message would then contain multiple Avro messages. Or you could ensure that one Kafka message contains only one Avro message but that would result in carrying schema with each message.

Avro schemas can be quite large (I've seen schemas like 600 KB and more) and carrying the schema with each message would be really costly and wasteful so that is where schema repository kicks in - the schema is fetched only once and gets cached locally and all other lookups are just map lookups that are fast.

like image 137
serejja Avatar answered Oct 03 '22 09:10

serejja