You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by honkuan86 January 14, 2025
Hi,
I would like to discuss about adding Aws EventBridge support to Brighter.
I'm looking is it possible to publish events to Aws EventBridge using Brighter, since EventBridge is using a different approach than SNS (without a Topic).
Any feedbacks would be greatly appreciate. Thank you.
The text was updated successfully, but these errors were encountered:
The key thing to understand on AWS EventBridge is push vs. poll. You can poll from EventBridge, but you can't push to it, say from SNS. But, you can publish from Brighter to an SQS queue, and then EventBridge can read from that queue.
However, if we want to avoid an extra queue, we could use the HTTP interface, and put an event onto EventBridge that way.
I suspect that is what folks want - push to EventBridge without using an SQS queue.
I think we could add that as a transport. It would only really cover the producer though, as the consumer would just be an AWS queue. So it might make sense to add it into the existing AWS client as an alternative producer target. As we now let you choose between SNS and SQS, I guess it might make sense to allow you to choose Event Bridge.
Discussed in #3474
Originally posted by honkuan86 January 14, 2025
Hi,
I would like to discuss about adding Aws EventBridge support to Brighter.
I'm looking is it possible to publish events to Aws EventBridge using Brighter, since EventBridge is using a different approach than SNS (without a Topic).
Any feedbacks would be greatly appreciate. Thank you.
The text was updated successfully, but these errors were encountered: