Skip to content

Commit 081c010

Browse files
author
Petter Graff
committed
more update of versions
1 parent 1bafbad commit 081c010

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

labs/02-Publish-And-Subscribe/producer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ All the directory references in this lab is relative to where you expended the l
105105
user-events
106106
```
107107

108-
1. Open `producer/pom.xml` in your favorite text editor. At the time of this writing, the current stable version of Kafka is 0.10.1.1. Maven is being used for dependency management in this lab and includes the following in the `pom.xml` for Kafka:
108+
1. Open `producer/pom.xml` in your favorite text editor. At the time of this writing, the current stable version of Kafka is 1.1.0. Maven is being used for dependency management in this lab and includes the following in the `pom.xml` for Kafka:
109109

110110
```xml
111111
<dependency>

labs/04-Implement-Topics-And-Partitions/docker/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
version: '2'
22
services:
33
zookeeper:
4-
image: zookeeper:3.4.9
4+
image: wurstmeister/zookeeper:3.4.6
55
ports:
66
- 2181:2181
77
kafka:
8-
image: wurstmeister/kafka:0.10.1.1
8+
image: wurstmeister/kafka:1.1.0
99
ports:
1010
- 9092:9092
1111
- 7203:7203

labs/04-Implement-Topics-And-Partitions/heartbeat-simulator/producer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ All the directory references in this lab is relative to where you expended the l
2424
version: '2'
2525
services:
2626
zookeeper:
27-
image: zookeeper:3.4.9
27+
image: wurstmeister/zookeeper:3.4.6
2828
ports:
2929
- 2181:2181
3030
kafka:
31-
image: wurstmeister/kafka:0.10.1.1
31+
image: wurstmeister/kafka:1.1.0
3232
ports:
3333
- 9092:9092
3434
- 7203:7203

labs/06-Streaming/docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '2'
22
services:
33
zookeeper:
4-
image: zookeeper:3.4.9
4+
image: wurstmeister/zookeeper:3.4.6
55
ports:
66
- 2181:2181
77
kafka:

labs/06-Streaming/iot-kafka-solution/gps-pump/producer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ All the directory references in this lab is relative to where you expended the l
2424
version: '2'
2525
services:
2626
zookeeper:
27-
image: zookeeper:3.4.9
27+
image: wurstmeister/zookeeper:3.4.6
2828
ports:
2929
- 2181:2181
3030
kafka:
31-
image: wurstmeister/kafka:0.10.1.1
31+
image: wurstmeister/kafka:1.1.0
3232
ports:
3333
- 9092:9092
3434
- 7203:7203

0 commit comments

Comments
 (0)