Skip to content

Commit 3f6b75f

Browse files
committed
Update README.md
1 parent d0fe0e6 commit 3f6b75f

File tree

2 files changed

+24
-8
lines changed

2 files changed

+24
-8
lines changed

dsl/README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
This module demonstrates how to use the processing exception handler to manage processing errors in Kafka Streams DSL operations.
44

5-
## Run
5+
## Prerequisites
6+
7+
To compile and run this demo, you’ll need:
8+
9+
- Java 21
10+
- Maven
11+
- Docker
12+
13+
## Running the Application
614

715
To run the application manually:
816

@@ -22,9 +30,9 @@ This will start the following services in Docker:
2230
- 1 Control Center
2331
- 1 Kafka Streams Processing Exception Handler DSL
2432

25-
## Try it
33+
## Try It Out
2634

27-
From Control Center running at http://localhost:9021, you can produce `DeliveryBooked` events to the `delivery_booked_topic` topic.
35+
Using Control Center at http://localhost:9021, you can produce `DeliveryBooked` events to the `delivery_booked_topic` topic.
2836

2937
### Example Record
3038

@@ -47,7 +55,7 @@ Value:
4755

4856
### Triggering an Exception
4957

50-
To trigger the processing exception handler, produce a record with missing `numberOfTires`, which will result in a `NullPointerException`:
58+
To trigger the processing exception handler, produce a record with a missing `numberOfTires` field. This will result in a `NullPointerException`:
5159

5260
```json
5361
{

processor-api/README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
This module demonstrates how to use the processing exception handler to manage processing errors in Kafka Streams Processor API.
44

5-
## Run
5+
## Prerequisites
6+
7+
To compile and run this demo, you’ll need:
8+
9+
- Java 21
10+
- Maven
11+
- Docker
12+
13+
## Running the Application
614

715
To run the application manually:
816

@@ -22,9 +30,9 @@ This will start the following services in Docker:
2230
- 1 Control Center
2331
- 1 Kafka Streams Processing Exception Handler Processor API
2432

25-
## Try it
33+
## Try It Out
2634

27-
From Control Center running on http://localhost:9021, you can produce `DeliveryBooked` events to the `delivery_booked_topic` topic.
35+
Using Control Center at http://localhost:9021, you can produce `DeliveryBooked` events to the `delivery_booked_topic` topic.
2836

2937
### Example Record
3038

@@ -47,7 +55,7 @@ Value:
4755

4856
### Triggering an Exception
4957

50-
To trigger the processing exception handler, produce a record with missing `numberOfTires`, which will result in a `NullPointerException`:
58+
To trigger the processing exception handler, produce a record with a missing `numberOfTires` field. This will result in a `NullPointerException`:
5159

5260
```json
5361
{

0 commit comments

Comments
 (0)