Thank you ! Featured in Feedspot Top 60 Kubernetes Blogs

Thrilled and honored to share that our blog has made it to the list of top Kubernetes blogs, securing the 33rd position on Feedspot's curated selection. This achievement is a testament to the vibrant community we've built and the shared enthusiasm for all things Kubernetes. https://blog.feedspot.com/kubernetes_blogs/ Kubernetes, being at the forefront of container orchestration and … Continue reading Thank you ! Featured in Feedspot Top 60 Kubernetes Blogs

What do you mean by training a AI model ?

Training a model means, teaching it to perform a specific task or make predictions by learning from examples. The goal of training is to adjust the models weights and biases in a way that minimizes the error between the model's predictions and the actual outputs for the training data. The model is typically built using … Continue reading What do you mean by training a AI model ?

Demystifying the Language of Gen AI

Large Language Models (LLM) : A computer program designed to understand and generate human-like text. They are trained on massive amounts of text data, which allows them to learn the patterns and rules of human language. These models are designed to process and comprehend natural language, making them capable of tasks such as text generation, … Continue reading Demystifying the Language of Gen AI

VMs or Containers ?? How do i choose between these 2 options ?

In the world of modern IT infrastructure, the choice between containers and virtualization can be a daunting one. Each technology offers unique advantages and trade-offs, making it crucial to have a clear decision framework to guide your choice. This blog aims to help you make an informed decision that aligns with your specific needs and … Continue reading VMs or Containers ?? How do i choose between these 2 options ?

How do you pass arguments to a POD in Kubernetes ?

In Kubernetes Pod YAML files, the "command" field tells the container what to do when the pod starts, and the "args" field gives it any parameter or augments needed. This sample java project, takes 2 number as an argument and shows the output. In case of a docker image, the way to pass command and … Continue reading How do you pass arguments to a POD in Kubernetes ?

What is SLI, SLO, SLA & Error budgets in Site Reliability Engineering?

SRE is a discipline which is used to automate IT operations tasks - e.g. production system management, change management, incident response, even emergency response - that would otherwise be performed manually by systems administrators (sysadmins).  It can help organizations to improve the reliability of their software systems.  SRE uses SLIs, SLOs, error budgets, and SLAs … Continue reading What is SLI, SLO, SLA & Error budgets in Site Reliability Engineering?

What is Epoch time and how do you get it in Java?

Epoch time, also known as Unix time or POSIX time, is a system for representing timestamps as the number of seconds that have elapsed since a specific reference point called the "epoch." The epoch is a fixed point in time from which all other timestamps are measured. In the context of Unix-based operating systems and … Continue reading What is Epoch time and how do you get it in Java?

How do you list all the PODs and containers in your Kubernetes cluster

To list all pods and containers use the below command kubectl get pods -o=custom-columns=POD:.metadata.name,CONTAINERS:.spec.containers[*].name To list all pods and containers in a given namespace use the below command kubectl get pods -o=custom-columns=POD:.metadata.name,CONTAINERS:.spec.containers[*].name -n <<namespace>> Output of the above command will show PODs and the containers against it in a tabular format. Details on what are … Continue reading How do you list all the PODs and containers in your Kubernetes cluster

What is a spring bean and is it different from Java class?

Spring beans and Java classes are both objects in Java, but they have different characteristics and are used for different purposes. A Spring bean is an object that is managed by the Spring Framework. This means that the Spring Framework is responsible for creating, configuring, and destroying the bean. Spring beans are typically used to … Continue reading What is a spring bean and is it different from Java class?

What is data lineage and why is it relevant?

Data lineage refers to the process of tracing the movement of data from its origin and the different stages of transformation it has to go through over a period of time before reaching its final destination. It provides a comprehensive view of the data source, its transformations, and its final destination within the data pipeline. … Continue reading What is data lineage and why is it relevant?