Kafka - Advanced Stream Processing
Consider the following Kafka Streams code snippet. What will be printed if the key "order789" exists with value "completed" in the orderStore?
ReadOnlyKeyValueStore<String, String> store = streams.store("orderStore", QueryableStoreTypes.keyValueStore());
String status = store.get("order789");
System.out.println(status);