Replies: 1 comment
-
https://developers.google.com/protocol-buffers/docs/proto3#oneof Grpc service to get events |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Pattern in reference: https://microservices.io/patterns/data/transactional-outbox.html
Is the outbox pattern a pattern that is feasible or make sense using with marten? I was going to keep it simple for now and not use a connector (i.e. https://debezium.io/documentation/reference/connectors/postgresql.html) and be able to poll for newer events at least to have something working.
I initially went down the path of using the event store for the outbox pattern, but when it came to manually fetching the stream, I was hoping that I can get events after a given timestamp. What I notice is that the fetch stream gets beginning of the stream to the given timestamp.
So then, I was thinking what that would look like with the document store, but it seems like different events would not store in the same table.
Thanks in advance! Feel free to challenge and guide my direction.
Beta Was this translation helpful? Give feedback.
All reactions