Posts

Showing posts from 2021

Observability Done Right: Best Practices and Anti-Patterns for Effective System Monitoring

Image
  WHAT Observability is a concept that refers to the ability to gain insights into the behavior and performance of complex systems. In the context of software engineering, observability involves the collection, analysis, and visualization of data from software applications, infrastructure, and other components of a system. In the animal kingdom, observability plays a critical role in survival, allowing animals to monitor their surroundings, detect threats, and find food. Dolphins use echolocation to observe their surroundings. They emit high-frequency sounds that bounce off objects, allowing them to create a 3D map of their environment. Thanks for reading Knowledge Cafe! Subscribe for free to receive new posts and support my work. Subscribed WHY In today's era, architectures are becoming increasingly large, complex, and fast-paced due to the faster development and deployment of software by distributed teams with the help of DevOps, continuous delivery, and agile development methodo...

Container Patterns

Image
  Why we need Container Patterns: Due to popularity of microservices and distributed computing, containerization has become a major trend in software development.  It involves encapsulating or packaging software code and all its dependencies so that it can run uniformly and consistently on any infrastructure.  In distributed architecture which consists of many microservices, we want our microservices business focused and keep non functional aspects like security, service discovery, proxy, logging and platform configuration etc out of our microservices code, container patterns evolved.  There are 2 popular patterns: Sidecar Ambassadors Sidecar pattern:  In this pattern, we schedule a workload on the same hosts which is intended for specific things that don’t concern your application. There are various use cases for sidecar patterns like request authentication/authorization, service discovery, adding HTTPS to legacy service.  Usecase : We will d...

Distributed Transactions in Microservices

Image
  What is a distributed transaction? Microservices architecture has been very popular architecture pattern in recent time. However, one common problem is how to manage distributed transactions across multiple microservices.  When a microservice architecture decomposes a monolithic system into self-encapsulated services, it can break transactions. This means a local transaction in the monolithic system is now distributed into multiple services that will be called in a sequence. Lets try to understand this concept with hypothetical train ticket booking system. Consider below ticket booking monolith application.  In the train ticket booking example above, if a actor sends a book ticket action to a monolithic system, the system will create a  local database transaction that works over multiple database tables (account table, booking table). If any step fails, the transaction can roll back and data consistency is guaranteed by database's ACID (Atomicity, Consistency, Isol...

API Benchmarking with Gatling

Image
  What and Why Performance Measurement: The downtime of a mission-critical application can be very costly in recent time. It can lead to customer loss or financial loss. In today's world most of the web applications are built using APIs.  APIs should be functionally correct, as well as available, fast, secure and reliable. It is very important to gather the data about API performance periodically. This will give us information about health and hygiene of our application.  It doesn’t matter how beautiful your front end applications are if the API data sources take several seconds to respond or even worse if API performance is not consistent. API Performance matters very much in a world of microservices, which means the source of what a client application shows is probably being aggregated from multiple APIs behind the scenes. How to Measure API Performance: There are many tools available for performance measurement. This page list open source tools for performance measurem...

Cassandra Admin Quiz 1

Image
  Loading…

Cassandra Foundation Quiz 2

Image
  Loading…

Cassandra Foundation Quiz-1

Image
  Loading…

Cassandra DataModelling -2

Image
  Loading…

Cassandra Data modelling Quiz - Part 1

Image
Loading…

Is Java Dynamically Typed Language?

Image
  Lets understand difference between Dynamically Typed and Statically Typed Language. Dynamically Typed Language Statically Typed Language Perform variable type checking at runtime perform variable type checking at compile time Not Mandatory Need to declare the data types of your variables before you use them // Java example int roleNumber;  roleNumber = 5; // Groovy example roleNumber = 5 Dynamically typed language if not used properly it may lead to run to errors or exception due to type mismatch or typo.  Java 7 has introduced diamond operator and Lambda (Java 8) expression can infer variable types, see below example.   //Diamond Operator List<String> nameList = new ArrayList<>(); //Lambda Expr Function<String, String> convertLower= (s) -> s. toLowerCase (); Prior to Java 10, we used to declare variable like below String ...

Online Conferences to attend

Image
  There are hundreds of conferences around the world but this year many of them are online and available to everyone who is interested to join. Below is the list of conference I am interested. Some of the conferences are free and some are with entry fees.  Date of Conference Name of Conference URL 30 March -31 March Global Summit for Java Devs’21 https://java.geekle.us/ 13 Apr – 16 Apr Jpoint jpoint.ru 27-28 April DeveloperWeek Europe 2021 https://www.developerweek.com/europe/ 29-Apr Conf42 Cloud2021 https://www.conf42.com/cloud2021 4 May to 7 May Kubecon-Cloud native https://events.linuxfoundation.org/kubecon-cloudnativecon-europe/ 11 May- 12 May IBM Think https://www.ibm.com/events/think/ 20-May Apidays India 2021 https://www.apid...