Kafka - Advanced Stream Processing
Given the following code snippet in a Kafka Streams app, what will be the output if the key "user123" exists with value "active" in the state store?
var store = streams.store("userStatusStore", ReadOnlyKeyValueStore.class);
var status = store.get("user123");
System.out.println(status);