Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
    • Cloud Interconnect
    • Cloud Backup
    • Cloud Registry
    • Yandex AI Studio
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Video
    • Stackland
    • Yandex Cloud Router
    • Yandex Managed Service for Trino
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Yandex StoreDoc
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Managed Service for YDB
    • Managed Service for Sharded PostgreSQL
    • Managed Service for YTsaurus
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • SpeechKit
    • DataSphere
    • Vision OCR
    • Translate
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • SmartCaptcha
    • Cloud Desktop
    • Yandex SIEM
    • SourceCraft Code Assistant
    • Container Registry
    • Managed Service for GitLab
    • Managed Service for Prometheus®
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Message Queue
    • Serverless Integrations
    • IoT Core
    • Data Streams
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Yandex Cloud Quota Manager
    • Cloud Apps
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Compute Cloud
    • All guides
        • Creating a disk placement group
        • Adding a disk to a placement group
        • Getting disk placement group info
        • Configuring disk placement group access permissions
        • Removing a disk from a placement group
    • Viewing operations with resources
    • Viewing metrics Monitoring
  • Yandex Container Solution
  • Access management
  • Pricing policy
  • Terraform reference
  • Metrics Monitoring
  • Audit Trails events
  • Release notes
  1. Step-by-step guides
  2. Placement groups
  3. Disks
  4. Creating a disk placement group

Creating a disk placement group

Written by
Yandex Cloud
Improved by
Danila N.
Updated at July 31, 2026
View in Markdown

To create a placement group for non-replicated disks:

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

  2. Navigate to Compute Cloud.

  3. In the left-hand panel, select Placement groups.

  4. Navigate to the Non-replicated disk placement groups tab.

  5. In the top-right corner, click Create and select Non-replicated disk placement group.

  6. Enter a name for the placement group. The naming requirements are as follows:

    • Length: between 3 and 63 characters.
    • It can only contain lowercase Latin letters, numbers, and hyphens.
    • It must start with a letter and cannot end with a hyphen.
  7. Provide a description for the disk placement group, if required.

  8. Specify the availability zone.

  9. Select a placement strategy: spread or partition.

    If you select the partition placement strategy, specify the number of partitions for non-replicated disks.

  10. Click Create.

If you do not have the Yandex Cloud CLI yet, install and initialize it.

The folder used by default is the one specified when creating the CLI profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also specify a different folder for any command using --folder-name or --folder-id. If you access a resource by its name, the search will be limited to the default folder. If you access a resource by its ID, the search will be global, i.e., through all folders based on access permissions.

  1. See the description of the CLI command for creating a disk placement group:

    yc compute disk-placement-group create --help
    
  2. Create a disk placement group in the default folder with one of the following placement strategies:

    • Spread placement:

      yc compute disk-placement-group create \
        --name <disk_placement_group_name> \
        --zone <availability_zone> \
        --strategy SPREAD
      

      Where:

      • --name: Disk placement group name.
      • --zone: Availability zone.
      • --strategy: Placement strategy.
    • Partition placement:

      yc compute disk-placement-group create \
        --name <disk_placement_group_name> \
        --zone <availability_zone> \
        --strategy PARTITION \
        --partition-count <number_of_partitions>
      

      Where:

      • --name: Disk placement group name.
      • --zone: Availability zone.
      • --strategy: Placement strategy.
      • --partition-count: Number of partitions, two to five.
  3. Get a list of disk placement groups in the default folder:

    yc compute disk-placement-group list
    

    Result:

    +----------------------+---------------------+-------------------+--------+---------------+
    |          ID          |        NAME         |       ZONE        | STATUS |   STRATEGY    |
    +----------------------+---------------------+-------------------+--------+---------------+
    | epd3oalmkmbp******** | drbasic-partition-1 | ru-central1-b | READY  | PARTITION [3] |
    | epdn7r7co1v4******** | drbasic-spread-2    | ru-central1-b | READY  | SPREAD        |
    +----------------------+---------------------+-------------------+--------+---------------+
    
  4. Get information about the created disk placement group by specifying its name:

    yc compute disk-placement-group get \
      --name <placement_group_name>
    

    Result:

    id: epd4sug6kesk********
    folder_id: w3qrbj9swoty********
    created_at: "2021-03-23T12:49:59Z"
    name: first-group
    zone_id: ru-central1-b
    status: READY
    spread_placement_strategy: {}
    

Use the create REST API method for the DiskPlacementGroup resource or the DiskPlacementGroupService/Create gRPC API call.

Was the article helpful?

Previous
Configuring VM placement group access permissions
Next
Adding a disk to a placement group
© 2026 Direct Cursus Technology L.L.C.