jackdaw

simon 2023-01-24T00:33:13.671289Z

Hi, I am new to Jackdaw and Kafka and am stumped by the meaning of key? parameter in the serde-resolver https://github.com/fundingcircle/jackdaw/blob/0.6.0/src/jackdaw/serdes/resolver.clj#L66

2023-01-24T12:37:00.601539Z

there's some description in the docstring https://github.com/fundingcircle/jackdaw/blob/0.6.0/src/jackdaw/serdes/resolver.clj#L34-L35 it's basically a true/false flag to say if the serde is for a the key or for the value of the avro message

simon 2023-01-24T17:26:33.371239Z

great thanks! for my use case I am using the json serde so false should work

simon 2023-01-24T00:34:15.508499Z

is in needed if you don't specify a :schema-filename?