Kafka state store returns null when using Avro









up vote
0
down vote

favorite












We have a kTable where we map the values and materialize to KeyValueStore using the following code:



 @Bean
public KTable<String, CancelEvent> kTable(StreamsBuilder kStreamBuilder,
ValueMapper<CancelEvent, CancelEvent> mapper,
SpecificAvroSerde<CancelEvent> serde)

return kStreamBuilder
.table(properties.getProperty("topics.cancel"), Consumed.with(Serdes.String(), serde))
.mapValues(mapper, Materialized.as("cancel-event-store"));




And mapper code:



 @Override
public CancelEvent apply(CancelEvent value)

if (value.getData().getCancelled())
return null;


return value;




We use Avro for serialization and deserialization. When we try to query the state store with a key, it always returns null.



Code for querying the state store:



 ReadOnlyKeyValueStore<String, CancelEvent> store = streamsFactory.getKafkaStreams()
.store("cancel-event-store", QueryableStoreTypes.keyValueStore());

CancelEvent event = store.get(queryEvent.getMeta().getId().toString());


event is always null. While debugging, I iterated through the keyValuestore, and realized something is appened to the key (magic byte may be!). Please refer the image below



enter image description here



So, the question is how to query with key?



Update 1



 private Map<String, Object> kStreamsConfigsProperties() 
final Map<String, Object> config = new HashMap<>();

config.put(APPLICATION_ID_CONFIG, "app.name" + new Date().getTime());

config.put(BOOTSTRAP_SERVERS_CONFIG, properties.getProperty("spring.kafka.bootstrap-servers"));
config.put(AbstractKafkaAvroSerDeConfig.SCHEMA_REGISTRY_URL_CONFIG, properties.getProperty("spring.kafka.schema-registry"));

config.put(DEFAULT_KEY_SERDE_CLASS_CONFIG, Serdes.String().getClass().getName());
config.put(DEFAULT_VALUE_SERDE_CLASS_CONFIG, SpecificAvroSerde.class.getName());
config.put(DEFAULT_TIMESTAMP_EXTRACTOR_CLASS_CONFIG, WallclockTimestampExtractor.class.getName());

return config;










share|improve this question























  • Did you check the data in KTable if value contains null or data?
    – Nishu Tayal
    Nov 8 at 14:18










  • Yes, it has values and its not null
    – Thiru
    Nov 8 at 14:29










  • What Serde are specified in you config? Because Materialized does not specify serdes explicitly, the config ones will be used. Side remark: why not use KTable#filter()?
    – Matthias J. Sax
    Nov 8 at 22:35











  • Thanks @MatthiasJ.Sac, I have updated the question with config
    – Thiru
    Nov 9 at 6:28










  • And how does KTable#filter() will solve the issue? I'm making the value as null, because it has to be considered tombstone message on certain criterial. Pleas correct me if I'm doing something wrong
    – Thiru
    Nov 9 at 6:32














up vote
0
down vote

favorite












We have a kTable where we map the values and materialize to KeyValueStore using the following code:



 @Bean
public KTable<String, CancelEvent> kTable(StreamsBuilder kStreamBuilder,
ValueMapper<CancelEvent, CancelEvent> mapper,
SpecificAvroSerde<CancelEvent> serde)

return kStreamBuilder
.table(properties.getProperty("topics.cancel"), Consumed.with(Serdes.String(), serde))
.mapValues(mapper, Materialized.as("cancel-event-store"));




And mapper code:



 @Override
public CancelEvent apply(CancelEvent value)

if (value.getData().getCancelled())
return null;


return value;




We use Avro for serialization and deserialization. When we try to query the state store with a key, it always returns null.



Code for querying the state store:



 ReadOnlyKeyValueStore<String, CancelEvent> store = streamsFactory.getKafkaStreams()
.store("cancel-event-store", QueryableStoreTypes.keyValueStore());

CancelEvent event = store.get(queryEvent.getMeta().getId().toString());


event is always null. While debugging, I iterated through the keyValuestore, and realized something is appened to the key (magic byte may be!). Please refer the image below



enter image description here



So, the question is how to query with key?



Update 1



 private Map<String, Object> kStreamsConfigsProperties() 
final Map<String, Object> config = new HashMap<>();

config.put(APPLICATION_ID_CONFIG, "app.name" + new Date().getTime());

