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 Managed Service for YTsaurus
  • Getting started
    • Running a PySpark job
  • Access management
  • Pricing policy
  • Terraform reference
  • Audit Trails events
  • Release notes

In this article:

  • Required paid resources
  • Getting started
  • Prepare your VM
  • Prepare your test data
  • Create and run a PySpark job
  • Delete the resources you created
  1. Tutorials
  2. Running a PySpark job

Running a PySpark job

Written by
Yandex Cloud
Updated at February 26, 2026
  • Required paid resources
  • Getting started
  • Prepare your VM
  • Prepare your test data
  • Create and run a PySpark job
  • Delete the resources you created

In a YTsaurus cluster, you can run Spark and PySpark jobs using the spark-submit script. It saves the calculation results to HDFS. For more information about spark-submit, see the Spark documentation. These jobs are executed in a Apache Spark™ cluster that runs on the computing resources of the YTsaurus cluster, using the SPYT tool.

The example below shows how to run an application in Python.

To run a PySpark job:

  1. Prepare the infrastructure.
  2. Prepare your VM.
  3. Prepare your test data.
  4. Create and run a PySpark job.

If you no longer need the resources you created, delete them.

Required paid resourcesRequired paid resources

  • The YTsaurus cluster, which includes the use of computing resources of cluster components and storage size (see YTsaurus pricing).
  • VM instance: use of computing resources, storage, public IP address, and OS (see Compute Cloud pricing).

Getting startedGetting started

Set up your infrastructure:

Manually
Terraform
  1. Create a service account named ytsaurus-sa with the managed-ytsaurus.editor role.

  2. Create a network named ytsaurus-network. Disable Create subnets when creating it.

  3. In ytsaurus-network, create a subnet with the following settings:

    • Name: ytsaurus-subnet-a
    • Availability zone: ru-central1-a
    • CIDR: 10.1.0.0/16
  4. Create security groups in ytsaurus-network:

    • For the virtual machine: a security group named vm-security-group with rules allowing incoming TCP traffic to port 22 from all addresses and outgoing traffic to all ports and addresses.

    • For the YTsaurus cluster: a security group named ytsaurus-security-group with a rule allowing incoming traffic on all ports from all addresses.

  5. Create a vm-ubuntu-24-04 virtual machine with the following parameters:

    • Operating system: Ubuntu 24.04
    • Availability zone: ru-central1-a
    • Subnet: ytsaurus-subnet-a
    • Security group: vm-security-group
    • Service account: ytsaurus-sa
  6. Create a YTsaurus cluster with the following settings:

    • Cluster type: Demo cluster
    • Cluster name: ytsaurus-cluster
    • Availability zone: ru-central1-a
    • Subnet: ytsaurus-subnet-a
    • Security group: ytsaurus-security-group
  1. If you do not have Terraform yet, install it.

  2. Get the authentication credentials. You can add them to environment variables or specify them later in the provider configuration file.

  3. Configure and initialize a provider. There is no need to create a provider configuration file manually, you can download it.

  4. Place the configuration file in a separate working directory and specify the parameter values. If you did not add the authentication credentials to environment variables, specify them in the configuration file.

  5. Download the ytsaurus-for-spark-jobs.tf configuration file to the same working directory.

    This file describes:

    • Network.
    • Subnet.
    • Security groups.
    • Service account to work with cluster resources.
    • Virtual machine.
    • YTsaurus cluster.
  6. In the ytsaurus-for-spark-jobs.tf configuration file, specify the required parameters.

  7. Validate your Terraform configuration files using this command:

    terraform validate
    

    Terraform will display any configuration errors detected in your files.

  8. Create the required infrastructure:

    1. Run this command to view the planned changes:

      terraform plan
      

      If you described the configuration correctly, the terminal will display a list of the resources to update and their parameters. This is a verification step that does not apply changes to your resources.

    2. If everything looks correct, apply the changes:

      1. Run this command:

        terraform apply
        
      2. Confirm updating the resources.

      3. Wait for the operation to complete.

    All the required resources will be created in the specified folder. You can check resource availability and their settings in the management console.

Prepare your VMPrepare your VM

  1. Connect to a virtual machine over SSH.

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

  3. Install the dependencies:

    sudo apt update && sudo apt install -y python3 python3-pip python3-venv
    
  4. Create and activate a virtual environment to run a Python script:

    python3 -m venv .venv/yt312 && \
    source .venv/yt312/bin/activate
    
  5. Install Java:

    sudo apt install -y openjdk-11-jdk
    
  6. Install the YTsaurus CLI:

    pip install ytsaurus-client
    
  7. Create an IAM token:

    yc iam create-token
    
  8. Get the service account ID:

    yc iam whoami
    
  9. Set the environment variables:

    export YT_PROXY=http://hp.<YTsaurus_cluster_ID>.ytsaurus.mdb.yandexcloud.net:32100 ; \
    export YT_TOKEN=<IAM_token> ; \
    export YT_USER=<service_account_ID>
    
  10. Get the SPYR version:

    yt list //home/spark/conf/releases
    

    Result:

    2.7.0
    
  11. Install the ytsaurus-spyt package of the same version as SPYT:

    pip install ytsaurus-spyt==2.7.0
    
  12. Get the Spark version from the name of the tgz file:

    yt find //home/spark/distrib --name *tgz
    

    Result:

    //home/spark/distrib/3/5/6/spark-3.5.6-bin-hadoop3.tgz
    
  13. Install pyspark of the same version as the spark distribution:

    pip install pyspark==3.5.6
    
  14. Activate the SPYT configuration:

    source spyt-env
    

    Result:

    SPYT environment has been successfully activated
    
  15. Check the value of the $SPARK_CONF_DIR variable:

    echo $SPARK_CONF_DIR
    

    Result:

    /home/<home_directory>/.venv/yt312/lib/python3.12/site-packages/spyt/conf
    

Prepare your test dataPrepare your test data

Run these commands on the VM:

  1. Create a table named table1 in YTsaurus:

    yt create table //tmp/table1 \
      --attributes '{schema = [{name = id; type = int64}; {name = text; type = string}]}'
    
  2. Write the data to the table:

    echo '{ "id": 0, "text": "Hello" } { "id": 1, "text": "World!" }' | yt write-table //tmp/table1 --format json
    

Create and run a PySpark jobCreate and run a PySpark job

Perform these actions on the VM:

  1. Create the spark-job.py file with the PySpark job.

    import spyt
    from pyspark import SparkConf
    
    conf = SparkConf()
    conf.set("spark.app.name","Show table")
    with spyt.direct_spark_session("http-proxies-lb.yt.svc.cluster.local", conf) as spark:
         spark.read.yt('//tmp/table1').show()
    
  2. Run the job:

    spark-submit --master "ytsaurus://${YT_PROXY}" \
      --deploy-mode cluster \
      --num-executors 1 \
      --conf spark.hadoop.yt.proxyNetworkName=external \
      --queue research \
      ./spark-job.py
    

    Result:

    ...
    25/12/09 23:29:49 INFO YTsaurusClusterApplication: Operation: fdff4aa2-d11767f6-e03e8-6affdd7c, State: running
    25/12/09 23:30:23 INFO YTsaurusClusterApplication: Operation: fdff4aa2-d11767f6-e03e8-6affdd7c, State: completed
    

Delete the resources you createdDelete the resources you created

Some resources are not free of charge. Delete the resources you no longer need to avoid paying for them:

Manually
Using Terraform
  • Virtual machine
  • YTsaurus cluster
  1. In the terminal window, go to the directory containing the infrastructure plan.

    Warning

    Make sure the directory has no Terraform manifests with the resources you want to keep. Terraform deletes all resources that were created using the manifests in the current directory.

  2. Delete resources:

    1. Run this command:

      terraform destroy
      
    2. Confirm deleting the resources and wait for the operation to complete.

    All the resources described in the Terraform manifests will be deleted.

Was the article helpful?

Previous
Deleting a cluster
Next
Authentication
© 2026 Direct Cursus Technology L.L.C.