Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreOn behalf of the team, I am pleased to announce the release of the first milestone of the Spring Cloud Stream Brooklyn release train. Spring Cloud Stream Brooklyn.M1 is available for use in the Spring Milestone repository, a detailed description of its features can be found in the reference documentation. Release notes are available here and include important information on the migration path.
Spring Cloud Stream Brooklyn.M1 succeeds Spring Cloud Stream 1.0. The change in the naming scheme reflects the project's structural changes, in particular switching from a monolithic structure, where the core components and the binder implementations are contained together, to a more decentralized one. In the new structure, the core and binder implementations are separate projects, with their own release cadence. A release train BOM aggregates the release components together and manages their versions.
The benefits of this approach are twofold. On one hand, it allows adding new features and fixes to individual implementations at a faster rate. On the other, it lowers the barrier for creating and developing new binders, which as they mature, can become part of a future release train themselves by simply being added to the release train BOM. Finally, it is only fitting for a project that targets the development of microservices not to be a monolith itself!
The following components are part of the Brooklyn.M1 release train:
Let's see what the new release brings.
Spring Cloud Stream Brooklyn.M1 brings some major upgrades to existing components, and introduces new features targeted towards programming model, application interoperability, and the overall developer experience.
The Apache Kafka Binder has been upgraded to use the Kafka new consumer library (introduced with version 0.9), based on Spring Kafka 1.0.x and Spring Integration Kafka 2.0.x, and currently supports Apache Kafka 0.9. The use of the new client library adds a few benefits:
spring.cloud.stream.instanceIndex
set. The new consumer library will take care of assigning partitions to all the instances which are part of a given consumer group, and rebalancing when new instances join or leave - useful especially for scaling consumer applications at runtime. For users that wish to still use a static partition allocation scheme, we will support it by the final release ( spring.cloud.stream.instanceIndex
will still be required in that case).The abstractions of Spring Kafka and Spring Integration Kafka will also make adding support for Apache Kafka 0.10 easier too, and it is expected that the final release will support Kafka 0.10 as well.
In addition to the Spring Integration application model and the @StreamListener
present in version 1.0, this release introduces support for reactive APIs, based on Project Reactor. This feature requires the use of Java 8.
Applications can add the spring-cloud-stream-reactive
module as a dependency, enabling the use of reactive types directly as the programming abstraction. In the context of data processing, a functional and reactive programming model is extremely attractive because of the declarative and expressive nature of a reactive composition API, which lets the developer focus on what to do, not how. On the other hand, while processing messages individually is a classic paradigm for enterprise integration, when it comes to stream processing, a developer also needs to think about processing a continuous inbound stream of messages, and describe operations that make sense only in that context, like windowing - by time, or count.
Here is an example of a reactive processor for counting words (for determining the most popular tags in the last 5 seconds, every second).
@StreamListener
@Output(Processor.OUTPUT)
public Flux<WordCount> count (@Input(Processor.Input) Flux<String> flux) {
return flux.window(ofSeconds(5), ofSeconds(1))
.flatMap(window ->
window.groupBy(word -> word)
.flatMap(group -> group.reduce(0, (count,word) -> count + 1)
.map(count -> new WordCount(group.key(), count))));
}
Additionally, the use of a reactive API allows to integrate with other reactive components, such as reactive web controllers. For a more comprehensive overview of upcoming reactive support in Spring, watch Stephane Maldini and Rossen Stoyanchev's keynote at Spring One Platform 2016, one of the other Reactive talks at Spring One Platform, or read Dave Syer's blog series.
Spring Cloud Stream Brooklyn.M1 is also adding support for Avro and schema evolution. Starting with this release, applications can include the spring-cloud-stream-schema
module, which contains MessageConverters
with Apache Avro.
The Apache Avro serializers support both fixed schemas, as well as dynamically interacting with a schema registry. You can make your applications interact with a schema registry, by simply adding @EnableSchemaRegistryClient
to your application and setting the application/*+avro
content type on your outbound channels, so that data is sent in Apache Avro format. With this, publisher applications will register schemas for the messages they send, and pass metadata about the subject and version to consumers. Based on that, a consumer can retrieve the writer's schema from the registry and deserialize the messages it received, even if the schema wasn't known to them beforehand.
This is an important feature for microservice evolution, as it allows the different components of your system to upgrade or change their schemas and data formats, without breaking the existing ones.
The release includes a schema registry server and a general-purpose schema registry client. An implementation of the schema registry client for the Confluent schema registry is available as well.
Special thanks to Vinicius Carvalho for contributing the schema evolution support!
In the following weeks, we will continue the development of the Brooklyn release train, with a goal of producing a release candidate. As it is customary with milestones, some API changes are to be expected until the RC. Here are a few intended additional features before the final release:
And, as always, we welcome feedback: either in GitHub, on Stack Overflow, or on Twitter.