Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex Data Processing
  • Getting started
    • All guides
      • Information about existing clusters
      • Creating a cluster
      • Connecting to a cluster
      • Updating a cluster
      • Migrating a lightweight cluster to a different availability zone
      • Deleting a cluster
    • Setting up 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 detailed information about an operation
  • 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 May 5, 2025
  • Getting a list of clusters in a folder
  • Getting detailed information about a cluster
  • Viewing operations with clusters
    • Getting a list of operations
    • Getting detailed information about an operation
    • See also

You can get detailed information 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

Go to the folder page and select Yandex Data Processing.

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

The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID> command. You can specify a different folder using the --folder-name or --folder-id parameter.

To request a list of Yandex Data Processing clusters in the default folder, run the 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. Go to the folder page and select Yandex Data Processing.
  2. Click the cluster name.

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

The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID> command. You can specify a different folder 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 a 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 a 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 is assigned a unique ID.

Getting a list of operationsGetting a list of operations

Management console
CLI
API

To view operations with all Yandex Data Processing clusters, in the left-hand panel, select Operations. The list that opens also includes operations with the clusters that were 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 with the cluster.

  2. Select Yandex Data Processing.

  3. Select the cluster you need.

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

    You will see a list of operations with the selected cluster.

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

The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID> command. You can specify a different folder using the --folder-name or --folder-id parameter.

To get a list of operations for a Yandex Data Processing cluster, 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 a list of clusters in the folder.

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

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 a list of clusters in the folder.

Getting detailed information about an operationGetting detailed information about an operation

  1. Get a list of operations for a cluster.

  2. Copy the operation ID.

  3. Get detailed information about the operation:

    CLI
    API

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

    The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID> command. You can specify a different folder 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
© 2025 Direct Cursus Technology L.L.C.