NVMe cloud servers

Lightning-fast operation of the storage system with high-performance solid-state drives

immers.cloud platform

All NVMe servers are equipped with Samsung PM1735 SSD drives with PCIe 4 support and are built on second and third generation Intel® Xeon® Scalable and also contain up to 8192 GB of DDR4 ECC Reg 3200 MHz RAM.

Each processor contains two Intel® AVX-512 units. The instructions in this set speed up multiplication and addition operations with reduced accuracy up to four times, which are used in any software.

100% performance

Each physical core or GPU adapter is assigned only to a single client.
It means that:

  • Available vCPU time is 100%;
  • Physical pass-through of GPU inside a virtual server;
  • Less storage and network load on hypervisors, more storage and network performance for a client.

Up to 100 000 IOPS1 for the RANDOM READ and up to 7000 MB/s for the SEQUENTIAL READ for the Virtual Servers with local NVMe SSDs.

Up to 750 000 IOPS1 for the RANDOM READ and up to 400 MB/s for the SEQUENTIAL READ for the Virtual Servers with local SATA SSDs.

You can be sure that Virtual Servers are not sharing vCPU or GPU between each other.

  1. IOPS — Input/Output Operations Per Second.

Available NVMe configurations with Samsung SSD

Each configuration contains isolated virtual cores of the second generation Intel® Xeon® processors Scalable (Cascade Lake) without any restrictions and without overselling. 100% of CPU time is available.

Prices:
Name vCPU RAM, MB Disk, GB Price, hour Price, month
nvme.2.4.40 2 4096 40 Launch
nvme.2.4.80 2 4096 80 Launch
nvme.4.8.80 4 8192 80 Launch
nvme.4.16.80 4 16384 80 Launch
nvme.4.16.120 4 16384 120 Launch
nvme.8.8.20 8 8192 20 Launch
nvme.8.16.120 8 16384 120 Launch
nvme.8.32.120 8 32768 120 Launch
nvme.8.32.240 8 32768 240 Launch
nvme.16.32.120 16 32768 120 Launch
nvme.16.32.240 16 32768 240 Launch
nvme.16.64.120 16 65536 120 Launch
nvme.16.64.240 16 65536 240 Launch
nvme.16.96.240 16 98304 240 Launch
nvme.24.48.240 24 49152 120 Launch
nvme.24.48.120 24 49152 120 Launch
nvme.24.96.120 24 98304 120 Launch
nvme.24.96.240 24 98304 240 Launch
nvme.32.64.120 32 65536 120 Launch
nvme.32.64.240 32 65536 240 Launch
nvme.32.128.120 32 131072 120 Launch
nvme.32.128.240 32 131072 240 Launch
nvme.32.256.240 32 262144 240 Launch
nvme.32.256.480 32 262144 480 Launch
nvme.44.256.120 44 262144 120 Launch
nvme.44.256.240 44 262144 240 Launch
nvme.44.256.480 44 262144 480 Launch

Answers to frequently asked questions

You can rent a virtual server for any period. Make a payment for any amount starting from 1.1 $ and work within the prepaid balance. When the work is completed, delete the server to stop spending money.

You can create NVMe-servers yourself under the control panel, choosing the hardware configuration and operating system. The ordered capacities are available for use within a few minutes.

If something went wrong - write to our tech support. We are available 24/7: https://t.me/immerscloudsupport.

You can choose from basic images: Windows Server 2019, Windows Server 2022, Ubuntu, Debian, CentOS, Fedora, OpenSUSE. Or use a pre-configured image from the Marketplace.

All operating systems are installed automatically when the NVMe-server is created.

By default, we provide connection to Windows-based servers via RDP, and for Linux-based servers-via SSH.

You can configure any connection method that is convenient to you yourself.

