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
    • 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 Message Queue
    • Quick start
    • Supported tools
      • Python
      • Node.js
      • PHP
      • Celery
      • JMS
      • Laravel
      • Symfony
      • Terraform
      • Golang
  • Access management
  • Pricing policy
  • Terraform reference
  • Audit Trails events
  • Monitoring metrics
  • Public materials
  • FAQ

In this article:

  • Installation
  • Getting started
  • Example
  1. Getting started
  2. Code examples
  3. Celery

Example of using Yandex Message Queue with Celery

Written by
Yandex Cloud
Updated at May 13, 2024
View in Markdown
  • Installation
  • Getting started
  • Example

Celery is a task queue for Python that you can use to work with Message Queue.

InstallationInstallation

Install Celery and the necessary dependencies:

pip install celery
pip install celery[sqs]
pip install boto3
pip install pycurl

Set the environment variables:

export AWS_ACCESS_KEY_ID="<access_key_ID>"
export AWS_SECRET_ACCESS_KEY="<secret_key>"
export AWS_DEFAULT_REGION="ru-central1"

Getting startedGetting started

  1. Create a service account.
  2. Assign a role to the service account.
  3. Create a static access key.

ExampleExample

In this example:

  1. A task is enqueued.
  2. The enqueued tasks are executed.

To run the example:

  1. Copy the example to a file named mq_example.py:

    from celery import Celery
    import logging
    import boto3
    
    ENDPOINT = 'message-queue.api.cloud.yandex.net:443'
    
    broker='sqs://{}'.format(ENDPOINT)
    broker_transport_options = {
        'is_secure': True,
    }
    
    app = Celery('mq_example', broker=broker)
    app.conf.broker_transport_options = broker_transport_options
    
    @app.task
    def add(a, b):
        res = a + b
        app.log.get_default_logger().info('{} + {} = {}'.format(a, b, res))
        return res
    
    if __name__ == '__main__':
        add.delay(2, 3)
        print("Task scheduled, now run 'celery worker -A mq_example' to execute it")
    
  2. Run the task handler with the command:

    celery worker -A mq_example
    
  3. Enqueue a task with the command:

    python mq_example.py
    

By default, Celery creates a Message Queue queue named celery in the folder that the service account belongs to.

Was the article helpful?

Previous
PHP
Next
JMS
© 2026 Direct Cursus Technology L.L.C.