简体   繁体   English

azure 表单识别器在哪里存储结果?

[英]where does azure form recognizer store results?

The Azure Cognitive Services Form Recognizer API accepts requests via a POST, and then makes the results available for 48 hours via a GET request to a resource: Azure 认知服务表单识别器API通过 POST 接受请求,然后通过对资源的 GET 请求使结果可用 48 小时:

POST "https://westus.api.cognitive.microsoft.com/formrecognizer/v2.1-preview.3/custom/models/{modelId}/analyze?includeTextDetails={boolean}

GET "https://westus.api.cognitive.microsoft.com/formrecognizer/v2.1-preview.3/custom/models/{modelId}/analyzeResults/{resultId}]

Presumably Azure stores these results somewhere, but I can't find any documentation regarding it.大概 Azure 将这些结果存储在某个地方,但我找不到任何关于它的文档。 After 48 hours, is the data deleted or just made unavailable? 48 小时后,数据是删除还是不可用? Where does the data reside?数据驻留在何处? Who owns the data?谁拥有数据? Does the account owner have access to the underlying storage account or database?帐户所有者是否有权访问基础存储帐户或数据库?

Check here in their official doc.在他们的官方文档中查看这里 It mentions of a "The following diagram illustrates how your data is processed."它提到了“下图说明了您的数据是如何处理的”。 but I cannot see one 🤔但是我一个都看不到🤔

Anyways, answering ahead....无论如何,提前回答......

is the data deleted or just made unavailable?数据是否已删除或只是变得不可用? (deleted) (已删除)

The input data and results are deleted within 48 hours and not used for any other purpose.输入的数据和结果会在 48 小时内删除,不会用于任何其他目的。 To learn more about privacy and security commitments, see the Microsoft Trust Center and cognitive services compliance and privacy .要了解有关隐私和安全承诺的更多信息,请参阅Microsoft 信任中心认知服务合规性和隐私

Where does the data reside?数据驻留在何处? Who owns the data?谁拥有数据? (Azure internal😕) (天蓝色内😕)

The incoming data is processed in the same region where the Cognitive Services Azure resource was created.传入数据在创建认知服务 Azure 资源的同一区域中进行处理。 When you submit your documents to a Form Recognizer operation, it starts the process of analyzing the document to extract all text and identify structure and key values in a document.当您将文档提交给表单识别器操作时,它会开始分析文档以提取所有文本并识别文档中的结构和键值的过程。 Your data and results are then temporarily encrypted and stored in Azure Storage.然后,您的数据和结果会被临时加密并存储在 Azure 存储中。

When you create a Form Recognizer resource in the Azure portal, you specify a region.在 Azure 门户中创建表单识别器资源时,指定一个区域。 From then on, your resource and all of its operations stay associated with that particular Azure server region.从那时起,您的资源及其所有操作都将与该特定 Azure 服务器区域相关联。

Does the account owner have access to the underlying storage account or database?帐户所有者是否有权访问基础存储帐户或数据库? (Analyze Form Result API) (分析表单结果 API)

The "Get Analyze Results" operation is authenticated against the same API key that was used to call the "Analyze" operation to ensure no other customer can access your data. “获取分析结果”操作根据用于调用“分析”操作的相同 API 密钥进行身份验证,以确保其他客户无法访问您的数据。

Azure temporarily stores the results for customers to retrieve: Analyze and Get Results are asynchronous calls. Azure 临时存储结果供客户检索:Analyze 和 Get Results 是异步调用。 In other words, the service doesn't know when the customers will call the Get Results operation to fetch the extracted results.换句话说,服务不知道客户何时会调用 Get Results 操作来获取提取的结果。 To facilitate checking the completion status and returning the extracted results to the customer upon completion, the extracted results are stored temporarily in Azure Storage.为了方便查看完成状态并将提取的结果在完成后返回给客户,提取的结果暂时存储在Azure Storage中。 This behavior allows customers to poll the asynchronous Get Results operation for job completion status and fetch the results upon completion.此行为允许客户轮询异步获取结果操作以了解作业完成状态并在完成时获取结果。

There is already a similar ask from a user in feedback forum, you can vote that too to get product group's attention ✌ 反馈论坛中已经有用户提出了类似的问题,您也可以投票以获得产品组的关注✌

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM