Basic concepts in Apache Kafka

To work with Apache Kafka, you need to understand some basic concepts about: Producer Consumer Broker Cluster Topic Topic Partitions Partition Offset Consumer Group Producer Producers are applications that produce data and send data to Apache Kafka Server. This data will be formatted messages, sent… Read More

Trait in RAML

Trait in RAML is used to define the same elements in different request URIs so that they can be reused. It’s like common class, common method in Java! For example, I have 2 request URIs with the following definitions:

In these two requests, the… Read More