<a id="streams-developer-guide-interactive-queries"></a>

# Kafka Streams Interactive Queries for Confluent Platform

Interactive Queries allow you to use the state of your application from outside
your application. The Kafka Streams API enables your applications to be queryable.

The full state of your application is typically
[split across many distributed instances of your application](../architecture.md#streams-architecture-state),
and across many state stores that are managed locally by these application
instances.

![Diagram of a Kafka Streams application's full state split across many distributed instances, each managing its own local state stores.](streams/images/streams-interactive-queries-03.png)

There are local and remote components to query the state of your application
interactively.

Local state
: An application instance can query the locally managed portion of the state
  and directly query its own local state stores. You can use the corresponding
  local data in other parts of your application code, as long as it doesn’t
  require calling the Kafka Streams API. Querying state stores is always
  read-only to guarantee that the underlying state stores are never mutated
  out-of-band, such as adding new entries. State stores should only be mutated
  by the corresponding processor topology and the input data it operates on.
  For more information, see
  [Query local state stores for an application instance](#streams-developer-guide-interactive-queries-local-stores).

Remote state
: To query the full state of your application, you must connect the various
  fragments of the state, including:
  <br/>
  - query local state stores
  - discover all running instances of your application in the network and
    their state stores
  - communicate with these instances over the network, such as an RPC layer
  <br/>
  Connecting these fragments enables communication between instances of the
  same application and communication from other applications for Interactive
  Queries. For more information, see
  [Query remote state stores for the entire application](#streams-developer-guide-interactive-queries-discovery).

Kafka Streams natively provides all of the required functionality for interactively
querying the state of your application, except if you want to expose the full
state of your application via Interactive Queries. To allow application
instances to communicate over the network, you must add a Remote Procedure Call
(RPC) layer to your application, such as a REST API.

This table shows the Kafka Streams native communication support for various
procedures.

| Procedure                                                 | Application instance   | Entire application                 |
|-----------------------------------------------------------|------------------------|------------------------------------|
| Query local state stores of an app instance               | Supported              | Supported                          |
| Make an app instance discoverable to others               | Supported              | Supported                          |
| Discover all running app instances and their state stores | Supported              | Supported                          |
| Communicate with app instances over the network (RPC)     | Supported              | Not supported (you must configure) |

<a id="streams-developer-guide-interactive-queries-local-stores"></a>

## Query local state stores for an application instance

A Kafka Streams application typically runs on multiple instances. The state that is
locally available on any given instance is only a subset of the
[application’s entire state](../architecture.md#streams-architecture-state). Querying the
local stores on an instance returns only data available locally on that
particular instance.

The method `KafkaStreams#store(...)` finds an application instance’s local
state stores by name and type.

![Diagram showing an application instance directly querying its own local state stores.](streams/images/streams-interactive-queries-api-01.png)

The *name* of a state store is defined when you create the store. You can create
the store explicitly by using the Processor API or implicitly by using stateful
operations in the DSL.

The *type* of a state store is defined by `QueryableStoreType`. You can access
the built-in types via the class `QueryableStoreTypes`. Kafka Streams currently
has three built-in types:

* A key-value store `QueryableStoreTypes#keyValueStore()`, see
  [Query local key-value stores](#streams-developer-guide-interactive-queries-local-key-value-stores).
* A window store `QueryableStoreTypes#windowStore()`, see
  [Query local window stores](#streams-developer-guide-interactive-queries-local-window-stores).
* A session store `QueryableStoreTypes#sessionStore()`, see
  [Query local session stores](#streams-developer-guide-interactive-queries-local-session-stores).

You can also
[implement your own QueryableStoreType](#streams-developer-guide-interactive-queries-custom-stores)
as described in section
[Query local custom state stores](#streams-developer-guide-interactive-queries-custom-stores).

Kafka Streams materializes one state store per stream partition. This means your
application potentially manages many underlying state stores. The API enables
you to query all of the underlying stores without having to know which partition
the data is in.

<a id="streams-developer-guide-interactive-queries-local-key-value-stores"></a>

### Query local key-value stores

To query a local key-value store, you must first create a topology with a
key-value store. This example creates a key-value store named
“CountsKeyValueStore”. This store holds the latest count for any word that is
found on the topic “word-count-input”.

```java
Properties props = ...;
StreamsBuilder builder = ...;
KStream<String, String> textLines = ...;

// Define the processing topology (here: WordCount)
KGroupedStream<String, String> groupedByWord = textLines
  .flatMapValues(value -> Arrays.asList(value.toLowerCase().split("\\W+")))
  .groupBy((key, word) -> word, Grouped.with(stringSerde, stringSerde));

// Create a key-value store named "CountsKeyValueStore" for the all-time word counts
groupedByWord.count(Materialized.<String, String, KeyValueStore<Bytes, byte[]>>as("CountsKeyValueStore"));

// Start an instance of the topology
KafkaStreams streams = new KafkaStreams(builder.build(), props);
streams.start();
```

After the application has started, you can get access to “CountsKeyValueStore”
and then query it via the
[ReadOnlyKeyValueStore](https://github.com/apache/kafka/blob/trunk/streams/src/main/java/org/apache/kafka/streams/state/ReadOnlyKeyValueStore.java)
API:

```java
// Get the key-value store CountsKeyValueStore
ReadOnlyKeyValueStore<String, Long> keyValueStore =
    streams.store(StoreQueryParameters.fromNameAndType("CountsKeyValueStore", QueryableStoreTypes.keyValueStore()));

// Get value by key
System.out.println("count for hello:" + keyValueStore.get("hello"));

// Get the values for a range of keys available in this application instance
KeyValueIterator<String, Long> range = keyValueStore.range("all", "streams");
while (range.hasNext()) {
  KeyValue<String, Long> next = range.next();
  System.out.println("count for " + next.key + ": " + next.value);
}
// close the iterator to release resources
range.close();

// Get the values for all of the keys available in this application instance
KeyValueIterator<String, Long> range = keyValueStore.all();
while (range.hasNext()) {
  KeyValue<String, Long> next = range.next();
  System.out.println("count for " + next.key + ": " + next.value);
}
// close the iterator to release resources
range.close();
```

You can also materialize the results of stateless operators by using the
overloaded methods that take a `queryableStoreName` as shown in the example
below:

```java
StreamsBuilder builder = ...;
KTable<String, Integer> regionCounts = ...;

// materialize the result of filtering corresponding to odd numbers
// the "queryableStoreName" can be subsequently queried.
KTable<String, Integer> oddCounts = numberLines.filter((region, count) -> (count % 2 != 0),
  Materialized.<String, Integer, KeyValueStore<Bytes, byte[]>>as("queryableStoreName"));

// do not materialize the result of filtering corresponding to even numbers
// this means that these results will not be materialized and cannot be queried.
KTable<String, Integer> evenCounts = numberLines.filter((region, count) -> (count % 2 == 0));
```

<a id="streams-developer-guide-interactive-queries-local-window-stores"></a>

### Query local window stores

A window store potentially has many results for any given key because the key
can be present in multiple windows. However, there is only one result per window
for a given key.

To query a local window store, you must first create a topology with a window
store. This example creates a window store named “CountsWindowStore” that
contains the counts for words in 1-minute windows.

```java
StreamsBuilder builder = ...;
KStream<String, String> textLines = ...;

// Define the processing topology (here: WordCount)
KGroupedStream<String, String> groupedByWord = textLines
  .flatMapValues(value -> Arrays.asList(value.toLowerCase().split("\\W+")))
  .groupBy((key, word) -> word, Grouped.with(stringSerde, stringSerde));

// Create a window state store named "CountsWindowStore" that contains the word counts for every minute
groupedByWord.windowedBy(TimeWindows.ofSizeWithNoGrace(Duration.ofMinutes(1)))
  .count(Materialized.<String, Long, WindowStore<Bytes, byte[]>>as("CountsWindowStore"));
```

After the application has started, you can get access to “CountsWindowStore” and
then query it via the
[ReadOnlyWindowStore](https://github.com/apache/kafka/blob/trunk/streams/src/main/java/org/apache/kafka/streams/state/ReadOnlyWindowStore.java)
API:

```java
// Get the window store named "CountsWindowStore"
ReadOnlyWindowStore<String, Long> windowStore =
    streams.store(StoreQueryParameters.fromNameAndType("CountsWindowStore", QueryableStoreTypes.windowStore()));

// Fetch values for the key "world" for all of the windows available in this application instance.
// To get *all* available windows we fetch windows from the beginning of time until now.
Instant timeFrom = Instant.ofEpochMilli(0); // beginning of time = oldest available
Instant timeTo = Instant.now(); // now (in processing-time)
WindowStoreIterator<Long> iterator = windowStore.fetch("world", timeFrom, timeTo);
while (iterator.hasNext()) {
  KeyValue<Long, Long> next = iterator.next();
  long windowTimestamp = next.key;
  System.out.println("Count of 'world' @ time " + windowTimestamp + " is " + next.value);
}
// close the iterator to release resources
iterator.close();
```

<a id="streams-developer-guide-interactive-queries-local-session-stores"></a>

### Query local session stores

A session store potentially has many results for any given key because there
can be multiple sessions for that key. However, there is only one result per
session for a given key.

To query a local session store, you must first create a topology with a
session store. This example creates a session store named “CountsSessionStore”
that contains the counts for words, grouped into sessions with a five-minute
inactivity gap.

```java
StreamsBuilder builder = ...;
KStream<String, String> textLines = ...;

// Define the processing topology (here: WordCount)
KGroupedStream<String, String> groupedByWord = textLines
  .flatMapValues(value -> Arrays.asList(value.toLowerCase().split("\\W+")))
  .groupBy((key, word) -> word, Grouped.with(stringSerde, stringSerde));

// Create a session state store named "CountsSessionStore" that contains the word counts for every session
groupedByWord.windowedBy(SessionWindows.ofInactivityGapWithNoGrace(Duration.ofMinutes(5)))
  .count(Materialized.<String, Long, SessionStore<Bytes, byte[]>>as("CountsSessionStore"));
```

Query “CountsSessionStore” by using the
[ReadOnlySessionStore](https://github.com/apache/kafka/blob/trunk/streams/src/main/java/org/apache/kafka/streams/state/ReadOnlySessionStore.java)
API after the application has started:

```java
// Get the session store named "CountsSessionStore"
ReadOnlySessionStore<String, Long> sessionStore =
    streams.store(StoreQueryParameters.fromNameAndType("CountsSessionStore", QueryableStoreTypes.sessionStore()));

// Fetch all of the sessions for the key "world" available in this application instance.
try (KeyValueIterator<Windowed<String>, Long> iterator = sessionStore.fetch("world")) {
  while (iterator.hasNext()) {
    KeyValue<Windowed<String>, Long> next = iterator.next();
    Window session = next.key.window();
    System.out.println("Count of 'world' for session @ " + session.start() + "-" + session.end()
        + " is " + next.value);
  }
}
```

<a id="streams-developer-guide-interactive-queries-custom-stores"></a>

### Query local custom state stores

Only the [Processor API](processor-api.md#streams-developer-guide-processor-api) supports
custom state stores.

Before querying the custom state stores you must implement these interfaces:

- Your custom state store must implement `StateStore`.
- You must have an interface to represent the operations available on the store.
- You must provide an implementation of `StoreBuilder` for creating instances
  of your store.
- Provide an interface that restricts access to read-only operations. This
  prevents users of this API from mutating the state of your running Kafka Streams
  application out-of-band.

The class/interface hierarchy for your custom store might look something like:

```java
public class MyCustomStore<K,V> implements StateStore, MyWriteableCustomStore<K,V> {
  // implementation of the actual store
}

// Read-write interface for MyCustomStore
public interface MyWriteableCustomStore<K,V> extends MyReadableCustomStore<K,V> {
  void write(K Key, V value);
}

// Read-only interface for MyCustomStore
public interface MyReadableCustomStore<K,V> {
  V read(K key);
}

public class MyCustomStoreBuilder implements StoreBuilder<MyCustomStore<K,V>> {
  // implementation of the supplier for MyCustomStore
}
```

To make this store queryable you must:

* Provide an implementation of
  [QueryableStoreType](https://github.com/apache/kafka/blob/trunk/streams/src/main/java/org/apache/kafka/streams/state/QueryableStoreType.java).
* Provide a wrapper class that has access to all of the underlying instances of
  the store and is used for querying.

Here is how to implement `QueryableStoreType`:

```java
public class MyCustomStoreType<K,V> implements QueryableStoreType<MyReadableCustomStore<K,V>> {

  // Only accept StateStores that are of type MyCustomStore
  public boolean accepts(final StateStore stateStore) {
    return stateStore instanceOf MyCustomStore;
  }

  public MyReadableCustomStore<K,V> create(final StateStoreProvider storeProvider, final String storeName) {
      return new MyCustomStoreTypeWrapper(storeProvider, storeName, this);
  }

}
```

A wrapper class is required because each instance of a Kafka Streams application
may run multiple stream tasks and manage multiple local instances of a
particular state store. The wrapper class hides this complexity and lets you
query a “logical” state store by name without having to know about all of the
underlying local instances of that state store.

When implementing your wrapper class you must use the
[StateStoreProvider](https://github.com/apache/kafka/blob/trunk/streams/src/main/java/org/apache/kafka/streams/state/internals/StateStoreProvider.java)
interface to get access to the underlying instances of your store.
`StateStoreProvider#stores(String storeName, QueryableStoreType<T> queryableStoreType)`
returns a `List` of state stores with the given storeName and of the type as
defined by `queryableStoreType`.

Here is an example implementation of the wrapper:

```java
// You should implement a read-only interface to restrict
// usage of the store to safe read operations.
public class MyCustomStoreTypeWrapper<K,V> implements MyReadableCustomStore<K,V> {

  private final QueryableStoreType<MyReadableCustomStore<K, V>> customStoreType;
  private final String storeName;
  private final StateStoreProvider provider;

  public MyCustomStoreTypeWrapper(final StateStoreProvider provider,
                                final String storeName,
                                final QueryableStoreType<MyReadableCustomStore<K, V>> customStoreType) {

    // ... assign fields ...
  }

  // Implement a safe read method
  @Override
  public V read(final K key) {
    // Get all the stores with storeName and of customStoreType
    final List<MyReadableCustomStore<K, V>> stores = provider.stores(storeName, customStoreType);
    // Try and find the value for the given key
    final Optional<V> value = stores.stream().filter(store -> store.read(key) != null).findFirst();
    // Return the value if it exists
    return value.orElse(null);
  }

}
```

You can now find and query your custom store:

```java
Topology topology = ...;
ProcessorSupplier processorSuppler = ...;

// Create CustomStoreSupplier for store name the-custom-store
MyCustomStoreBuilder customStoreBuilder = new MyCustomStoreBuilder("the-custom-store") //...;
// Add the source topic
topology.addSource("input", "inputTopic");
// Add a custom processor that reads from the source topic
topology.addProcessor("the-processor", processorSupplier, "input");
// Connect your custom state store to the custom processor above
topology.addStateStore(customStoreBuilder, "the-processor");

KafkaStreams streams = new KafkaStreams(topology, props);
streams.start();

// Get access to the custom store
MyReadableCustomStore<String,String> store = streams.store(StoreQueryParameters.fromNameAndType("the-custom-store", new MyCustomStoreType<String,String>()));

// Query the store
String value = store.read("key");
```

<a id="streams-developer-guide-interactive-queries-query-stores-during-rebalance"></a>

### Query state stores during a rebalance

With the Streams API, you can build stateful applications that offer different
trade-offs for consistency and availability. For example, your application can
query state stores during a consumer group rebalance. Kafka Streams applications
can:

- Route queries to standby replicas for better availability if the active host
  is currently down.
- Implement a control plane to exchange lag information and choose the best
  standby replica to route to. Lag information could be piggybacked on requests
  or heartbeats.
- Choose to fail a query if all replicas are lagging greatly.

Use the `KafkaStreams.queryMetadataForKey` method to find the metadata that
contains the active hosts and standby hosts where the key being queried resides.
It returns a `KeyQueryMetadata` that contains all metadata about hosting the
given key for a specified store. Use the query metadata and the lag APIs, like
the `KafkaStreams.allLocalStorePartitionLags` method, to determine which hosts
are in sync and which are lagging.

The following code example shows how to enumerate standby hosts and sort them by
lag, from the most in-sync to the least in-sync.

#### IMPORTANT
If you are migrating from the deprecated `KafkaStreams#metadataForKey`
method, use `queryMetadataForKey` as shown in the following example.

```java
// Global map containing latest lag information across hosts. This is
// collected by the Streams application instances outside of Streams,
// relying on the local lag APIs in each.
//
// Each application instance uses KafkaStreams#allMetadata() to discover
// other application instances to exchange this lag information.
final Map<HostInfo, Map<String, Map<Integer, Long>>> globalLagInformation;

// Key which needs to be routed.
final K key;

// Store to be queried.
final String storeName;

// Fetch the metadata related to the key.
KeyQueryMetadata queryMetadata = queryMetadataForKey(storeName, key, serializer);

// Acceptable lag for the query.
final long acceptableOffsetLag = 10000;

if (isAlive(queryMetadata.activeHost())) {
  // Always route to the active host if it's alive.
  // The isAlive and query methods are for illustration only
  // and aren't part of the Streams API.
  query(storeName, key, queryMetadata.activeHost());
} else {
  // Filter out all of the standby hosts with more unacceptable lag than
  // acceptable lag, and obtain a list of standbys hosts that are in-sync.
  List<HostInfo> inSyncStandbys = queryMetadata.standbyHosts().stream()
      // Get the lag at each standby host for the key's store partition.
      .map(standbyHostInfo -> new Pair<>(standbyHostInfo, globalLagInformation.get(standbyHostInfo).get(storeName).get(queryMetadata.partition())))
      // Sort by offset lag, that is, smallest lag first.
      .sorted(Comparator.comparing(Pair::getRight))
      .filter(standbyHostLagPair -> standbyHostLagPair.getRight() < acceptableOffsetLag)
      .map(standbyHostLagPair -> standbyHostLagPair.getLeft())
      .collect(Collectors.toList());

  // Query standbys most in-sync to least in-sync.
  for (HostInfo standbyHost : inSyncStandbys) {
    try {
      query(storeName, key, standbyHost);
    } catch (Exception e) {
      System.err.println("Querying standby failed");
    }
  }
}
```

The following code example shows how to use the
`KafkaStreams.allLocalStorePartitionLags` method and the `LagInfo` class to
get partition lags for all local stores. For the full code listing, see
[LagFetchIntegrationTest.java](https://github.com/apache/kafka/blob/trunk/streams/src/test/java/org/apache/kafka/streams/integration/LagFetchIntegrationTest.java)

```java
Map<String, Map<Integer, LagInfo>> offsetLagInfoMap = // return value from allLocalStorePartitionLags()
    ...
    // Get the lag for a given state store's partition 0.
    LagInfo lagInfo = offsetLagInfoMap.get(stateStoreName).get(0);
    assertThat(lagInfo.currentOffsetPosition(), equalTo(5L));
    assertThat(lagInfo.endOffsetPosition(), equalTo(5L));
    assertThat(lagInfo.offsetLag(), equalTo(0L));
```

The following code example shows how to query both active and standby stores for
a key. For the full code listing, see
[StoreQueryIntegrationTest.java](https://github.com/apache/kafka/blob/trunk/streams/src/test/java/org/apache/kafka/streams/integration/StoreQueryIntegrationTest.java)

```java
final StreamsBuilder builder = new StreamsBuilder();
builder.table(INPUT_TOPIC_NAME, Consumed.with(Serdes.Integer(), Serdes.Integer()),
                Materialized.<Integer, Integer, KeyValueStore<Bytes, byte[]>>as(TABLE_NAME)
                        .withCachingDisabled())
        .toStream()
        .peek((k, v) -> semaphore.release());

final KafkaStreams kafkaStreams1 = createKafkaStreams(builder, streamsConfiguration());
final KafkaStreams kafkaStreams2 = createKafkaStreams(builder, streamsConfiguration());
final List<KafkaStreams> kafkaStreamsList = Arrays.asList(kafkaStreams1, kafkaStreams2);
final QueryableStoreType<ReadOnlyKeyValueStore<Integer, Integer>> queryableStoreType = QueryableStoreTypes.keyValueStore();

// Both active and standby stores are able to query for a key.
final ReadOnlyKeyValueStore<Integer, Integer> store1 = kafkaStreams1
    .store(StoreQueryParameters.fromNameAndType(TABLE_NAME, queryableStoreType).enableStaleStores());

final ReadOnlyKeyValueStore<Integer, Integer> store2 = kafkaStreams2
    .store(StoreQueryParameters.fromNameAndType(TABLE_NAME, queryableStoreType).enableStaleStores());
```

<a id="streams-developer-guide-interactive-queries-discovery"></a>

## Query remote state stores for the entire application

To query remote states for the entire application, you must expose the
application’s full state to other applications, including applications that are
running on different machines.

For example, you have a Kafka Streams application that processes user events in a
multi-player video game, and you want to retrieve the latest status of each user
directly and display it in a mobile app. Here are the required steps to make the
full state of your application queryable:

1. [Add an RPC layer to your application](#streams-developer-guide-interactive-queries-rpc-layer)
   so that the instances of your application can be interacted with over the
   network, such as a REST API, Thrift, or a custom protocol. The instances must
   respond to Interactive Queries. You can follow the reference examples
   provided to get started.
2. [Expose the RPC endpoints](#streams-developer-guide-interactive-queries-expose-rpc)
   of your application’s instances by using the `application.server`
   configuration setting of Kafka Streams. Because RPC endpoints must be unique
   within a network, each instance has its own value for this configuration
   setting. This makes an application instance discoverable by other instances.
3. In the RPC layer,
   [discover remote application instances](#streams-developer-guide-interactive-queries-discover-app-instances-and-stores)
   and their state stores and
   [query locally available state stores](#streams-developer-guide-interactive-queries-local-stores)
   to make the full state of your application queryable. The remote application
   instances can forward queries to other application instances if a particular
   instance lacks the local data to respond to a query. The locally available
   state stores can directly respond to queries.

![Diagram showing application instances discovering each other over an RPC layer to query remote state stores across the whole application.](streams/images/streams-interactive-queries-api-02.png)

<a id="streams-developer-guide-interactive-queries-rpc-layer"></a>

### Add an RPC layer to your application

There are many ways to add an RPC layer. The only requirements are that the RPC
layer is embedded within the Kafka Streams application and that it exposes an
endpoint that other application instances and applications can connect to.

The
[word count interactive queries demo](https://github.com/confluentinc/demo-scene/tree/master/kafka-streams-interactive-queries)
is an end-to-end demo application for Interactive Queries that showcases the
implementation of an RPC layer through a REST API.

<a id="streams-developer-guide-interactive-queries-expose-rpc"></a>

### Expose the RPC endpoints of your application

To enable remote state store discovery in a distributed Kafka Streams application,
you must set the
[configuration property](config-streams.md#streams-developer-guide-required-configs) in the
config properties instance. The `application.server` property defines a unique
`host:port` pair that points to the RPC endpoint of the respective instance of
a Kafka Streams application. The value of this configuration property varies across
the instances of your application. When this property is set, Kafka Streams keeps
track of the RPC endpoint information for every instance of an application, its
state stores, and assigned stream partitions through instances of
[StreamsMetadata](/platform/current/streams/javadocs/javadoc/org/apache/kafka/streams/state/StreamsMetadata.html).

This example shows how to configure and run a Kafka Streams application that
supports the discovery of its state stores.

```java
Properties props = new Properties();
// Set the unique RPC endpoint of this application instance through which it
// can be interactively queried.  In a real application, the value would most
// probably not be hardcoded but derived dynamically.
String rpcEndpoint = "host1:4460";
props.put(StreamsConfig.APPLICATION_SERVER_CONFIG, rpcEndpoint);
// ... further settings may follow here ...

StreamsBuilder builder = new StreamsBuilder();

KStream<String, String> textLines = builder.stream(stringSerde, stringSerde, "word-count-input");

final KGroupedStream<String, String> groupedByWord = textLines
    .flatMapValues(value -> Arrays.asList(value.toLowerCase().split("\\W+")))
    .groupBy((key, word) -> word, Grouped.with(stringSerde, stringSerde));

// This call to `count()` creates a state store named "word-count".
// The state store is discoverable and can be queried interactively.
groupedByWord.count(Materialized.<String, Long, KeyValueStore<Bytes, byte[]>>as("word-count"));

// Start an instance of the topology
KafkaStreams streams = new KafkaStreams(builder.build(), props);
streams.start();

// Then, create and start the actual RPC service for remote access to this
// application instance's local state stores.
//
// This service should be started on the same host and port as defined above by
// the property `StreamsConfig.APPLICATION_SERVER_CONFIG`.  The example below is
// fictitious, but we provide end-to-end demo applications (such as KafkaMusicExample)
// that showcase how to implement such a service to get you started.
MyRPCService rpcService = ...;
rpcService.listenAt(rpcEndpoint);
```

<a id="streams-developer-guide-interactive-queries-discover-app-instances-and-stores"></a>

### Discover and access application instances and their local state stores

The following methods return
[StreamsMetadata](/platform/current/streams/javadocs/javadoc/org/apache/kafka/streams/state/StreamsMetadata.html)
objects, which provide meta-information about application instances such as
their RPC endpoint and locally available state stores.

* `KafkaStreams#allMetadata()`: find all instances of this application
* `KafkaStreams#allMetadataForStore(String storeName)`: find those
  applications instances that manage local instances of the state store
  “storeName”
* `KafkaStreams#queryMetadataForKey(String storeName, K key, Serializer<K> keySerializer)`:
  using the default stream partitioning strategy, find the one application
  instance that holds the data for the given key in the given state store
* `KafkaStreams#queryMetadataForKey(String storeName, K key, StreamPartitioner<K, ?> partitioner)`:
  using `partitioner`, find the one application instance that holds the data
  for the given key in the given state store

#### ATTENTION
If `application.server` is not configured for an application instance, then these methods don’t find any [StreamsMetadata](/platform/current/streams/javadocs/javadoc/org/apache/kafka/streams/state/StreamsMetadata.html) for it.

For example, you can now find the `StreamsMetadata` for the state store named
“word-count” that you defined in the code example shown in the previous section:

```java
KafkaStreams streams = ...;
// Find all the locations of local instances of the state store named "word-count"
Collection<StreamsMetadata> wordCountHosts = streams.allMetadataForStore("word-count");

// For illustrative purposes, we assume using an HTTP client to talk to remote app instances.
HttpClient http = ...;

// Get the word count for word (aka key) 'alice': Approach 1
//
// We first find the one app instance that manages the count for 'alice' in its local state stores.
KeyQueryMetadata metadata = streams.queryMetadataForKey("word-count", "alice", Serdes.String().serializer());
// Then, we query only that single app instance for the latest count of 'alice'.
// Note: The RPC URL shown below is fictitious and only serves to illustrate the idea.  Ultimately,
// the URL (or, in general, the method of communication) will depend on the RPC layer you opted to
// implement.  Again, we provide end-to-end demo applications (such as KafkaMusicExample) that showcase
// how to implement such an RPC layer.
Long result = http.getLong("http://" + metadata.activeHost().host() + ":" + metadata.activeHost().port() + "/word-count/alice");

// Get the word count for word (aka key) 'alice': Approach 2
//
// Alternatively, we could also choose (say) a brute-force approach where we query every app instance
// until we find the one that happens to know about 'alice'.
Optional<Long> result = streams.allMetadataForStore("word-count")
    .stream()
    .map(streamsMetadata -> {
        // Construct the (fictitious) full endpoint URL to query the current remote application instance
        String url = "http://" + streamsMetadata.host() + ":" + streamsMetadata.port() + "/word-count/alice";
        // Read and return the count for 'alice', if any.
        return http.getLong(url);
    })
    .filter(s -> s != null)
    .findFirst();
```

At this point the full state of the application is interactively queryable:

* You can discover the running instances of the application and the state stores
  they manage locally.
* Through the RPC layer that was added to the application, you can communicate
  with these application instances over the network and query them for locally
  available state.
* The application instances are able to serve such queries because they can
  directly query their own local state stores and respond via the RPC layer.
* Collectively, this lets you query the full state of the entire application.

To see an end-to-end application with Interactive Queries, review the
[demo applications](#streams-developer-guide-interactive-queries-demos).

## Interactive Queries APIs

Kafka Streams currently provides two APIs for querying state:

- **Interactive Queries v2 (IQv2)** – the newer, query-based API
- **Interactive Queries v1 (IQv1)** – the original, store-access-based API

This documentation introduces Interactive Queries v2 as the *new API*, while
retaining IQv1 for backward compatibility.

Interactive Queries v2 (IQv2) introduces a query-based API for accessing
Kafka Streams application state. Instead of directly interacting with state store
objects, applications define structured queries that are executed by Kafka Streams.

IQv2 improves API safety, extensibility, and error handling by:

- Decoupling query definition from store internals
- Returning structured query results instead of throwing exceptions
- Returning metadata (partitions) beside query results
- Enabling clearer handling of partial failures in distributed environments

Queries are executed against local state stores on an application instance, with
Kafka Streams managing:

- Query execution
- Validation
- Result and failure reporting

IQv2 is designed to evolve independently of specific state store implementations
and serves as the successor to the legacy Interactive Queries v1 API.

### How Interactive Queries v2 works

Interactive Queries v2 works by allowing applications to define explicit query
objects that describe the data to fetch from a state store. These queries are
submitted to Kafka Streams, which is responsible for executing the query, handling
validation, and returning a structured result.

Instead of exposing state store internals, Kafka Streams processes the query and
returns a `StateQueryResult`, which may contain either the requested data or
detailed failure information. This approach makes querying state safer, more
extensible, and better suited for distributed environments.

### Build and execute a query with IQv2

In Interactive Queries v2, applications first build a query object that
describes the data to retrieve from a specific state store, for example, a key
lookup or range query. This query is wrapped in a `StateQueryRequest`, which
also specifies the target state store.

Once the request is created, it is executed using the `KafkaStreams#query()`
method. Kafka Streams validates the request, executes the query against the
appropriate local state store, and returns a `StateQueryResult` containing
either the query result or failure details.

This separation of query construction and query execution allows Kafka Streams to
manage execution logic while keeping application code clean and extensible.

1. The following code example shows how to build the query.
   ```java
   // Build a query to fetch the value for a specific key.
   StateQueryRequest<Long> request =
     StateQueryRequest.inStore("counts-store")
       .withQuery(KeyQuery.withKey("user-1"));
   ```

   In this code:
   - `"counts-store"` is the name of the state store.
   - `"user-1"` is the key you want to query.
   - `KeyQuery` defines what kind of query you are performing.
2. The following code example shows how to execute the query.
   ```java
   StateQueryResult<Long> result = kafkaStreams.query(request);
   ```

   Kafka Streams executes the query against the local state store and returns a
   result object.
3. The following code example shows how to read the result.
   ```java
   QueryResult<Long> queryResult = result.getOnlyPartitionResult();
   Long count = queryResult.getResult();
   System.out.println("Count: " + count);
   ```

### Compare Interactive Queries versions IQv1 and IQv2

The tables below summarize the key differences between Interactive Queries v1
and Interactive Queries v2.

| **Aspects**                      | **Interactive Queries v1 (Legacy API)**                 | **Interactive Queries v2 (New API)**                        |
|----------------------------------|---------------------------------------------------------|-------------------------------------------------------------|
| API Style                        | Store-based API                                         | Query-based API                                             |
| How queries are defined          | Direct access to state store objects                    | Explicit query objects (e.g., KeyQuery)                     |
| Interaction with state stores    | Application interacts directly with store<br/>internals | Kafka Streams executes queries on behalf of the application |
| Result handling                  | Results returned directly or via iterators              | Results wrapped in StateQueryResult                         |
| Error handling                   | Exception-based                                         | Structured failures returned with results                   |
| Coupling to store implementation | Tightly coupled to store types                          | Decoupled from store internals                              |
| Extensibility                    | Harder to evolve without breaking changes               | Designed to be extensible and future-proof                  |
| Partial failure visibility       | Limited                                                 | Explicit visibility into per-host failures                  |
| Feature completeness             | Feature complete and stable                             | Not yet feature complete                                    |

For new applications, use IQv2. IQv1 remains supported and feature complete, so
existing applications can continue to use it.

## Interactive Queries v2 limitations

Some advanced query patterns available in the original Interactive Queries API
are not supported.

<a id="streams-developer-guide-interactive-queries-demos"></a>

## Demo applications

Here is an end-to-end demo application to get you started:

* [Word Count with Kafka Streams Interactive Queries](https://github.com/confluentinc/demo-scene/tree/master/kafka-streams-interactive-queries)

#### NOTE
This website includes content developed at the [Apache Software Foundation](https://www.apache.org/)
under the terms of the [Apache License v2](https://www.apache.org/licenses/LICENSE-2.0.html).
