Spring Cloud Stream: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 29: Line 29:


Communication between applications follows a publish-subscribe model, where data is broadcast through shared destinations (topics).  Communicating through shared topics rather than point-to-point queues reduces coupling between microservices.
Communication between applications follows a publish-subscribe model, where data is broadcast through shared destinations (topics).  Communicating through shared topics rather than point-to-point queues reduces coupling between microservices.
==Consumer Group==
The microservice model relies on the ability of an application to scale horizontally by increasing the number of "equivalent" components that are supposed to perform the same function and thus spread the load. However, when doing so, different instances of the service are placed in a competing consumer relationship, where only one of the instances is expected to handle a given message. Spring Cloud Stream models this behavior through the concept of a consumer group. Each consumer binding can use the <tt>spring.cloud.stream.bindings.<channelName>.group</tt> property to specify a group name. All groups that subscribe to a given destination receive a copy of published data, but only one member of each group receives a given message from that destination. By default, when a group is not specified, Spring Cloud Stream assigns the application to an anonymous and independent single-member consumer group that is in a publish-subscribe relationship with all other consumer groups.


==Destination Binding==
==Destination Binding==

Revision as of 21:34, 23 October 2018

External

Internal

Overview

Spring Cloud Stream is a framework for building highly scalable event-driven microservices connected with shared messaging systems. Spring applications use Spring Cloud Stream libraries to bind to a messaging middleware. Spring Cloud Stream builds upon Spring Boot to create standalone production-grade applications and uses Spring Integration to provide connectivity to message brokers. The applications built with Spring Cloud Stream are middleware-neutral. Instead, the application communicates with the outside world through input and output channels injected into it by Spring Cloud Stream runtime. Channels are connected to brokers through middleware-specific binder implementations.

Concepts

Binder

The component responsible to provide integration with external messaging systems. Spring Cloud Stream automatically detects and uses a binder found on the classpath. The actual destination (such as Kafka topics or RabbitMQ exchanges) it is selected at boot based on configuration (application arguments, environment variables, application.yml or application.properties).

Available binders:

Persistent Publish/Subscribe

Communication between applications follows a publish-subscribe model, where data is broadcast through shared destinations (topics). Communicating through shared topics rather than point-to-point queues reduces coupling between microservices.

Consumer Group

The microservice model relies on the ability of an application to scale horizontally by increasing the number of "equivalent" components that are supposed to perform the same function and thus spread the load. However, when doing so, different instances of the service are placed in a competing consumer relationship, where only one of the instances is expected to handle a given message. Spring Cloud Stream models this behavior through the concept of a consumer group. Each consumer binding can use the spring.cloud.stream.bindings.<channelName>.group property to specify a group name. All groups that subscribe to a given destination receive a copy of published data, but only one member of each group receives a given message from that destination. By default, when a group is not specified, Spring Cloud Stream assigns the application to an anonymous and independent single-member consumer group that is in a publish-subscribe relationship with all other consumer groups.

Destination Binding

Bridge between the external messaging system and application-provided Producers and Consumers of messages. The Producers and Consumers are created by the Destination Binders.

Interfaces

Source

Sink

Input and no output.

public interface Sink {
  String INPUT = "input";

  @Input(Sink.INPUT)
  SubscribableChannel input();
}

Processor

Channel

Input Channel

An input channel funnels received messages into the application. The implementation is transparently created by Spring Cloud Stream and injected into the application.

Output Channel

Published messages leave the application via output channels. An input channel funnels received messages into the application. The implementation is transparently created by Spring Cloud Stream and injected into the application.

Destination

The destination can be a queue, topic, or others.

Message

The canonical data structure used by Producers and Consumers to communicate with Destination Binders, and thus other applications via external messaging systems.

Message Handler

Is this the same thing as the handler method?

@StreamListener(Sink.INPUT)
public void handle(...) {
...
}

Also see @StreamListener.

Annotations

Partition

Configuration

spring.cloud.stream.bindings.input.destination

Note that in function of the dynamic binding at boot, the destination can be a Kafka topic, a RabbitMQ exchange, etc.