You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| SessionWindows | Sessionization of user events, user behavior analysis | | [Java 7+ example](src/main/java/io/confluent/examples/streams/SessionWindowsExample.java)
68
68
| GlobalKTable |`join()` between `KStream` and `GlobalKTable`|[Java 8+ example](src/main/java/io/confluent/examples/streams/GlobalKTablesExample.java)|||
69
+
| GlobalStore | "join" between `KStream` and `GlobalStore`|[Java 8+ example](src/main/java/io/confluent/examples/streams/GlobalStoresExample.java)|||
69
70
| PageViewRegion |`join()` between `KStream` and `KTable`|[Java 8+ example](src/main/java/io/confluent/examples/streams/PageViewRegionLambdaExample.java)|[Java 7+ example](src/main/java/io/confluent/examples/streams/PageViewRegionExample.java)||
70
71
| PageViewRegionGenericAvro | Working with data in Generic Avro format |[Java 8+ example](src/main/java/io/confluent/examples/streams/PageViewRegionLambdaExample.java)|[Java 7+ example](src/main/java/io/confluent/examples/streams/PageViewRegionExample.java)||
71
72
| WikipediaFeedSpecificAvro | Working with data in Specific Avro format |[Java 8+ example](src/main/java/io/confluent/examples/streams/WikipediaFeedAvroLambdaExample.java)|[Java 7+ example](src/main/java/io/confluent/examples/streams/WikipediaFeedAvroExample.java)||
@@ -109,6 +110,7 @@ Additional examples may be found under [src/test/](src/test/java/io/confluent/ex
Copy file name to clipboardExpand all lines: src/main/java/io/confluent/examples/streams/ApplicationResetExample.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@
28
28
29
29
/**
30
30
* Demonstrates how to reset a Kafka Streams application to re-process its input data from scratch.
31
-
* See also <a href='http://docs.confluent.io/current/streams/developer-guide.html#application-reset-tool'>http://docs.confluent.io/current/streams/developer-guide.html#application-reset-tool</a>
31
+
* See also <a href='https://docs.confluent.io/platform/current/streams/developer-guide/app-reset-tool.html'>https://docs.confluent.io/platform/current/streams/developer-guide/app-reset-tool.html</a>
32
32
* <p>
33
33
* The main purpose of the example is to explain the usage of the "Application Reset Tool".
34
34
* Thus, we don’t put the focus on what this topology is actually doing—the point is to have an example of a
0 commit comments