Class TimeWindowedCogroupedKStreamImpl<K,V,W extends Window>
- java.lang.Object
-
- org.apache.kafka.streams.kstream.internals.AbstractStream<K,V>
-
- org.apache.kafka.streams.kstream.internals.TimeWindowedCogroupedKStreamImpl<K,V,W>
-
- All Implemented Interfaces:
TimeWindowedCogroupedKStream<K,V>
public class TimeWindowedCogroupedKStreamImpl<K,V,W extends Window> extends AbstractStream<K,V> implements TimeWindowedCogroupedKStream<K,V>
-
-
Field Summary
-
Fields inherited from class org.apache.kafka.streams.kstream.internals.AbstractStream
builder, keySerde, name, streamsGraphNode, subTopologySourceNodes, valSerde
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KTable<Windowed<K>,V>aggregate(Initializer<V> initializer)Aggregate the values of records in this stream by the grouped key and defined windows.KTable<Windowed<K>,V>aggregate(Initializer<V> initializer, Materialized<K,V,WindowStore<org.apache.kafka.common.utils.Bytes,byte[]>> materialized)Aggregate the values of records in this stream by the grouped key and defined windows.KTable<Windowed<K>,V>aggregate(Initializer<V> initializer, Named named)Aggregate the values of records in this stream by the grouped key and defined windows.KTable<Windowed<K>,V>aggregate(Initializer<V> initializer, Named named, Materialized<K,V,WindowStore<org.apache.kafka.common.utils.Bytes,byte[]>> materialized)Aggregate the values of records in this stream by the grouped key and defined windows.-
Methods inherited from class org.apache.kafka.streams.kstream.internals.AbstractStream
internalTopologyBuilder, keySerde, valueSerde
-
-
-
-
Method Detail
-
aggregate
public KTable<Windowed<K>,V> aggregate(Initializer<V> initializer)
Description copied from interface:TimeWindowedCogroupedKStreamAggregate the values of records in this stream by the grouped key and defined windows. Records withnullkey or value are ignored. The result is written into a localWindowStore(which is basically an ever-updating materialized view). Furthermore, updates to the store are sent downstream into aKTablechangelog stream.The specified
Initializeris applied directly before the first input record (per key) in each window is processed to provide an initial intermediate aggregation result that is used to process the first record for the window (per key). The specifiedAggregator(as specified inKGroupedStream.cogroup(Aggregator)orCogroupedKStream.cogroup(KGroupedStream, Aggregator)) is applied for each input record and computes a new aggregate using the current aggregate (or for the very first record using the intermediate aggregation result provided via theInitializer) and the record's value. Thus,aggregate()can be used to compute aggregate functions like count or sum etc.The default key and value serde from the config will be used for serializing the result. If a different serde is required then you should use
TimeWindowedCogroupedKStream.aggregate(Initializer, Materialized). Not all updates might get sent downstream, as an internal cache is used to deduplicate consecutive updates to the same window and key. The rate of propagated updates depends on your input data rate, the number of distinct keys, the number of parallel running Kafka Streams instances, and theconfigurationparameters forcache size, andcommit intervall.For failure and recovery the store will be backed by an internal changelog topic that will be created in Kafka. The changelog topic will be named "${applicationId}-${internalStoreName}-changelog", where "applicationId" is user-specified in
StreamsConfigvia parameterAPPLICATION_ID_CONFIG, "internalStoreName" is an internal name and "-changelog" is a fixed suffix. Note that the internal store name may not be queryable through Interactive Queries.You can retrieve all generated internal topic names via
Topology.describe().- Specified by:
aggregatein interfaceTimeWindowedCogroupedKStream<K,V>- Parameters:
initializer- anInitializerthat computes an initial intermediate aggregation result. Cannot benull.- Returns:
- a windowed
KTablethat contains "update" records with unmodified keys, and values that represent the latest (rolling) aggregate for each key within a window
-
aggregate
public KTable<Windowed<K>,V> aggregate(Initializer<V> initializer, Materialized<K,V,WindowStore<org.apache.kafka.common.utils.Bytes,byte[]>> materialized)
Description copied from interface:TimeWindowedCogroupedKStreamAggregate the values of records in this stream by the grouped key and defined windows. Records withnullkey or value are ignored. The result is written into a localWindowStore(which is basically an ever-updating materialized view) that can be queried using the store name as provided withMaterialized. Furthermore, updates to the store are sent downstream into aKTablechangelog stream.The specified
Initializeris applied directly before the first input record (per key) in each window is processed to provide an initial intermediate aggregation result that is used to process the first record for the window (per key). The specifiedAggregator(as specified inKGroupedStream.cogroup(Aggregator)orCogroupedKStream.cogroup(KGroupedStream, Aggregator)) is applied for each input record and computes a new aggregate using the current aggregate (or for the very first record using the intermediate aggregation result provided via theInitializer) and the record's value. Thus,aggregate()can be used to compute aggregate functions like count or sum etc.Not all updates might get sent downstream, as an internal cache is used to deduplicate consecutive updates to the same window and key if caching is enabled on the
Materializedinstance. When caching is enabled the rate of propagated updates depends on your input data rate, the number of distinct keys, the number of parallel running Kafka Streams instances, and theconfigurationparameters forcache size, andcommit intervall.To query the local
ReadOnlyWindowStoreit must be obtained viaKafkaStreams#store(...):
For non-local keys, a custom RPC mechanism must be implemented usingKafkaStreams streams = ... // counting words Store queryableStoreName = ... // the queryableStoreName should be the name of the store as defined by the Materialized instance ReadOnlyWindowStore<K, ValueAndTimestamp<V>> localWindowStore = streams.store(queryableStoreName, QueryableStoreTypes.<K, ValueAndTimestamp<V>>timestampedWindowStore()); K key = "some-word"; long fromTime = ...; long toTime = ...; WindowStoreIterator<ValueAndTimestamp<V>> aggregateStore = localWindowStore.fetch(key, timeFrom, timeTo); // key must be local (application state is shared over all running Kafka Streams instances)KafkaStreams.allMetadata()to query the value of the key on a parallel running instance of your Kafka Streams application.For failure and recovery the store will be backed by an internal changelog topic that will be created in Kafka. Therefore, the store name defined by the
Materializedinstance must be a valid Kafka topic name and cannot contain characters other than ASCII alphanumerics, '.', '_' and '-'. The changelog topic will be named "${applicationId}-${storeName}-changelog", where "applicationId" is user-specified inStreamsConfigvia parameterAPPLICATION_ID_CONFIG, "storeName" is the provide store name defined inMaterialized, and "-changelog" is a fixed suffix.You can retrieve all generated internal topic names via
Topology.describe().- Specified by:
aggregatein interfaceTimeWindowedCogroupedKStream<K,V>- Parameters:
initializer- anInitializerthat computes an initial intermediate aggregation result. Cannot benull.materialized- aMaterializedconfig used to materialize a state store. Cannot benull.- Returns:
- a windowed
KTablethat contains "update" records with unmodified keys, and values that represent the latest (rolling) aggregate for each key within a window
-
aggregate
public KTable<Windowed<K>,V> aggregate(Initializer<V> initializer, Named named)
Description copied from interface:TimeWindowedCogroupedKStreamAggregate the values of records in this stream by the grouped key and defined windows. Records withnullkey or value are ignored. The result is written into a localWindowStore(which is basically an ever-updating materialized view). Furthermore, updates to the store are sent downstream into aKTablechangelog stream.The specified
Initializeris applied directly before the first input record (per key) in each window is processed to provide an initial intermediate aggregation result that is used to process the first record for the window (per key). The specifiedAggregator(as specified inKGroupedStream.cogroup(Aggregator)orCogroupedKStream.cogroup(KGroupedStream, Aggregator)) is applied for each input record and computes a new aggregate using the current aggregate (or for the very first record using the intermediate aggregation result provided via theInitializer) and the record's value. Thus,aggregate()can be used to compute aggregate functions like count or sum etc.The default key and value serde from the config will be used for serializing the result. If a different serde is required then you should use
TimeWindowedCogroupedKStream.aggregate(Initializer, Named, Materialized). Not all updates might get sent downstream, as an internal cache is used to deduplicate consecutive updates to the same window and key. The rate of propagated updates depends on your input data rate, the number of distinct keys, the number of parallel running Kafka Streams instances, and theconfigurationparameters forcache size, andcommit intervall.For failure and recovery the store will be backed by an internal changelog topic that will be created in Kafka. The changelog topic will be named "${applicationId}-${internalStoreName}-changelog", where "applicationId" is user-specified in
StreamsConfigvia parameterAPPLICATION_ID_CONFIG, "internalStoreName" is an internal name and "-changelog" is a fixed suffix. Note that the internal store name may not be queryable through Interactive Queries.You can retrieve all generated internal topic names via
Topology.describe().- Specified by:
aggregatein interfaceTimeWindowedCogroupedKStream<K,V>- Parameters:
initializer- anInitializerthat computes an initial intermediate aggregation result. Cannot benull.named- aNamedconfig used to name the processor in the topology. Cannot benull.- Returns:
- a windowed
KTablethat contains "update" records with unmodified keys, and values that represent the latest (rolling) aggregate for each key within a window
-
aggregate
public KTable<Windowed<K>,V> aggregate(Initializer<V> initializer, Named named, Materialized<K,V,WindowStore<org.apache.kafka.common.utils.Bytes,byte[]>> materialized)
Description copied from interface:TimeWindowedCogroupedKStreamAggregate the values of records in this stream by the grouped key and defined windows. Records withnullkey or value are ignored. The result is written into a localWindowStore(which is basically an ever-updating materialized view) that can be queried using the store name as provided withMaterialized. Furthermore, updates to the store are sent downstream into aKTablechangelog stream.The specified
Initializeris applied directly before the first input record (per key) in each window is processed to provide an initial intermediate aggregation result that is used to process the first record for the window (per key). The specifiedAggregator(as specified inKGroupedStream.cogroup(Aggregator)orCogroupedKStream.cogroup(KGroupedStream, Aggregator)) is applied for each input record and computes a new aggregate using the current aggregate (or for the very first record using the intermediate aggregation result provided via theInitializer) and the record's value. Thus,aggregate()can be used to compute aggregate functions like count or sum etc.Not all updates might get sent downstream, as an internal cache will be used to deduplicate consecutive updates to the same window and key if caching is enabled on the
Materializedinstance. When caching is enabled the rate of propagated updates depends on your input data rate, the number of distinct keys, the number of parallel running Kafka Streams instances, and theconfigurationparameters forcache size, andcommit intervall.To query the local
ReadOnlyWindowStoreit must be obtained viaKafkaStreams#store(...):
For non-local keys, a custom RPC mechanism must be implemented usingKafkaStreams streams = ... // counting words Store queryableStoreName = ... // the queryableStoreName should be the name of the store as defined by the Materialized instance ReadOnlyWindowStore<K, ValueAndTimestamp<V>> localWindowStore = streams.store(queryableStoreName, QueryableStoreTypes.<K, ValueAndTimestamp<V>>timestampedWindowStore()); K key = "some-word"; long fromTime = ...; long toTime = ...; WindowStoreIterator<ValueAndTimestamp<V>> aggregateStore = localWindowStore.fetch(key, timeFrom, timeTo); // key must be local (application state is shared over all running Kafka Streams instances)KafkaStreams.allMetadata()to query the value of the key on a parallel running instance of your Kafka Streams application.For failure and recovery the store will be backed by an internal changelog topic that will be created in Kafka. Therefore, the store name defined by the
Materializedinstance must be a valid Kafka topic name and cannot contain characters other than ASCII alphanumerics, '.', '_' and '-'. The changelog topic will be named "${applicationId}-${storeName}-changelog", where "applicationId" is user-specified inStreamsConfigvia parameterAPPLICATION_ID_CONFIG, "storeName" is the provide store name defined inMaterialized, and "-changelog" is a fixed suffix.You can retrieve all generated internal topic names via
Topology.describe().- Specified by:
aggregatein interfaceTimeWindowedCogroupedKStream<K,V>- Parameters:
initializer- anInitializerthat computes an initial intermediate aggregation result. Cannot benull.named- aNamedconfig used to name the processor in the topology. Cannot benull.materialized- aMaterializedconfig used to materialize a state store. Cannot benull.- Returns:
- a windowed
KTablethat contains "update" records with unmodified keys, and values that represent the latest (rolling) aggregate for each key within a window
-
-