Skip to content

Commit

Permalink
Bump Confluent to 6.0.0-SNAPSHOT, Kafka to 6.0.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewegel committed Jun 8, 2020
1 parent 91e64cf commit 8f1f6b9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
* Once packaged you can then run:
* <pre>
* {@code
* $ java -cp target/kafka-streams-examples-5.4.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.ApplicationResetExample
* $ java -cp target/kafka-streams-examples-6.0.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.ApplicationResetExample
* }
* </pre>
* 4) Write some input data to the source topic (e.g. via {@code kafka-console-producer}).
Expand Down Expand Up @@ -114,7 +114,7 @@
* Thus, restart the application via:
* <pre>
* {@code
* $ java -cp target/kafka-streams-examples-5.4.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.ApplicationResetExample localhost:9092 --reset
* $ java -cp target/kafka-streams-examples-6.0.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.ApplicationResetExample localhost:9092 --reset
* }</pre>
* 9) If your console consumer (from step 5) is still running, you should see the same output data again.
* If it was stopped and you restart it, if will print the result "twice".
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
* Once packaged you can then run:
* <pre>
* {@code
* $ java -cp target/kafka-streams-examples-5.4.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.GlobalKTablesExample
* $ java -cp target/kafka-streams-examples-6.0.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.GlobalKTablesExample
* }
* </pre>
* 4) Write some input data to the source topics (e.g. via {@link GlobalKTablesExampleDriver}). The
Expand All @@ -82,7 +82,7 @@
* {@code
* # Here: Write input data using the example driver. The driver will exit once it has received
* # all EnrichedOrders
* $ java -cp target/kafka-streams-examples-5.4.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.GlobalKTablesExampleDriver
* $ java -cp target/kafka-streams-examples-6.0.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.GlobalKTablesExampleDriver
* }
* </pre>
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* Once packaged you can then run:
* <pre>
* {@code
* $ java -cp target/kafka-streams-examples-5.4.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.GlobalKTablesExampleDriver
* $ java -cp target/kafka-streams-examples-6.0.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.GlobalKTablesExampleDriver
* }
* </pre>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
* Once packaged you can then run:
* <pre>
* {@code
* $ java -cp target/kafka-streams-examples-5.4.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.JsonToAvroExample
* $ java -cp target/kafka-streams-examples-6.0.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.JsonToAvroExample
* }
* </pre>
* 4) Write some input data to the source topics (e.g. via {@link JsonToAvroExampleDriver}). The
Expand All @@ -68,7 +68,7 @@
* {@code
* # Here: Write input data using the example driver. Once the driver has stopped generating data,
* # you can terminate it via Ctrl-C.
* $ java -cp target/kafka-streams-examples-5.4.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.JsonToAvroExampleDriver
* $ java -cp target/kafka-streams-examples-6.0.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.JsonToAvroExampleDriver
* }
* </pre>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
* Once packaged you can then run:
* <pre>
* {@code
* java -cp target/kafka-streams-examples-5.4.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.JsonToAvroExampleDriver
* java -cp target/kafka-streams-examples-6.0.0-SNAPSHOT-standalone.jar io.confluent.examples.streams.JsonToAvroExampleDriver
* }
* </pre>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Then run the fully-working demo [end-to-end](https://docs.confluent.io/current/t
It runs the ecosystem and all the microservices for you including Kafka Connect, Elasticsearch, KSQL and Control Center.

To play with this ecosystem the simplest way is to run the tests and fiddle with the code (stand alone execution is only supported in branch 5.0.0+ so go there if you want stand alone or docker support). Each test boots a self-contained Kafka cluster so it's easy to play with different queries and configurations.
The best place to start is [EndToEndTest.java](https://github.com/confluentinc/kafka-streams-examples/blob/6.0.0-SNAPSHOT-post/src/test/java/io/confluent/examples/streams/microservices/EndToEndTest.java)
The best place to start is [EndToEndTest.java](https://github.com/confluentinc/kafka-streams-examples/blob/6.0.x/src/test/java/io/confluent/examples/streams/microservices/EndToEndTest.java)

# Running the Examples:
* Requires Java 1.8
Expand Down

0 comments on commit 8f1f6b9

Please sign in to comment.