skip to Main Content

We have 2 Ubuntu VMs inside Virtual Machine Flexible Orchestration that are behind Application Gateway and are running Apache Tomcat web servers. When a client connects to one of the VMs and uploads the files that files also need to exist on another Virtual Machine.
I only found 2 options to do that:

  1. Azure File Share – $80/month for 1 TB of Hot SKU, but the speed is only 1 MBs when mounted as SMB share on Ubuntu.
  2. Azure NetApp Files – $600/month for 4 TB minimum.

Both of the options are not good, the first one is to slow and the second one is too expensive. What can we use in the development environment and production environment to achieve file sharing between Highly Available VMs?

2

Answers


  1. 1MBs is awfully low, I am not sure where this is coming from. I am fairly sure I get about 30MBs for Standard SSD/HDD deployments when mounting them into Linux docker containers, which should not perform worse.

    An alternative to the mounted file shares would be to use shared disks. You can basically attach a disk to multiple VMs at the same time.

    There are some limitations, for your case mainly mainly:

    Shared disks can be attached to individual VMSS instances but can’t be defined in the VMSS models or automatically deployed.

    You can still expect to pay 50-200$ for the disk, but you should be able to get much better speeds than what you are currently getting.

    shared disks example

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search