COUCHBASE_Blog

Couchbase

Structured, Semi-structured and Unstructured data Big Data includes huge volume, high velocity, and extensible variety of data. These are 3 types: Structured data, Semi-structured data, and Unstructured data. Structured data is a data whose elements are addressable for effective analysis. It has been organised into a formatted repository that is typically a database. Example: Relational […]

Helm-Basics

Installing and Using HELM, the Package Manager for Kubernetes

Helm is a package manager for Kubernetes that allows developers and operators to more easily package, configure, and deploy applications and services onto Kubernetes clusters. What Does Kubernetes Helm Solve? Kubernetes is known as a complex platform to understand and use. Kubernetes Helm helps make Kubernetes easier and faster to use: Increased productivity – developers […]

WINDOWS-2016-DOCKER

Identifying and Resolving Deadlocks in Azure SQL Database

Deadlocks in Azure SQL Database Recently we were working with Azure Logic Apps to invoke Azure Functions.By Default, Logic App runs parallel threads and we didn’t explicitly control the concurrency and left the default values. So Logic App invoked several concurrent threads which in turn invoked several Azure Functions.The problem was Azure Functions invoked Database […]

Azure-Dashboard-1 (1)

Grafana vs Azure Dashboards – Which One to Use & When?

Grafana is an open-source, general purpose dashboard and graph composer, which runs as a web application. You can monitor Azure services and applications from Grafana using the Azure Monitor data source plugin. The plugin gathers application performance data collected by the Application Insights SDK as well as infrastructure data provided by Azure Monitor. You can then display this data […]

spring_tool_bg

Using Spring Initializr for Bootstrapping REST Services

Spring Initializer – using Java and Maven Spring Initializr is a web tool which is provided by Spring on official site https://start.spring.io/ We can create Spring Boot project by providing project details. In the below example, we added the springboot-starter-web dependency to write REST Endpoints. After providing the Group, Artifact, Dependencies, Build Project, Platform and […]

spring_tool_bg

Spring Boot – Part1

Spring Boot Spring Boot is an open source Java-based framework used to create Micro Services. It is used to build stand-alone and production ready spring applications. What is Micro Service? Micro Service is an architecture that allows the developers to develop and deploy services independently. Each service running has its own process, and this achieves […]