Disks, snapshots, and images
How much disk space can I use for a virtual machine?
For disk limitations, see Quotas and limits in Compute Cloud.
How do I change the size of a disk?
You can increase your disk size within the limits by following the instructions Increasing disk size. The data on the disk is kept. Make sure to wait until the operation is complete.
However, the architecture of technologies used in Nebius Israel doesn't enable you to decrease the disk size. It's also impossible to create from the snapshot a disk smaller than the parent disk.
If the partition on the Linux boot disk doesn't expand automatically after increasing the disk size, use the following commands:
sudo growpart /dev/vda 2
sudo resize2fs /dev/vda2
For non-bootable disks, the partition size won't expand automatically. Use standard OS tools for this purpose (for example, parted
).
How do I upload a custom image?
Follow this guide: Uploading a disk image to Nebius Israel.
To ensure that the VM created from your image functions properly, follow the steps specified in the guide.
If you have followed all recommendations and the image still fails to start up, or in case you have other questions, contact support.
What happens to the VMs running outdated OS versions?
You can use images with outdated OS versions on your VMs; however, you will not be able to get support for these VMs if you have any issues.
Should I use swap?
Avoid using swap in cloud systems whenever possible because the disk subsystem can become a bottleneck for the entire guest system. Network disk limits are too low to use the disk as a RAM extension.
Instead of swap, you can use the zram-config
utility. It allows you to organize a kind of swap inside the RAM itself thanks to compression, which is ten times faster than I/O with a disk. Keep in mind that with a high load on I/O and/or vCPUs, the use of zram-config
may negatively affect iowait
and, consequently, the performance of the network, disks, and vCPUs.
The best solution for increasing available memory is to expand the vRAM on the VM.
What should I do if a snapshot is larger than the data on the disk?
This happens if occupied sectors remain on a disk after you delete files from it.
The solution is to write a file consisting of zeros to the entire unoccupied disk space, then flush the cache to the disk, and delete the record about this file.
-
For Windows: stop disk operations and use the
SDelete
utility. You can learn more about the utility and download it in the Microsoft documentation . -
For Linux: stop disk operations and enter the following commands one-by-one:
dd if=/dev/zero | pv > full.disk
sync
rm full.disk
The "empty" space on the disk then becomes truly empty and you can create a disk snapshot. Its size will become closer to the currently used disk space.
Can I create several snapshots of the same disk at a time?
No, only a single snapshot can be created for one disk at a time. All other schedules for a given disk are ignored until a snapshot for this disk is created (manually or as scheduled).
How are snapshot quotas counted?
Snapshots are billable and count towards quotas with their actual sizes.
How do I move a VM to another folder/cloud?
-
Grant rights in your cloud to a user from another cloud:
- Role for the cloud:
resource-manager.clouds.member
. - Role for the folder:
viewer
orcompute.images.user
.
See also the instructions Assigning roles.
- Role for the cloud:
-
Create an image from your snapshot under Snapshots or from the disk itself under Disks.
A user in another cloud must:
-
Run the CLI command below:
yc compute image create --source-image-id=<your_image_ID>
-
When creating a VM, specify this image as a boot disk.
How do I attach a new disk to a VM?
After creating and connecting a new disk to the VM, you need to mount it or assign it a letter, depending on the operating system. Follow this guide: Mounting a disk created from a snapshot or image.
How do I set up automatic backups?
For disk backups in Compute Cloud, you can make disk copies — snapshots. For automatic creation of snapshots, use schedules.
For more information, see Backups in Compute Cloud.
Why was a disk snapshot created later rather than exactly at the scheduled time?
Scheduled snapshots may be created with a slight delay depending on the current load on the service.
Can I create snapshots of the same disk according to several schedules?
Yes, you can add a disk to several schedules. There are fixed limits on the number of disk schedules.
In what time zone is the time written in disk snapshot schedule settings?
The time is provided for the UTC
Can I choose a folder for scheduled disk snapshots?
Snapshots are created in the same folder as the schedule, even if disks from other folders are added to the schedule.
What format of cron expressions is supported in disk snapshot schedules?
See section Cron expressions.
If the schedule is configured to keep several of the last disk snapshots, are old snapshots deleted before or after new ones are created?
After. A new snapshot is created first, then the old one is deleted. For example, if you want to keep only the last five snapshots, the first snapshot is deleted after the sixth one is created, the second is deleted after the seventh one is created, etc.
What happens to operations and created snapshots when disk snapshot schedules are changed, interrupted, or deleted?
All snapshot creation or deletion operations that started prior to changing, interrupting or deleting the schedule will be completed. Snapshots that were not deleted according to schedule retention settings are kept.
What happens to my data when I delete a virtual machine?
When selecting a disk to attach to a VM, you can specify that the disk should be deleted once you delete the VM. This option is also available when you create a VM, reconfigure it, or attach a new disk to it.
If a VM had any previously created disks attached, they will be detached when you delete the VM. The disk data is preserved, and this disk can be attached to another VM later.
If you would like to delete a disk with a VM, specify this option when creating the VM, reconfiguring it, or attaching the disk. Such disks will be deleted along with the VM.
Do I need to stop a VM to create disk snapshots? Do I have to wait until disk snapshots are created before I can start a virtual machine?
You don't have to stop the VM. However, keep in mind that a snapshot contains only the data written to disk when creating the snapshot. You need to take care of the data integrity yourself. For information about how to create disk snapshots, see Creating a disk snapshot.
A snapshot is created asynchronously. You can resume writing data to a disk immediately after running the create snapshot command, without waiting for the snapshot creation to be completed.
How do I detect processes that put a heavy load on a disk?
You can detect these processes using the iotop
/usr/sbin/iotop -botqqqk --iter=60 | grep -P "\d\d\d\d.\d\d K/s" >> /var/log/iotop.log