Outbox pattern maybe lock in OutboxMessages table #32
Answered
by
kgrzybek
mohammad1111
asked this question in
Q&A
-
If the requests are too many. May cause a lock in the OutboxMessages table and causes slowness in other tables. |
Beta Was this translation helpful? Give feedback.
Answered by
kgrzybek
Feb 22, 2021
Replies: 1 comment
-
If you experience performance issues, you can use two tables approach:
Then you can use the last processed event number and partition key to increase performance and allow parallel processing. More info you can find here: https://event-driven.io/en/outbox_inbox_patterns_and_delivery_guarantees_explained/ |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mohammad1111
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you experience performance issues, you can use two tables approach:
Then you can use the last processed event number and partition key to increase performance and allow parallel processing. More info you can find here: https://event-driven.io/en/outbox_inbox_patterns_and_delivery_guarantees_explained/