-
Notifications
You must be signed in to change notification settings - Fork 22
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
Implement missing stage types from alpakka-kafka project #36
Comments
I wrote some short overview about how current scala implementation uses buffering and separate actor for stages implementation here It looks like we will need to implement something similar in our project. This is going to be a series of PRs with
The one more thing I noticed in scala imlementation is that |
@IgorFedchenko let's add the following stages next so we can do a beta release of this package:
|
@Aaronontheweb So you want to implement some of Transactional Producers? |
Ok, got it - thank you! |
All right, now all non-transactional stages in review, and transactional producers are almost implemented, but blocked until #85 is resolved. |
The rest of the transactional stages ( |
@IgorFedchenko so only 3 more stages left? |
@Aaronontheweb Technically yes. But the thing is that transactional sources are ment to be used in pair with transactional producers. And transactional producers are based on But if I will not have any other work to do, I will work on this, so that after Confluent driver will fix their issue we could just make minor changes in code and make it all work. |
There are lots of consumer and provider stage types already implemented in this project: https://github.com/akka/alpakka-kafka
We need to implement consumers from here:
https://doc.akka.io/docs/alpakka-kafka/current/consumer.html
And producers from here:
https://doc.akka.io/docs/alpakka-kafka/current/producer.html
Some of them are going to be based on brand new
flowWithContext
-type stages implemented, so untilAkka.NET v1.4.0-beta2
will be released, this can be based on nightly Akka builds.This is not critical to implement all stages from alpakka right now, so the concrete must-have list to implement will be specified/discussed later.
TODO List
Consumers
Transactional consumers
Producers
Transactional producers
The text was updated successfully, but these errors were encountered: