Last Week in Stream Data Integration & Stream Analytics – 12.6.2019
This is the 161st edition of my blog series blog series around Stream Data Integration and Stream Analytics! As every week I was also updating the following two lists with the presentations/videos of the current week: Presentations from SlideShare Videos from YouTube As usual, find…
Last Week in Stream Data Integration & Stream Analytics – 4.6.2019
This is the 160th edition of my blog series blog series around Stream Data Integration and Stream Analytics! As every week I was also updating the following two lists with the presentations/videos of the current week: Presentations from SlideShare Videos from YouTube As usual, find…
Last Week in Stream Data Integration & Stream Analytics – 29.5.2019
This is the 159th edition of my blog series blog series around Stream Data Integration and Stream Analytics! As every week I was also updating the following two lists with the presentations/videos of the current week: Presentations from SlideShare Videos from YouTube As usual, find…
Last Week in Stream Data Integration & Stream Analytics – 21.5.2019
This is the 158th edition of my blog series blog series around Stream Data Integration and Stream Analytics! As every week I was also updating the following two lists with the presentations/videos of the current week: Presentations from SlideShare Videos from YouTube As usual, find…
Last Week in Stream Data Integration & Stream Analytics – 15.5.2019
This is the 157th edition of my blog series blog series around Stream Data Integration and Stream Analytics! As every week I was also updating the following two lists with the presentations/videos of the current week: Presentations from SlideShare Videos from YouTube As usual, find…
docker compose on multiple environments
docker-compose is a pretty cool tool that allows you to bootstrap and run multiple docker containers with 1 configuration file Below is an example docker-compose file for staring a 3 node confluent kafka cluster —version: ‘2’services: zookeeper: image: confluentinc/cp-zookeeper:latest network_mode: host environment: ZOOKEEPER_CLIENT_PORT: 32181 ZOOKEEPER_TICK_TIME:…
Apache Kafka installation on Linux
In the following post, I will show how to install Apache Kafka on a Linux VM. Apache Kafka is an open-source stream processing platform developed by the Apache Software Foundation written in Scala and Java. First of all we need a Linux VM (e.g Centos 7) with…