Overview
With Cloud Functions, you can run applications written in Go. The service provides the runtime environment with Go 1.14 and Ubuntu 18.04 LTS.
You can connect the SDK library to the runtime to work with the Yandex.Cloud API. For more information about how to use the SDK, see Using the SDK.
When creating a new function version the builder automatically installs all declared dependencies required for the function to run. For more information about the requirements and restrictions, see Building and managing dependencies.
The runtime environment automatically loads your code and invokes the request handler you specified. It receives an incoming request and the invocation context as arguments. The context contains additional information about the function parameters.
Cloud Functions automatically captures standard application output streams and sends them to the centralized logging system available in Yandex.Cloud. This system also logs service records about the start and end of each function and any errors that occur during its execution. For more information about the log format, see Logging.
To learn more about how to write in Go or how certain statements work, we recommend taking A Tour of Go.