Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • 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 Data Processing
  • Getting started
    • All guides
      • Information about existing clusters
      • Creating a cluster
      • Creating an autoscaling cluster in another folder's network
      • Updating a cluster
      • Migrating a lightweight cluster to a different availability zone
      • Deleting a cluster
    • Creating and using Python virtual environments
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Public materials
  • FAQ

In this article:

  • Getting a list of clusters in a folder
  • Getting detailed information about a cluster
  • Viewing operations with clusters
  • Getting a list of operations
  • Getting operation details
  • See also
  1. Step-by-step guides
  2. Yandex Data Processing clusters
  3. Information about existing clusters

Information about existing Yandex Data Processing clusters

Written by
Yandex Cloud
Updated at January 29, 2026
  • Getting a list of clusters in a folder
  • Getting detailed information about a cluster
  • Viewing operations with clusters
    • Getting a list of operations
    • Getting operation details
    • See also

You can get details about each Yandex Data Processing cluster.

Getting a list of clusters in a folderGetting a list of clusters in a folder

Management console
CLI
API
  1. Open the folder dashboard.
  2. Go to Yandex Data Processing.

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

By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command using the --folder-name or --folder-id parameter.

To get a list of Yandex Data Processing clusters in the default folder, run this command:

yc dataproc cluster list

Use the list API method.

Getting detailed information about a clusterGetting detailed information about a cluster

Management console
CLI
API
  1. Open the folder dashboard.
  2. Go to Yandex Data Processing.
  3. Click the name of your cluster.

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

By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command using the --folder-name or --folder-id parameter.

To get Yandex Data Processing cluster details, run the command:

yc dataproc cluster get <cluster_name_or_ID>

You can get the cluster ID and name with the list of clusters in the folder.

Use the get API method and provide the cluster ID in the clusterId request parameter.

You can get the cluster ID with the list of clusters in the folder.

Viewing operations with clustersViewing operations with clusters

All actions with Yandex Data Processing clusters are logged as a list of operations. Each operation gets its own unique ID.

Getting a list of operationsGetting a list of operations

Management console
CLI
API

To view operations with all Yandex Data Processing clusters, select Operations in the left-hand panel. The list that opens also includes operations with the clusters you deleted.

You can get a list of operations for a specific resource. The steps below describe how you can do this for a Yandex Data Processing cluster.

  1. In the management console, open the folder containing your cluster.

  2. Go to Yandex Data Processing.

  3. Select your cluster.

  4. Navigate to the Operations panel for the selected cluster.

    You will see a list of operations with the cluster.

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

By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command using the --folder-name or --folder-id parameter.

To get a list of Yandex Data Processing cluster operations, run this command:

yc dataproc cluster list-operations <cluster_name_or_ID>

Result:

+----------------------+---------------------+----------------------+---------------------+--------+--------------------------------+
|          ID          |     CREATED AT      |      CREATED BY      |     MODIFIED AT     | STATUS |          DESCRIPTION           |
+----------------------+---------------------+----------------------+---------------------+--------+--------------------------------+
| c9q2n4s13p5v******** | 2024-08-06 06:19:47 | ajej2i98kcjd******** | 2024-08-06 06:21:36 | DONE   | Create Data Processing cluster |
+----------------------+---------------------+----------------------+---------------------+--------+--------------------------------+

You can get the cluster ID and name with the list of clusters in the folder.

By default, information about operations is output as text. To get more detailed information, specify the yaml or json output data format using --format:

yc dataproc cluster list-operations epdplu8jn7sr******** --format yaml

Result:

- id: c9q2n4s13p5v********
  description: Create Data Processing cluster
  created_at: "2024-08-06T06:19:47.755364Z"
  created_by: ajej2i98kcjd********
  modified_at: "2024-08-06T06:21:36.095300Z"
  done: true
  metadata:
    '@type': type.googleapis.com/yandex.cloud.dataproc.v1.CreateClusterMetadata
    cluster_id: c9q77tr1aq3g********
  response:
    '@type': type.googleapis.com/yandex.cloud.dataproc.v1.Cluster
...

Use the listOperations REST API method for the Cluster resource or the ClusterService/ListOperations gRPC API call and provide the cluster ID in the request.

You can get the cluster ID with the list of clusters in the folder.

Getting operation detailsGetting operation details

  1. Get the list of cluster operations.

  2. Copy the ID of the operation you need.

  3. Get operation details:

    CLI
    API

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

    By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command using the --folder-name or --folder-id parameter.

    Run this command:

    yc operation get <operation_ID>
    

    Result:

    id: c9q2n4s13p5v********
    description: Create Data Processing cluster
    created_at: "2024-08-06T06:19:47.755364Z"
    created_by: ajej2i98kcjd********
    modified_at: "2024-08-06T06:21:36.095300Z"
    done: true
    metadata:
      '@type': type.googleapis.com/yandex.cloud.dataproc.v1.CreateClusterMetadata
      cluster_id: c9q77tr1aq3g********
    response:
      '@type': type.googleapis.com/yandex.cloud.dataproc.v1.Cluster
    ...
    

    Use the OperationService/Get gRPC API call and provide the operation ID in the request.

See alsoSee also

  • Working with operations

Was the article helpful?

Previous
All guides
Next
Creating a cluster
© 2026 Direct Cursus Technology L.L.C.