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,179718




1,179718












  • 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















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




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















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Hercules Kyvelos

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud