Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rmoff committed Jan 14, 2022
1 parent 4d67b8b commit 9e27255
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
12 changes: 6 additions & 6 deletions telegram-bot-carparks/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
version: '2'
services:
zookeeper:
image: "confluentinc/cp-zookeeper:6.2.0"
image: "confluentinc/cp-zookeeper:7.0.1"
container_name: zookeeper
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000

broker:
image: "confluentinc/cp-kafka:6.2.0"
image: "confluentinc/cp-kafka:7.0.1"
container_name: broker
ports:
- '9092:9092'
Expand All @@ -28,7 +28,7 @@ services:
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 100

schema-registry:
image: "confluentinc/cp-schema-registry:6.2.0"
image: "confluentinc/cp-schema-registry:7.0.1"
container_name: schema-registry
depends_on:
- zookeeper
Expand All @@ -40,7 +40,7 @@ services:
SCHEMA_REGISTRY_KAFKASTORE_BOOTSTRAP_SERVERS: broker:29092

ksqldb:
image: confluentinc/ksqldb-server:0.21.0
image: confluentinc/ksqldb-server:0.23.1
container_name: ksqldb
ports:
- "8088:8088"
Expand All @@ -56,7 +56,7 @@ services:
KSQL_KSQL_HIDDEN_TOPICS: '^_.*,default_ksql_processing_log'

kafka-connect:
image: confluentinc/cp-kafka-connect-base:6.2.0
image: confluentinc/cp-kafka-connect-base:7.0.1
container_name: kafka-connect
ports:
- "8083:8083"
Expand Down Expand Up @@ -98,7 +98,7 @@ services:
sleep infinity
control-center:
image: confluentinc/cp-enterprise-control-center:6.2.0
image: confluentinc/cp-enterprise-control-center:7.0.1
container_name: control-center
depends_on:
- broker
Expand Down
7 changes: 2 additions & 5 deletions telegram-bot-carparks/telegram_bot_demo.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ docker exec -it ksqldb bash -c 'echo -e "\n\n⏳ Waiting for ksqlDB to be availa

image::images/overview.png[]

image::images/stream-lineage.jpg[]


== Building a Telegram bot in Go

Expand Down Expand Up @@ -213,11 +215,6 @@ SELECT LATEST_TS,

=== ksqlDB table scan

[source,sql]
----
SET 'ksql.query.pull.table.scan.enabled' = 'true';
----

[source,sql]
----
SELECT NAME,
Expand Down

0 comments on commit 9e27255

Please sign in to comment.