What is Kubernetes in simple words? Why use it?
What does Kubernetes do: Kubernetes is a platform for managing multiple containers running across multiple hosts. Like containers, it is designed to run anywhere, including on-prem, private, public cloud, and even in the hybrid cloud. In this article, I have tried…
How to setup .gitignore file
The role of .gitignore file is to ignore the changes of the specified file or folder. Say for example if you don’t want to track certain files and their changes throughout the life cycle of the project (example below), we can…
Why Kubernetes deprecated docker and what next?
Recently, Kubernetes announced it will deprecate Docker as the container runtime in the forthcoming releases after Kubernetes 1.20. As per the official documentation it is currently planned for the 1.22 release in late 2021. This news caused a big noise in…
How to Setup SonarQube locally on Mac
SonarQube is an open platform for managing continuous inspection of the code quality, which can locate potential errors in the codebase. It currently supports more than 20+ programming languages including support on C#, JavaScript, C/C++, TypeScript, Go, Python, etc., and other…
How to Install Hive on Mac with Homebrew
Hive is a data warehouse tool based on Hadoop for data extraction, transformation, and loading. This is a mechanism that can store, query, and analyze large-scale data stored in Hadoop. In this article, I will take you through how to Install…
How to Install Hadoop on Mac with Homebrew
In this article, I will take you through step by step on how to easily install Hadoop 3.3.0 on a mac OS – Big Sur (version 11.2.1) with HomeBrew for a single node cluster in pseudo-distributed mode. Install Hadoop on Mac…
What is the difference between Hot Warm and Cold data storage?
At present Data Engineering has become so popular and it is acting as the backbone for many companies like Google, Uber, Amazon, Tesla, etc. Also, companies are finding more ways to get meaningful insights from the data to prevent threats, understand…