'Consuming azure event hub events in AWS

I'm trying to consume events that are published to a Azure event hub hosted by a third party, the service that consumes these events is an AWS based architecture.

What is the best way to consume event hub messages in aws services?

Would my only options be:

  • Set up an EC2 with an application that continuously processes the event hub messages

  • Have a scheduled lambda that processes messages, picking up where the last invocation left off

Both options using this guide: https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-node-get-started-send

Is there any other way to accomplish this? The goal would be to somehow have event hub trigger a service like lambda directly.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source