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.
This article describes how the communication between a Microsoft Fabric frontend and backend works. It covers key considerations for admins and users.
Authentication between your frontend and the backend happens over a secure and authenticated channel. To have a token available in your backend for communication with other services, you can use the Fabric frontend to pass the communication to the backend.
To propagate any errors that occur in the workload backend to the workload frontend when you work with control plane APIs (CRUD operations and jobs, except for GetItemJobInstanceStateAsync
), the workload backend should return an error status code. The response body content should be a serialized JSON file of the class ErrorResponse
that is a part of the contracts in the workload backend.
Here's an example:
var errorResponse = new ErrorResponse
{
ErrorCode = ErrorCode,
Message = ErrorMessage,
MessageParameters = _messageParameters.Any() ? _messageParameters : null,
Source = ErrorSource,
IsPermanent = IsPermanent,
MoreDetails = Details,
};
return new ContentResult
{
StatusCode = (int)HttpStatusCode,
Content = JsonSerializer.Serialize(errorResponse),
ContentType = MediaTypeNames.Application.Json,
};
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
Lộ trình học tập
Kết nối dịch vụ của bạn với nhau theo lộ trình học tập - Training
Sử dụng Azure để tạo các phần đầu trang web, dịch vụ phía sau và các hàm được kích hoạt để tính toán theo yêu cầu và cũng có thể giao tiếp với nhau.
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
Item lifecycle - Microsoft Fabric
Learn about item lifecycle in Microsoft Fabric.
Frontend manifests documentation - Microsoft Fabric
This document outlines the structure, core functionalities, and examples for a workload's frontend manifests, detailing the Product and Item manifests required in the Fabric Workload Development Kit.
Upload and manage a workload - Microsoft Fabric
Learn how to deploy and manage a workload solution in Microsoft Fabric to improve performance and user engagement.