Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

QnA Maker Service location restricted to US West

Tags:

azure

qnamaker

since the structural change of the QnA Maker using Azure Search I recognized the only location to choose for the cognitive service is "US West". The app service and search service belonging to it can still be located anywhere.

Is this working as intended? If so, does the knowledge base of the QnA Maker Service belong to the region of the QnA Maker Service (US West) or does it belong to the region of the App / Search Service (e. g. Western Europe). Where is the data stored and which information reach the service located in "US West"?

Thanks in advance for your replies.

Best regards,

Alexander

like image 976
Alex Q Avatar asked Feb 07 '19 07:02

Alex Q


People also ask

How do I grant access to my QnA maker?

Add a user account to the cognitive resource You should apply RBAC controls to the QnA Maker resource. Sign in to the Azure portal, and go to your cognitive resource. Go to the Access Control (IAM) tab. Select Add.

What is QnA maker service?

QnA Maker is a cloud-based Natural Language Processing (NLP) service that allows you to create a natural conversational layer over your data. It is used to find the most appropriate answer for any input from your custom knowledge base (KB) of information.

Is QnA maker free?

Azure QnA Maker API is a free, easy-to-use, REST API and web-based service that trains AI to respond to user's questions in a more natural, conversational way.

How do I change the default answer in QnA maker?

Sign in to the QnA Maker portal and select your knowledge base from the list. Select Settings from the navigation bar. Change the value of Default answer text in the Manage knowledge base section. Select Save and train to save the change.


1 Answers

Officially, QnA Maker product is available in many Azure Regions (see capture below, from official site here)

Azure regions

But as you mentioned, the location of the endpoint for the administration part seems restricted to West US only:

  • the QnA Maker v4 API console tester is only available in West US: https://westus.dev.cognitive.microsoft.com/docs/services/5a93fcf85b4ccd136866eb37/operations/5ac266295b4ccd1554da75ff
  • In Azure Portal, when you create a QnA Maker resource, you can only choose West US for the Location field
  • Unlike LUIS, there is no eu portal (https://eu.luis.ai/)

So all the Knowledge base "administration" is through this region, on Microsoft side.

To reply to the following question:

Where is the data stored and which information reach the service located in "US West"?

You must remember the QnA Maker architecture (since v4) which is the following:

enter image description here

In the end, your data is You can check in the Azure Search resource that is created with your QnA Maker Service. See the capture below from one of my projects, you can browse the indexes and see your documents in the region you want, in your own subscription:

Search capture

Previously, before the GA, the data was... on Microsoft subscription?

like image 59
Nicolas R Avatar answered Sep 18 '22 13:09

Nicolas R