-
Notifications
You must be signed in to change notification settings - Fork 262
Amqp source add #831
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
base: master
Are you sure you want to change the base?
Amqp source add #831
Conversation
looking for help with this error:
|
@ecarrara , @mwylde I saw your commits in the arguably similar standard Rabbit MQ connector (https://github.com/ArroyoSystems/arroyo/blob/master/crates/arroyo-connectors/src/rabbitmq/source.rs), I'm a bit confused about the offsets and GlobalKeyedView, could you please take a quick look? |
@stan-dot — I'm sorry this has taken so long. There are a few issues here: The error you posted about arroyo/crates/arroyo-types/src/lib.rs Line 158 in 760a8a2
so it needs to implement all of those traits (Debug + Clone + Encode + Decode + Send), but currently it jus implements Debug and Clone. You can fix this by deriving Encode and Decode (see an example here: arroyo/crates/arroyo-connectors/src/kafka/source/mod.rs Lines 47 to 51 in 760a8a2
There also appear to be some problems with results and |
thanks for response @mwylde this has been very helpful. I think I addressed the build errors in How to structure |
Fixes #806
My first contribution to the repo, I assume it has a couple of mistakes at this point, so draft for now.
I'd welcome an initial review.