有没有办法将数据从 AWS Kinesis 发送到 Azure 事件中心?

发布于 2025-01-13 22:18:40 字数 177 浏览 4 评论 0原文

我的公司正在对一些流数据进行 POC,其中一项任务是将数据从 AWS Kinesis 发送到 Azure 事件中心。

以前有人尝试过做这样的事情吗?

我正在考虑使用 lambda 函数来监听 kinesis firehose 并将数据发送到事件中心,但我完全没有使用 Azure 的经验,我什至不知道这是否可行。

My company is doing a POC on some streaming data and one of the tasks is sending data from AWS Kinesis to Azure Event Hubs.

Has anyone tryed to do something like this before?

I was thinking of a lambda function listening to kinesis firehose and sending the data to event hubs but I have no experience on Azure at all and I don't even know if this is possible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世俗缘 2025-01-20 22:18:40

是的,这很有可能。

使用 AWS Kinesis 和 Azure Event Hub 可以实现数据在两个服务之间进行流式传输的云间环境。

您可以将数据从 Amazon Kinesis 直接实时流式传输到 Azure 事件中心。使用“无服务器”模型和云计算来处理和传输事件,而无需管理在本地服务器上编写的任何本机应用程序。

您将需要来自 Azure 事件中心的连接字符串、SharedAccessKeyNameSharedAccessKey。这将需要将数据发送到事件中心。另外,请确保事件中心可以从您运行程序的 IP 地址接收数据。

请参阅此

Yes, this is very much possible.

Inter-Cloud environment where data can be streamed among two services can be achieved using AWS Kinesis and Azure Event Hub.

You can stream data from Amazon Kinesis directly to Azure Event Hub in Real-Time. Using ‘serverless’ model and cloud computing to process and transfer events without having the need to manage any native application written on an on-premise server.

You will be required connection string, SharedAccessKeyName, and SharedAccessKey from the Azure Event Hub. This will be needed to send data to Event Hub. Also, make sure the Event hub can receive data from the IP address you are running the program from.

Refer this third-party tutorial to accomplish the same

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文