Sự kiện
23 giờ 31 thg 3 - 23 giờ 2 thg 4
Sự kiện học tập Fabric, Power BI và SQL lớn nhất. 31 tháng 3 - 2 tháng 4. Sử dụng mã FABINSIDER để tiết kiệm 400 đô la.
Đăng ký ngay hôm nayTrình duyệt này không còn được hỗ trợ nữa.
Hãy nâng cấp lên Microsoft Edge để tận dụng các tính năng mới nhất, bản cập nhật bảo mật và hỗ trợ kỹ thuật.
In this article, learn the requirements for deploying a workload that operates on a remote server with internet access in Microsoft Fabric.
The deployment has two main parts:
Deploy both components as cloud services. You can host the two components on separate servers if needed.
To work with your workload in cloud mode, you must configure your app information and domains correctly.
The Microsoft Entra ID app resourceId
value should be in the following format:
https://<ISV's tenant verified domain>/<workload frontend server>/<workload backend server>/<workload id>/<optional string>
resourceId
value.Lưu ý
*.onmicrosoft
subdomains are not permitted in URLs.resourceId
value, with a maximum of one extra segment.resourceId
value: https://datafactory.contoso.com/feserver/beserver/Fabric.WorkloadSample/123
https://feserver.datafactory.contoso.com
https://beserver.datafactory.contoso.com
https://feserver.datafactory.contoso.com/close
To configure the workload end points:
Add the workload's backend URL to the CloudServiceConfiguration
section in the manifest and name it Workload
.
Add the workload's frontend URL to the CloudServiceConfiguration
section in the manifest and name it Frontend
.
Here's an example:
<CloudServiceConfiguration>
<Cloud>Public</Cloud>
...
<Endpoints>
<ServiceEndpoint>
<Name>Workload</Name>
<Url>https://beserver.datafactory.contoso.com/workload</Url>
</ServiceEndpoint>
<ServiceEndpoint>
<Name>Frontend</Name>
<Url>https://feserver.datafactory.contoso.com</Url>
</ServiceEndpoint>
</Endpoints>
</CloudServiceConfiguration>
To configure your application in Microsoft Entra:
/close
. For example, feserver.datafactory.contoso.com/close
.Lưu ý
All other application configurations in Microsoft Entra ID are the same as in developer mode.
In the backend sample, open src/appsettings.json and configure the following settings:
Open src/Packages/manifest/WorkloadManifest.xml.
Under AADApp
, set AppId
, redirectUri
, and ResourceId
(the ID URI).
Note the requirements that are specified in XSD file and the backend manifest overview.
In the .env.test file, set WORKLOAD_BE_URL
to your workload backend URL (for example, set it to beserver.datafactory.contoso.com
).
Here's an example:
WORKLOAD_NAME=Fabric.WorkloadSample
WORKLOAD_BE_URL=beserver.datafactory.contoso.com
Sự kiện
23 giờ 31 thg 3 - 23 giờ 2 thg 4
Sự kiện học tập Fabric, Power BI và SQL lớn nhất. 31 tháng 3 - 2 tháng 4. Sử dụng mã FABINSIDER để tiết kiệm 400 đô la.
Đăng ký ngay hôm nayĐào tạo
Mô-đun
Deploy a Microsoft Teams app to Azure by using Teams Toolkit for Visual Studio Code - Training
Learn about infrastructure requirements and how to get set up to host and publish your app in Microsoft Teams by using the Teams Toolkit extension.
Chứng chỉ
Microsoft Certified: Fabric Data Engineer Associate - Certifications
Là một kỹ sư dữ liệu vải, bạn nên có chuyên môn đối tượng vấn đề với dữ liệu tải mẫu hình, kiến trúc dữ liệu, và quá trình điều phối.
Tài liệu
Implement the Microsoft Fabric backend - Microsoft Fabric
Learn how to build the backend of a customized Microsoft Fabric workload by using Fabric extensions. Learn about the Microsoft Fabric Workload Development Kit and how to use it by following a detailed example.
Extend the Microsoft Fabric frontend - Microsoft Fabric
Learn how to edit files in the developer sample repository to build the frontend of a customized Microsoft Fabric workload. Learn about the Microsoft Fabric Workload Development Kit and how to use it by following a detailed example.
This article describes the overview and key concepts for the backend manifest definition.