Being Part of the Quarkus Journey: One of the First 1,000 Contributors

In late 2019, the Java world was buzzing with a new name: Quarkus. Promising “Supersonic Subatomic Java,” it aimed to fix the long startup times and heavy memory usage that had plagued traditional Java applications in the age of containers and serverless. At that time, Quarkus was still in its BETA phase, but the vision was clear. It wasn’t just another framework; it was a fundamental rethink of how we build Java applications for Kubernetes. ...

Contributing to the Data Streaming Revolution: Debezium

In the world of modern data architectures, Change Data Capture (CDC) has become a cornerstone for building reactive, event-driven systems. At the heart of this movement is Debezium, a distributed platform that turns your existing databases into event streams. Joining the Stream In July 2020, I had the opportunity to contribute to the Debezium project. My involvement came at a time when I was deeply immersed in building real-time data pipelines and realized the power of capturing row-level changes without overloading the source databases. ...

Floci — AWS Local Emulator

Floci is a local AWS service emulator — a drop-in replacement for LocalStack’s community edition that requires no auth token, has no usage limits, and is MIT-licensed. The name comes from cirrocumulus floccus, a small, fluffy cloud formation. That’s the design goal: minimal, lightweight, and always free. GitHub: github.com/hectorvent/floci Native Floci vs LocalStack Metric Native Floci LocalStack Advantage Startup Time ~24 ms ~3,300 ms 138× faster Idle Memory ~13 MiB ~143 MiB 91% less Lambda Latency 2 ms avg 10 ms avg 5× faster Lambda Throughput 289 req/s 120 req/s 2.4× faster Docker Image Size ~90 MB ~1.0 GB 11× smaller Price Free Forever Auth Token Req. $0 / No Auth Supported AWS Services SSM · SQS · SNS · S3 · DynamoDB · DynamoDB Streams · Lambda · API Gateway REST · API Gateway v2 · IAM · STS · Cognito · KMS · Kinesis · Secrets Manager · CloudFormation · Step Functions · ElastiCache · RDS · EventBridge · CloudWatch Logs · CloudWatch Metrics ...

Introducing Floci: The Fast, Free, and Open-Source AWS Emulator

Local development against AWS services has always been painful. You either run real AWS (expensive, slow, requires an internet connection) or use an emulator. For years, LocalStack was the go-to choice — until they required auth tokens and locked down their community edition in early 2026. That gap is exactly what Floci fills. Key Numbers: Native Floci vs LocalStack Metric Native Floci LocalStack Advantage Startup Time ~24 ms ~3,300 ms 138× faster Idle Memory ~13 MiB ~143 MiB 91% less Lambda Latency 2 ms avg 10 ms avg 5× faster Lambda Throughput 289 req/s 120 req/s 2.4× faster Price Free Forever Auth Token Req. $0 / No Auth What Is Floci? Floci is a free, open-source local AWS service emulator written in Java using Quarkus and compiled to a native binary via GraalVM Mandrel. It runs as a single process on port 4566 — the same port LocalStack uses — so switching requires zero changes to your existing code or tooling. ...

Vaadin Logo

Workshop: Building Modern and Scalable Web Applications with Java

Workshop presented at PUCMM — November 2023. Co-presented with Freddy Peña. Overview In this workshop, we explored how the Java ecosystem has evolved to allow developers to build modern, highly interactive, and scalable web applications without the traditional complexity of managing separate frontend and backend stacks. The focus was on Vaadin Flow, a framework that enables building web UIs 100% in Java, running on the server side while automatically handling the synchronization with the browser. ...

Quarkus - Supersonic Subatomic Java

Quarkus: Supersonic Subatomic Java

Talk given at JConf Dominicana — July 2019 What Is Quarkus? Quarkus is a Kubernetes-native Java stack designed for GraalVM and OpenJDK HotSpot, crafted from the best Java libraries and standards. Created by Red Hat License Apache License v2.0 Version at time of talk 1.0.0.CR2 The tagline says it all: Supersonic Subatomic Java — startup times measured in milliseconds, memory footprints measured in megabytes. GraalVM — The Engine Behind Native Compilation GraalVM is a universal virtual machine capable of running JavaScript, Python, Ruby, R, Java, all JVM-based languages, and LLVM-based languages like C and C++. ...

Eclipse Vert.x logo

Introduction to Eclipse Vert.x: Reactive Programming on the JVM

Talk given at ITLA Santiago — September 2018 What Are Reactive Systems? Modern applications demand a new architecture. Reactive systems are designed to be: More flexible and adaptable to change Loosely coupled — components interact without tight dependencies Scalable — from a single node to thousands Fault tolerant — they handle failures gracefully instead of crashing Highly responsive — they respond in a timely manner, always The Reactive Manifesto The Reactive Manifesto defines four core traits that every reactive system must have: ...