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.
All solutions
    • All solutions for Cloud Functions
    • Resolving the `CORS` error when accessing the SpeechKit, Vision OCR, or Translate API from a web application frontend
    • Resolving HTTP 499 errors when working with a cloud function or Serverless Containers container
    • Resolving the `No node can serve the request (Too many reschedules)` error
    • Resolving the `No node can serve the request (concurrent requests exceeded)` error
    • How to access a function from MDB
    • How to set up a static IP address
    • How to call cloud functions asynchronously

In this article:

  • Case description
  • Solution
  1. Cloud Functions
  2. How to call cloud functions asynchronously

How to call cloud functions asynchronously

Written by
Yandex Cloud
Updated at December 17, 2025
View in Markdown
  • Case description
  • Solution

Case descriptionCase description

  • Implementing an asynchronous call of a cloud function.
  • Closing the connection and yielding a response immediately without waiting for the cloud function to complete.
  • Keeping a function running for longer than 10 minutes.

SolutionSolution

Cloud Functions does not support direct asynchronous calls: as long as a Serverless Containers container or cloud function is running, it cannot return an HTTP response. Then, execution stops as soon as the container or function sends a response.

However, you can implement this workflow using API Gateway and Data Streams as a workaround.

  1. Create an API Gateway gateway to act as a webhook handler, and connect it to a Data Streams data stream.
  2. Configure a data stream trigger that will call your container or cloud function.

In this setup, the API Gateway gateway will immediately return an HTTP 200 OK response, while the container or function will process the request asynchronously.

Warning

Note that code execution inside a Serverless Containers container or cloud function, even when triggered via a stream trigger, cannot exceed 10 minutes. For more information, see this guide.

If your workload can be split into multiple stages, you can build an asynchronous pipeline, when the first call performs its computation and then triggers the next stage by writing to the same Data Streams data stream. Keep in mind, however, that subsequent calls may run on different container or function instances.

Was the article helpful?

Previous
How to set up a static IP address
Next
All solutions for IAM
© 2026 Direct Cursus Technology L.L.C.