Azure – Using traffic manager to loadbalance internal azure resources(storage, service bus, etc)

azurehigh-availability

Is it possible to use traffic manager to manage the connection to internal azure services(storage, service bus etc).

the goal is to have multiple storage accounts and queue's so that if one fail's the other application can still work.

I know that it is possible to build my application so it does this automatically. but can i use traffic manager to achive this?

Best Answer

can i use traffic manager to achive this?

No, we can't work traffic manager in this way.

Traffic Manager works at the DNS level, it uses DNS responses to direct end-user traffic to globally distributed endpoints. Clients then connect to those endpoints directly. And traffic manager only supports Internet-facing applications. More information about traffic manager, refer to the link.

Related Topic