-
Notifications
You must be signed in to change notification settings - Fork 746
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
Optional use QueueSubscribe for NATS events source #3131
Conversation
Wouldn't it make more sense to make this the default, and switch the active-active failover? |
in some cases this may cause unpredictable effects
|
@sysr9 makes sense, if we are using the QueueGroup how can we make it use active-active HA mode? Or should that be a different PR? |
in my setup i have global NATS bus and multiple clusters with argo events deployed, now i need global events for all clusters |
// Queue is the name of the queue group to subscribe as if specified. Uses QueueSubscribe | ||
// logic to subscribe as queue group. If the queue is empty, uses default Subscribe logic. | ||
// +optional | ||
Queue string `json:"queue" protobuf:"bytes,9,opt,name=queue"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use *string
, all the rest looks good to me, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
switched to *string
Signed-off-by: sysr9 <[email protected]>
Signed-off-by: sysr9 <[email protected]>
Signed-off-by: sysr9 <[email protected]>
Signed-off-by: sysr9 <[email protected]>
Signed-off-by: sysr9 <[email protected]>
…1.0 (argoproj#3138) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Signed-off-by: sysr9 <[email protected]>
…rgoproj#3139) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Signed-off-by: sysr9 <[email protected]>
…proj#3140) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Signed-off-by: sysr9 <[email protected]>
…goproj#3141) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Signed-off-by: sysr9 <[email protected]>
Signed-off-by: sysr9 <[email protected]>
…goproj#3113) Signed-off-by: florian-feicht <[email protected]> Signed-off-by: sysr9 <[email protected]>
Signed-off-by: sysr9 <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Signed-off-by: sysr9 <[email protected]>
resolves #2936
Checklist:
adds queue parameter to NATS EventSource to implement queue-based architecture