You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is how deserialization of a message works today:
extract payload[1..5] as schema id
fetch writer schema definition using schema id
pass payload[5..], writer schema fetched, and reader schema provided in SQL to get a avro::Value
This task is about adding an extra step between 2 and 3:
Compare subject name of writer schema fetched and reader schema provided in SQL. If they are not of the same subject, skip deserialization of this message.
The text was updated successfully, but these errors were encountered:
This is how deserialization of a message works today:
payload[1..5]
as schema idpayload[5..]
, writer schema fetched, and reader schema provided in SQL to get aavro::Value
This task is about adding an extra step between 2 and 3:
The text was updated successfully, but these errors were encountered: