Kafka Series - 1 Setting up kafka on local machine

According to Kafka website, “Apache Kafka is an open-source distributed event streaming platform used by thousands of companies for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications” Before diving into how kafka works and how to configure it for your specific use case, we will learn as part of this blog on how to bring up a kafka cluster on a local dev machine along with zookeeper and publishing-consuming events using kafka-console commands....

September 27, 2023 · 3 min · 522 words · Bhushan Sonawane

Dockerising Node.js Application

In this blog we will take a look how to dockerise a node.js application. In last blog we saw how we can create a docker image for static html pages. Checkout that blog here if you haven’t as it also explains basics of docker and docker images in general which will be helpful here. This blog is a beginners guide on how to create a docker image for node.js based application....

April 30, 2023 · 4 min · 787 words · Bhushan Sonawane

Creating docker image for static HTML using Nginx

In this blog we will take a look at how to create and deploy static html with nginx as base image This blog is a beginners guide on how to create a basic docker image using nginx as base image which will help understand some of the basic concepts of docker. Before diving into the topic let’s understand some basics about docker and nginx Docker From Docker Documentation - Docker is an open platform for developing, shipping, and running applications....

April 15, 2023 · 5 min · 1021 words · Bhushan Sonawane