Yes, it is possible. Contact our round-the-clock support service (https://t.me/immerscloudsupport) and tell us what configuration you need.

A bit more about us

  • Per-second billing

    and free VM pause (shelve). You pay for the actual use of your VMs
  • 24/7/365

    Tech support is always available via chat and responds within minutes

  • Free traffic

    Speed up to 2 Gb/s without extra charge for incoming and outgoing traffic

  • Our data centers

    Built according to the TIER III standard
  • 100% of power is yours

    We do not share resources you purchased with other users
  • 20 000+

    Clients trust us with their data and tasks
Sign up

Ready-made OS images with the required software

Create virtual servers by utilizing our pre-configured OS images with either Windows or Linux, along with specialized pre-installed software.
  • Ubuntu
     
  • Debian
     
  • CentOS
     
  • Fedora
     
  • OpenSUSE
     
  • MS Windows Server
     
  • 3ds Max
     
  • Cinema 4D
     
  • Corona
     
  • Deadline
     
  • Blender
     
  • Archicad
     
  • Ubuntu
    Graphics drivers, CUDA, cuDNN
  • MS Windows Server
    Graphics drivers, CUDA, cuDNN
  • Nginx
     
  • Apache
     
  • Git
     
  • Jupyter
     
  • Django
     
  • MySQL
     
View all the pre-installed images in the Marketplace.

Pure OpenStack API

Developers and system administrators can manage the cloud using the full OpenStack API.
Authenticate ninja_user example: $ curl -g -i -X POST https://api.immers.cloud:5000/v3/auth/tokens \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "User-Agent: YOUR-USER-AGENT" \
-d '{"auth": {"identity": {"methods": ["password"], "password": {"user": { "name": "ninja_user", "password": "ninja_password", "domain": {"id": "default"}}}}, "scope": {"project": {"name": "ninja_user", "domain": {"id": "default"}}}}}'
Create ninja_vm example: $ curl -g -i -X POST https://api.immers.cloud:8774/v2.1/servers \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "User-Agent: YOUR-USER-AGENT" \
-H "X-Auth-Token: YOUR-API-TOKEN" \
-d '{"server": {"name": "ninja_vm", "imageRef": "8b85e210-d2c8-490a-a0ba-dc17183c0223", "key_name": "mykey01", "flavorRef": "8f9a148d-b258-42f7-bcc2-32581d86e1f1", "max_count": 1, "min_count": 1, "networks": [{"uuid": "cc5f6f4a-2c44-44a4-af9a-f8534e34d2b7"}]}}'
STOP ninja_vm example: $ curl -g -i -X POST https://api.immers.cloud:8774/v2.1/servers/{server_id}/action \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "User-Agent: YOUR-USER-AGENT" \
-H "X-Auth-Token: YOUR-API-TOKEN" \
-d '{"os-stop" : null}'
START ninja_vm example: $ curl -g -i -X POST https://api.immers.cloud:8774/v2.1/servers/{server_id}/action \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "User-Agent: YOUR-USER-AGENT" \
-H "X-Auth-Token: YOUR-API-TOKEN" \
-d '{"os-start" : null}'
SHELVE ninja_vm example: $ curl -g -i -X POST https://api.immers.cloud:8774/v2.1/servers/{server_id}/action \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "User-Agent: YOUR-USER-AGENT" \
-H "X-Auth-Token: YOUR-API-TOKEN" \
-d '{"shelve" : null}'
DELETE ninja_vm example: $ curl -g -i -X DELETE https://api.immers.cloud:8774/v2.1/servers/{server_id} \
-H "User-Agent: YOUR-USER-AGENT" \
-H "X-Auth-Token: YOUR-API-TOKEN"
Documentation
Signup

Any questions?

Write to us via live chat, email, or call by phone:
@immerscloudsupport
support@immers.cloud
+7 499 110-44-94

Any questions?

Write to us via live chat, email, or call by phone:
@immerscloudsupport support@immers.cloud +7 499 110-44-94
Sign up

Subscribe to our newsletter

Get notifications about new promotions and special offers by email.

 I agree to the processing of personal data