First start the stack:
bin/install.sh # download connect plugins
docker compose up -d # boot the system
docker compose logs migration -f # observe the migrationAfter a few minutes, there should be data in the kafka
bucket. You can authenticate with
minio:minio123.
Once data is available, you can use the notebook, to visualize it.
While you are waiting, you can inspect the system. For example try some of the below commands.
docker compose exec kafka kafka-topics.sh \
--bootstrap-server kafka:9092 --listdocker compose exec kafka kafka-console-consumer.sh \
--bootstrap-server localhost:9092 --topic mqttbin/ksql.sh -e "print 'device-parameter';"docker compose exec kafka kafka-consumer-groups.sh \
--bootstrap-server localhost:9092 --all-groups --describe