VM Size machine Standard_NC6s_v3 creates 30GB HDD instead of 700SSD

2023-12-18T10:46:33.2966667+00:00

Hi Team, Below configuration in RayCluster is creating only 30GB HDD instead of 700SSD for Standard_NC6s_v3 VM and not in-accordance to the standard defined. Any idea what could be missing please?

 node_config:
            azure_arm_parameters:
                vmSize: Standard_NC6s_v3
                # List images https://docs.microsoft.com/en-us/azure/virtual-machines/linux/cli-ps-findimage
                imagePublisher: Canonical
                imageOffer: 0001-com-ubuntu-server-jammy
                imageSku: 22_04-lts-gen2
                imageVersion: latest

VM

Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
9,082 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. TP 126.4K Reputation points Volunteer Moderator
    2023-12-18T11:33:53.0133333+00:00

    Hi,

    Image default size for 0001-com-ubuntu-server-jammy for OS disk is 30GB, so that size would be expected. The Temp disk is different than the OS disk, and should be 736 GiB for Standard_NC6s_v3.

    Are you saying it is creating OS disk as HDD instead of Premium SSD?

    Please click Accept Answer and upvote if the above was useful.

    Thanks.

    -TP


  2. vipullag-MSFT 26,492 Reputation points Moderator
    2023-12-19T12:50:57.64+00:00

    Hello Rani Mysore Guruswamy (MS/EMP-PS-PJ-MB)

    As you have mounted the /dev/sdb1 file system to the /mnt directory, you can use the /mnt directory to download and install your software/package.

    Here are the steps to download and install your software/package to the /mnt directory:
    -Go to /mnt directory
    cd /mnt

    -Download your software/package to the /mnt directory. For example, if your software/package is available as a tar archive on a remote server, you can use the wget command to download it:
    wget http://example.com/software.tar.gz

    -Extract the contents of the archive to the /mnt directory:
    tar -xzf software.tar.gz

    -Install your software/package as you normally would, but specify the /mnt directory as the installation directory. For example, if your software/package has an installation script named install.sh, you can run it with the following command:

    sudo ./install.sh --prefix=/mnt

    After completing these steps, your software/package should be installed in the /mnt directory on the /dev/sdb1 file system.

    Hope this helps.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.