felipegutierrez / explore-akka

This project is a demo of an Akka-http and Akka-cluster running on top of Kubernetes (minikube) and with its own Docker image created by sbt-native-packager. It also includes several other examples of the Akka Classic and Typed (essential, persistence, remote, cluster, stream, HTTP, serialization (Srapy-JSON, Avro, Kryo, protobuffer)).
Apache License 2.0
2 stars 2 forks source link

Create a join in Akka stream #17

Closed felipegutierrez closed 3 years ago

felipegutierrez commented 3 years ago

create a join in akka stream and answer the stackoverflow question https://stackoverflow.com/q/65705956/2096986

I am quite new to Akka Streams, whereas I have some experience with Kafka Streams. One thing it seems lacking in Akka Streams is the possibility to join together two different streams.

Kafka Streams allows joining information coming from two different streams (or tables) using the messages' keys.

Is there something similar in Akka Streams?