🔥 Tech Blips #22.5

In this technology newsletter: Four Key Metrics, ArgoCD, Testcontainers and GraalVM.

🔥 Tech Blips #22.5
Four Key Metrics - Elite Performers
Tech Blips is a technology newsletter for CTOs, tech leads, software architects and software engineers - in short, for all technology enthusiasts!

Every month I try to summarise some techniques, tools, languages and frameworks or platforms on the cloud and web horizon that are worth taking a look at.

TL;DR in this technology newsletter:

Four Key Metrics / DORA Metrics

Techniques / Trial

DORA Website

Over six years of research, the DevOps Research and Assessment (DORA) team has identified four key metrics to measure software delivery performance:

  • Deployment frequency: How often an organization successfully releases to production
  • Lead Time for Changes: The amount of time it takes a commit to get into production
  • Change Failure Rate: The percentage of deployments causing a failure in production
  • Time to Restore Service: How long it takes an organization to recover from a failure in production

Researchers found that only these four key metrics makes a difference between low, medium and high performers.

The difference between elite, high, medium and low performers
Introduction into the four key metrics and its visualisation project by Google

ArgoCD

Tools / Adopt

ArgoCD Website

Argo CD is a declarative GitOps continuous delivery tool for Kubernetes that reads your environment configuration (either as Helm Chart, kustomize files, jsonnet or plain yaml files) from your Git repository and applies it to your Kubernetes namespaces.

ArgoCD Screenshot
ArgoCD intro

Testcontainers

Languages & Frameworks / Adopt

Testcontainers Website

Testcontainers is a (Java, Go, .NET, Node, Python and Rust) library that supports unit tests, providing lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a Docker container.

GitHub - testcontainers/testcontainers-java: Testcontainers is a Java library that supports JUnit tests, providing lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a Docker container.
Testcontainers is a Java library that supports JUnit tests, providing lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a Docker containe...
Testcontainers for Java
Testcontainers - From Zero to hero

GraalVM

Platforms / Trial

GraalVM Website

GraalVM is a Java VM and JDK based on HotSpot/OpenJDK, implemented in Java. It supports additional programming languages and execution modes, such as ahead-of-time compilation of Java applications for fast startup and low memory footprint.

Landing Page Illustration of GraalVM
GitHub - oracle/graal: GraalVM: Run Programs Faster Anywhere
GraalVM: Run Programs Faster Anywhere :rocket:. Contribute to oracle/graal development by creating an account on GitHub.
GitHub Repository of GraalVM

The use of GraalVM offers the following added values:

High Performance
GraalVM's powerful JIT compiler produces optimised native machine code that runs faster, produces less garbage, and consumes less CPU thanks to a set of advanced compiler optimisations and aggressive and sophisticated inlining techniques. The result is applications that run faster and consume fewer resources - lowering cloud and infrastructure costs.

AOT Native Image Compilation
Ahead-of-time compiled applications have a small footprint and launch in milliseconds, so they deliver peak performance without a warm-up period.

Pologlot Programming
GraalVM allows users to write polyglot applications that seamlessly pass values from one language to another using the Truffle language implementation framework.