Kafka - Advanced Stream Processing
Consider the following Kafka Streams processor code snippet:
public void init(ProcessorContext context) {
KeyValueStore store = context.getStateStore("myStore");
}
What is the main issue with this code?