Nebius Israel
Contact usConsole
  • GPU
  • Docs
© 2023 Nebius Israel Ltd
Compute Cloud
  • Container Solution
  • Access management
  • Pricing policy
  1. Step-by-step guides
  2. Creating a disk
  3. Creating a high-performance SSD

Creating a high-performance SSD

You can create a separate high-performance SSD that combines the high speed of a non-replicated disk with redundancy.

The size of a disk must be a multiple of 93 GB.

Management console
CLI
API
  1. In the management console, select the folder where you want to create a disk.

  2. Select Compute Cloud.

  3. In the left-hand panel, select Disks.

  4. Click Create disk.

  5. Enter the disk name.

    • The length can be from 3 to 63 characters.
    • It may contain lowercase Latin letters, numbers, and hyphens.
    • The first character must be a letter. The last character can't be a hyphen.
  6. Add a description for the disk, if required.

  7. Select the availability zone to place the disk in.

  8. Select SSD IO as disk type.

  9. Select the desired block size.

  10. Specify the desired disk size.

  11. Click Create disk.

The folder specified in the CLI profile is used by default. You can specify a different folder using the --folder-name or --folder-id parameter.

  1. View a description of the CLI command to create disks:

    yc compute disk create --help
    
  2. To create a high-performance disk named ssd-io-disk, run this command:

    yc compute disk create \
      --name ssd-io-disk \
      --zone ru-central1-a \
      --type network-ssd-io-m3 \
      --size 93G
    

    Result:

    id: a7li08c1************
    folder_id: aoerb349************
    created_at: "2023-07-18T14:42:21Z"
    name: ssd-io-disk
    type_id: network-ssd-io-m3
    zone_id: ru-central1-a
    size: "99857989632"
    block_size: "4096"
    status: READY
    disk_placement_policy: {}
    

Use the create REST API method for the Disk resource or the DiskService/Create gRPC API call.

© 2023 Nebius Israel Ltd