Multiple Flow-Control Key Per Publish #178
sancar
announced in
Q: Feature Request
Replies: 1 comment
-
|
+1000! This is essential for adhering to many external API limits in a single endpoint. |
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
Uh oh!
There was an error while loading. Please reload this page.
-
Users want to be able to combine flow control keys.
For example, suppose there are two endpoints that share the same database pool, and together they should not exceed a total parallelism of 50:
If we define two separate flow control configurations (each with parallelism: 50) for A and B, the combined usage could exceed the required limit.
Instead, we can define separate flow control keys like this:
Then, we can assign combined flow control configurations to each endpoint:
This ensures that all flow control rules sharing the "dbTransaction" key collectively stay within the parallelism: 50 limit.
Beta Was this translation helpful? Give feedback.
All reactions