27 lines
2.1 KiB
Plaintext
27 lines
2.1 KiB
Plaintext
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 Stream supports a variety of binder implementations and the following table includes the link to the GitHub projects.
|
|
|
|
* https://github.com/spring-cloud/spring-cloud-stream-binder-rabbit[RabbitMQ]
|
|
* https://github.com/spring-cloud/spring-cloud-stream-binder-kafka[Apache Kafka]
|
|
* https://github.com/spring-cloud/spring-cloud-stream-binder-kafka/tree/master/spring-cloud-stream-binder-kafka-streams[Kafka Streams]
|
|
* https://github.com/spring-cloud/spring-cloud-stream-binder-aws-kinesis[Amazon Kinesis]
|
|
* https://github.com/GoogleCloudPlatform/spring-cloud-gcp/tree/main/spring-cloud-gcp-pubsub-stream-binder[Google PubSub _(partner maintained)_]
|
|
* https://github.com/SolaceProducts/solace-spring-cloud/tree/master/solace-spring-cloud-starters/solace-spring-cloud-stream-starter#spring-cloud-stream-binder-for-solace-pubsub[Solace PubSub+ _(partner maintained)_]
|
|
* https://aka.ms/spring/docs#spring-cloud-stream-binder-for-azure-event-hubs[Azure Event Hubs _(partner maintained)_]
|
|
* https://aka.ms/spring/docs#spring-cloud-stream-binder-for-azure-service-bus[Azure Service Bus _(partner maintained)_]
|
|
* https://github.com/alibaba/spring-cloud-alibaba/wiki/RocketMQ-en[Apache RocketMQ _(partner maintained)_]
|
|
|
|
The core building blocks of Spring Cloud Stream are:
|
|
|
|
* *Destination Binders*: Components responsible to provide integration with the external messaging systems.
|
|
* *Destination Bindings*: Bridge between the external messaging systems and application provided Producers and Consumers of messages (created by the Destination Binders).
|
|
* *Message*: The canonical data structure used by producers and consumers to communicate with Destination Binders (and thus other applications via external messaging systems).
|
|
|
|
|