2

I read Kafka streams use cases for add global store this stackover flow discuss and come to know that global-state store skip processor during the restoration.

is there any way to force global state store not to skip processor.

because input topic doesn't have any key inside the processor we are constructing the key and put in state store.

i seen many solution to create a custom change log topic that will be use as a source topic for global state store.

but i want how i can force global state store to run processor during restoration with processor api.

Mohit Singh
  • 401
  • 1
  • 10
  • 30

1 Answers1

0

This is currently not supported until https://issues.apache.org/jira/browse/KAFKA-7663 and https://issues.apache.org/jira/browse/KAFKA-8037 are resolved.

Compare: Kafka Streams Global Store - Adding change log topic

Matthias J. Sax
  • 59,682
  • 7
  • 117
  • 137