config.put(BOOTSTRAP_SERVERS_CONFIG, properties.getProperty("spring.kafka.bootstrap-servers"));
config.put(AbstractKafkaAvroSerDeConfig.SCHEMA_REGISTRY_URL_CONFIG, properties.getProperty("spring.kafka.schema-registry"));

config.put(DEFAULT_KEY_SERDE_CLASS_CONFIG, Serdes.String().getClass().getName());
config.put(DEFAULT_VALUE_SERDE_CLASS_CONFIG, SpecificAvroSerde.class.getName());
config.put(DEFAULT_TIMESTAMP_EXTRACTOR_CLASS_CONFIG, WallclockTimestampExtractor.class.getName());

return config;










share|improve this question























  • Did you check the data in KTable if value contains null or data?
    – Nishu Tayal
    Nov 8 at 14:18










  • Yes, it has values and its not null
    – Thiru
    Nov 8 at 14:29










  • What Serde are specified in you config? Because Materialized does not specify serdes explicitly, the config ones will be used. Side remark: why not use KTable#filter()?
    – Matthias J. Sax
    Nov 8 at 22:35











  • Thanks @MatthiasJ.Sac, I have updated the question with config
    – Thiru
    Nov 9 at 6:28










  • And how does KTable#filter() will solve the issue? I'm making the value as null, because it has to be considered tombstone message on certain criterial. Pleas correct me if I'm doing something wrong
    – Thiru
    Nov 9 at 6:32












up vote
0
down vote

favorite









up vote
0
down vote

favorite











We have a kTable where we map the values and materialize to KeyValueStore using the following code:



 @Bean
public KTable<String, CancelEvent> kTable(StreamsBuilder kStreamBuilder,
ValueMapper<CancelEvent, CancelEvent> mapper,
SpecificAvroSerde<CancelEvent> serde)

return kStreamBuilder
.table(properties.getProperty("topics.cancel"), Consumed.with(Serdes.String(), serde))
.mapValues(mapper, Materialized.as("cancel-event-store"));




And mapper code:



 @Override
public CancelEvent apply(CancelEvent value)

if (value.getData().getCancelled())
return null;


return value;




We use Avro for serialization and deserialization. When we try to query the state store with a key, it always returns null.



Code for querying the state store:



 ReadOnlyKeyValueStore<String, CancelEvent> store = streamsFactory.getKafkaStreams()
.store("cancel-event-store", QueryableStoreTypes.keyValueStore());

CancelEvent event = store.get(queryEvent.getMeta().getId().toString());


event is always null. While debugging, I iterated through the keyValuestore, and realized something is appened to the key (magic byte may be!). Please refer the image below



enter image description here



So, the question is how to query with key?



Update 1



 private Map<String, Object> kStreamsConfigsProperties() 
final Map<String, Object> config = new HashMap<>();

config.put(APPLICATION_ID_CONFIG, "app.name" + new Date().getTime());

config.put(BOOTSTRAP_SERVERS_CONFIG, properties.getProperty("spring.kafka.bootstrap-servers"));
config.put(AbstractKafkaAvroSerDeConfig.SCHEMA_REGISTRY_URL_CONFIG, properties.getProperty("spring.kafka.schema-registry"));

config.put(DEFAULT_KEY_SERDE_CLASS_CONFIG, Serdes.String().getClass().getName());
config.put(DEFAULT_VALUE_SERDE_CLASS_CONFIG, SpecificAvroSerde.class.getName());
config.put(DEFAULT_TIMESTAMP_EXTRACTOR_CLASS_CONFIG, WallclockTimestampExtractor.class.getName());

return config;










share|improve this question















We have a kTable where we map the values and materialize to KeyValueStore using the following code:



 @Bean
public KTable<String, CancelEvent> kTable(StreamsBuilder kStreamBuilder,
ValueMapper<CancelEvent, CancelEvent> mapper,
SpecificAvroSerde<CancelEvent> serde)

return kStreamBuilder
.table(properties.getProperty("topics.cancel"), Consumed.with(Serdes.String(), serde))
.mapValues(mapper, Materialized.as("cancel-event-store"));




And mapper code:



 @Override
public CancelEvent apply(CancelEvent value)

if (value.getData().getCancelled())
return null;


return value;




We use Avro for serialization and deserialization. When we try to query the state store with a key, it always returns null.



Code for querying the state store:



 ReadOnlyKeyValueStore<String, CancelEvent> store = streamsFactory.getKafkaStreams()
.store("cancel-event-store", QueryableStoreTypes.keyValueStore());

CancelEvent event = store.get(queryEvent.getMeta().getId().toString());


event is always null. While debugging, I iterated through the keyValuestore, and realized something is appened to the key (magic byte may be!). Please refer the image below



enter image description here



So, the question is how to query with key?



Update 1



 private Map<String, Object> kStreamsConfigsProperties() 
final Map<String, Object> config = new HashMap<>();

config.put(APPLICATION_ID_CONFIG, "app.name" + new Date().getTime());

config.put(BOOTSTRAP_SERVERS_CONFIG, properties.getProperty("spring.kafka.bootstrap-servers"));
config.put(AbstractKafkaAvroSerDeConfig.SCHEMA_REGISTRY_URL_CONFIG, properties.getProperty("spring.kafka.schema-registry"));

config.put(DEFAULT_KEY_SERDE_CLASS_CONFIG, Serdes.String().getClass().getName());
config.put(DEFAULT_VALUE_SERDE_CLASS_CONFIG, SpecificAvroSerde.class.getName());
config.put(DEFAULT_TIMESTAMP_EXTRACTOR_CLASS_CONFIG, WallclockTimestampExtractor.class.getName());

return config;







java apache-kafka apache-kafka-streams spring-kafka confluent-schema-registry






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 9 at 6:27

























asked Nov 8 at 14:15









Thiru

1,152717




1,152717











  • Did you check the data in KTable if value contains null or data?
    – Nishu Tayal
    Nov 8 at 14:18










  • Yes, it has values and its not null
    – Thiru
    Nov 8 at 14:29










  • What Serde are specified in you config? Because Materialized does not specify serdes explicitly, the config ones will be used. Side remark: why not use KTable#filter()?
    – Matthias J. Sax
    Nov 8 at 22:35











  • Thanks @MatthiasJ.Sac, I have updated the question with config
    – Thiru
    Nov 9 at 6:28










  • And how does KTable#filter() will solve the issue? I'm making the value as null, because it has to be considered tombstone message on certain criterial. Pleas correct me if I'm doing something wrong
    – Thiru
    Nov 9 at 6:32
















  • Did you check the data in KTable if value contains null or data?
    – Nishu Tayal
    Nov 8 at 14:18










  • Yes, it has values and its not null
    – Thiru
    Nov 8 at 14:29










  • What Serde are specified in you config? Because Materialized does not specify serdes explicitly, the config ones will be used. Side remark: why not use KTable#filter()?
    – Matthias J. Sax
    Nov 8 at 22:35











  • Thanks @MatthiasJ.Sac, I have updated the question with config
    – Thiru
    Nov 9 at 6:28










  • And how does KTable#filter() will solve the issue? I'm making the value as null, because it has to be considered tombstone message on certain criterial. Pleas correct me if I'm doing something wrong
    – Thiru
    Nov 9 at 6:32















Did you check the data in KTable if value contains null or data?
– Nishu Tayal
Nov 8 at 14:18




Did you check the data in KTable if value contains null or data?
– Nishu Tayal
Nov 8 at 14:18












Yes, it has values and its not null
– Thiru
Nov 8 at 14:29




Yes, it has values and its not null
– Thiru
Nov 8 at 14:29












What Serde are specified in you config? Because Materialized does not specify serdes explicitly, the config ones will be used. Side remark: why not use KTable#filter()?
– Matthias J. Sax
Nov 8 at 22:35





What Serde are specified in you config? Because Materialized does not specify serdes explicitly, the config ones will be used. Side remark: why not use KTable#filter()?
– Matthias J. Sax
Nov 8 at 22:35













Thanks @MatthiasJ.Sac, I have updated the question with config
– Thiru
Nov 9 at 6:28




Thanks @MatthiasJ.Sac, I have updated the question with config
– Thiru
Nov 9 at 6:28












And how does KTable#filter() will solve the issue? I'm making the value as null, because it has to be considered tombstone message on certain criterial. Pleas correct me if I'm doing something wrong
– Thiru
Nov 9 at 6:32




And how does KTable#filter() will solve the issue? I'm making the value as null, because it has to be considered tombstone message on certain criterial. Pleas correct me if I'm doing something wrong
– Thiru
Nov 9 at 6:32

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53209572%2fkafka-state-store-returns-null-when-using-avro%23new-answer', 'question_page');

);

Post as a guest



































active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53209572%2fkafka-state-store-returns-null-when-using-avro%23new-answer', 'question_page');

);

Post as a guest














































































Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)