使用 Azure Compute VM Infrastructure 部署 SSIS 、 SSRS 和 SSAS 服务

Usage of Azure Compute VM Infrastructure for deploying SSIS , SSRS and SSAS services

我的应用架构

我已经有一个工作的 SQL 服务器集成、分析和报告部署在我的本地服务器上的应用程序。现在我计划将相同的报告应用程序部署到 Azure 云中。我打算将此应用程序移动到云端。

我的探索

当我探索时,我发现了用于数据集成和转换服务的数据工厂,之后可以发布到任何 BI 工具。我正在阅读以下 link、

中的数据工厂文档

https://docs.microsoft.com/en-us/azure/data-factory/introduction

从这里我了解到我可以使用 Azure 数据工厂,我可以使用连接和收集阶段、转换丰富和发布阶段执行数据集成和转换。发布后我们还可以使用BI工具。

关于从内部部署到 Azure Cloud 的迁移,我感到有些困惑。我在下面添加

我的困惑

在不使用 Azure 的数据工厂服务的情况下,是否可以将我的所有服务包 (SSIS/SSRS/SSAS) 部署到我自己的 Azure VM 基础架构中,就像我在本地机器上所做的那样?

Without using Azure's Data factory service, Is possible deploy my all service packages (SSIS/SSRS/SSAS) in my own Azure VM infrastructure like what I did in on-premise machine ?

是的,您可以在创建 VM 时在 Azure VM 中安装所有服务包。看到这个描述:

Azure virtual machines allow you to deploy a wide range of computing solutions in an agile way. You can deploy virtually any workload and any language on nearly any operating system - Windows, Linux, or a custom created one from any one of the growing list of partners.

您可以将 Azure 中的虚拟机视为您的本地机器。不同之处在于你不必关心硬件,Azure 会为你维护它。您还可以控制 VM with the Azure Service Principal. See more details about the Azure VM.

的权限