-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Migration to replicated event sourcing #1171
Conversation
2994503
to
7b6ebad
Compare
Completed this with integration tests and reference docs. Ready for final review, but leaving as draft until Akka is released. |
7b6ebad
to
81b00fd
Compare
81b00fd
to
2116798
Compare
akka-projection-grpc/src/main/scala/akka/projection/grpc/internal/EventPusher.scala
Show resolved
Hide resolved
case None => env | ||
case Some(metadata) => env.withMetadata(metadata) | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possible optimization: check if it is the default non-transform and return identity Flow for that as an outer if-else so that it can be cost free when not transforming
This requires akka/akka#32438
I have tried it with replicated/shopping-cart-service-scala, and I will try to add an integration test.