Youxu
Youxu

Reputation: 1110

How to add Azure Search Service endpoint to Traffic Manager

I want to use traffic manager to route the request to Azure Search service on different regions. I have created traffic manager and added two Azure Search endpoints to traffic manager, the problem is, how to configure the health check probe on azure search service as azure search requires API-KEY on request?

Upvotes: 2

Views: 635

Answers (1)

Bruce Johnston
Bruce Johnston

Reputation: 8634

Answer from the MSDN Forum:

  1. How can I handle different api-key of Azure Search in Traffic Manger

    The following article talks about leveraging Azure Traffic Manager(TM) with Azure Search: https://learn.microsoft.com/azure/search/search-performance-optimization#leveraging-azure-traffic-manager

    You don't have to surface the Azure Search query keys to the TM. The users will call the TM, which will call your lightweight application (a simple web app) running on Azure. The web app will redirect the traffic to the respective Azure Search service.

  2. How to detect available one in Traffic Manger

    The TM has inbuilt endpoint monitoring support. This will monitor the health of the end-point. If the end-point is unhealthy, requests will not be routed to it unless the resource recovers and becomes healthy again. https://learn.microsoft.com/azure/traffic-manager/traffic-manager-monitoring

Upvotes: 1

Related Questions