Azure-docs: when create QnA Maker in Azure portal, returns "ServerFarmNotFound"

Created on 26 Nov 2019  Â·  10Comments  Â·  Source: MicrosoftDocs/azure-docs

Screenshot as below

image

above error:
image

Thanks~


Document Details

⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Pri2 cognitive-servicesvc cxp product-question qna-makesubsvc triaged

All 10 comments

@xieofxie
Thanks for the feedback! We are currently investigating and will update you shortly.

Somehow it works for east us now and the problem may disappear magically later..

@xieofxie Thanks for the confirmation. We will now proceed to close this thread. If there are further questions regarding this matter, please respond here and @YutongTie-MSFT and we will gladly continue the discussion.

Hi guys. I am currently experiencing the same issue for the west europe region. Deploying from an ARM template. Same script works fine for east us.

@VladPScreenMedia Can you please open a feedback issue from the QnA Maker portal with this information?

@RohitMungi-MSFT FYI -

Thanks @diberry
I have done that just now, with id: 119121324002573
@YutongTie-MSFT

@VladPScreenMedia Thank you - I'm going to close this now. #please-close

Hey,
Is the issue is not resolved yet?
Though it is working for EAST US but the validation is still failing for South Central US. Any plans to fix this? or we can assume that ServerFarms cannot be created anymore at South Central US via ARM Templates ?

@kanika1894 Could you try to use Subscription().SubscriptionIdinstead of subscription().id

              "serverFarmId": "[concat('/subscriptions/', subscription().id,'/resourcegroups/', resourceGroup().name, '/providers/Microsoft.Web/serverfarms/', variables('hostingPlanName'))]",
                "hostingEnvironment": ""
            },
            "tags": {
                "isqnamaker": "true",
                "[concat('hidden-related:', '/subscriptions/', subscription().id,'/resourcegroups/', resourceGroup().name, '/providers/Microsoft.Web/serverfarms/', variables('hostingPlanName'))]": "empty"
            },
            "dependsOn": [

To:

      },
                "name": "[variables('qnaMakerAppServiceName')]",
                "serverFarmId": "[concat('/subscriptions/', Subscription().SubscriptionId,'/resourcegroups/', resourceGroup().name, '/providers/Microsoft.Web/serverfarms/', variables('hostingPlanName'))]",
                "hostingEnvironment": ""
            },
            "tags": {
                "isqnamaker": "true",
                "[concat('hidden-related:', '/subscriptions/', Subscription().SubscriptionId,'/resourcegroups/', resourceGroup().name, '/providers/Microsoft.Web/serverfarms/', variables('hostingPlanName'))]": "empty"
            },
            "dependsOn": [

Funnily enough, I am having this issue again today as well..

I am not being funny, but, it seems to be happening every friday ... and I am not a strong believer in coincidence. Maybe an underlying datetime issue ?

Another thing is, I've managed to find a region that worked on monday( went through about 6-7 regions), and finally deployed to UK South although I wanted it to be in West Europe.
So now I have a valid deployment in UK South, but for a laugh, I've tried to deploy another instance of my ARM template to UK South today ( different names and what not ), and failed miserably with the same issue mentioned above. Running it over the existing one, as an 'update' works perfectly fine though.

Was this page helpful?
0 / 5 - 0 ratings