Close

Apache Kafka

Apache Kafka is an open-source distributed streaming platform developed by the Apache Software Foundation.

Welcome to the World of Apache Kafka: An Introduction to Distributed Event Streaming

Welcome to the World of Apache Kafka: An Introduction to Distributed Event Streaming

Apache Kafka is an open-source distributed streaming platform designed to efficiently handle high volumes of real-time data. It is used to build real-time data pipelines and streaming applications and is often used when large amounts of data need to be processed in real-time. Kafka is based on a publish-subscribe model, […]

Devamını Oku

What Is Debezium?

What Is Debezium?

Debezium is an open-source distributed platform for change data capture (CDC). It provides a scalable and reliable way to capture and stream changes from databases (such as MySQL, PostgreSQL, and MongoDB) to event streams in Apache Kafka. Debezium can track changes to data in real-time, making that data available for […]

Devamını Oku

The Power of Message Brokers in Modern Architecture

The Power of Message Brokers in Modern Architecture

How to Choose the Right Message Broker for Your Application If you are developing a distributed application that relies on asynchronous communication between its components, you might need a message broker to handle the data flow. A message broker is a software module that acts as an intermediary between different […]

Devamını Oku

Exploring the Full Spectrum of AWS Services

Exploring the Full Spectrum of AWS Services

I use Amazon as a cloud service in my new Java/Kotlin projects. I couldn’t easily find a complete list of AWS modules. I was able to create this shortlist as a result of the reviews. Compute   EC2 Virtual Private Servers Lightsail Amazon’s hosting provider (VPS, DNS, storage) Lambda Functions […]

Devamını Oku

Zipkin

Zipkin is a distributed tracing system.

Zipkin is a distributed tracing system. It helps gather timing data needed to troubleshoot latency problems in service architectures. Features include both the collection and lookup of this data. If you have a trace ID in a log file, you can jump directly to it. Otherwise, you can query based […]

Devamını Oku

RabbitMQ vs Kafka vs ActiveMQ: What are the differences?

RabbitMQ vs Kafka vs ActiveMQ: What are the differences?

RabbitMQ, Kafka, and ActiveMQ are all messaging technologies that provide asynchronous communication and decouple processes (detaching the sender and receiver of a message). They are called message queues, message brokers, or messaging tools. RabbitMQ, Kafka, and ActiveMQ all have the same primary purpose but can do their jobs differently. Developers describe ActiveMQ as “A message […]

Devamını Oku

Streaming Now: Debezium 1.0 Final Is Out

Streaming Now: Debezium 1.0 Final Is Out

Debezium is an open-source distributed platform that turns your existing databases into event streams so that applications can see and respond almost instantly to each committed row-level change in the databases. Debezium is built on top of Kafka and provides Kafka Connect compatible connectors that monitor specific database management systems. Debezium records the history […]

Devamını Oku

Enabling Dynamic Messaging in the Cloud: Spring Cloud Bus

Enabling Dynamic Messaging in the Cloud: Spring Cloud Bus

Spring Cloud Bus links nodes of a distributed system with a lightweight message broker. This can then broadcast state changes (e.g., configuration changes) or other management instructions. AMQP and Kafka broker implementations are included in the project. Alternatively, any Spring Cloud Stream binder on the classpath will work out of the box […]

Devamını Oku

Spring Cloud Stream: The Future of Distributed Messaging and Stream Processing

Java

Spring Cloud Stream is a framework for building highly scalable event-driven microservices connected with shared messaging systems. The framework provides a flexible programming model built on already established and familiar Spring idioms and best practices, including support for persistent pub/sub semantics, consumer groups, and stateful partitions. Binder Implementations Spring Cloud […]

Devamını Oku

Creating event-driven microservices: the why, how and what

Creating event-driven microservices: the why, how and what

This talk discusses the benefits of using an event-driven architecture for microservices and how Apache Kafka can facilitate this approach. An event-driven architecture involves using events as the system’s backbone, with microservices communicating with each other by producing and consuming events. This can be more efficient than REST APIs, as […]

Devamını Oku