Package org.apache.kafka.streams
Class StoreQueryParameters<T>
- java.lang.Object
-
- org.apache.kafka.streams.StoreQueryParameters<T>
-
public class StoreQueryParameters<T> extends Object
StoreQueryParametersallows you to pass a variety of parameters when fetching a store for interactive query.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StoreQueryParameters<T>enableStaleStores()Enable querying of stale state stores, i.e., allow to query active tasks during restore as well as standby tasks.booleanequals(Object obj)static <T> StoreQueryParameters<T>fromNameAndType(String storeName, QueryableStoreType<T> queryableStoreType)inthashCode()Integerpartition()Get the store partition that will be queried.QueryableStoreType<T>queryableStoreType()Get the queryable store type for which key is queried by the user.booleanstaleStoresEnabled()Get the flag staleStores.StringstoreName()Get the name of the state store that should be queried.StringtoString()StoreQueryParameters<T>withPartition(Integer partition)Set a specific partition that should be queried exclusively.
-
-
-
Method Detail
-
fromNameAndType
public static <T> StoreQueryParameters<T> fromNameAndType(String storeName, QueryableStoreType<T> queryableStoreType)
-
withPartition
public StoreQueryParameters<T> withPartition(Integer partition)
Set a specific partition that should be queried exclusively.- Parameters:
partition- The specific integer partition to be fetched from the stores list by usingStoreQueryParameters.- Returns:
- StoreQueryParameters a new
StoreQueryParametersinstance configured with the specified partition
-
enableStaleStores
public StoreQueryParameters<T> enableStaleStores()
Enable querying of stale state stores, i.e., allow to query active tasks during restore as well as standby tasks.- Returns:
- StoreQueryParameters a new
StoreQueryParametersinstance configured with serving from stale stores enabled
-
storeName
public String storeName()
Get the name of the state store that should be queried.- Returns:
- String state store name
-
queryableStoreType
public QueryableStoreType<T> queryableStoreType()
Get the queryable store type for which key is queried by the user.- Returns:
- QueryableStoreType type of queryable store
-
partition
public Integer partition()
Get the store partition that will be queried. If the method returnsnull, it would mean that no specific partition has been requested, so all the local partitions for the store will be queried.- Returns:
- Integer partition
-
staleStoresEnabled
public boolean staleStoresEnabled()
Get the flag staleStores. Iftrue, include standbys and recovering stores along with running stores.- Returns:
- boolean staleStores
-
-