Skip to content

Commit 3de8cda

Browse files
author
DataUI VCS Robot
committed
Release 13.01.2022
* Data Proc: added public IP configuration. * Translations updated. * Fixes and improvements.
1 parent 67711df commit 3de8cda

File tree

229 files changed

+12675
-2054
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

229 files changed

+12675
-2054
lines changed
1.11 KB
Loading

en/_assets/tracker/add_user.png

520 Bytes
Loading

en/_assets/tracker/at.png

5.11 KB
Loading
39 KB
Loading
11.2 KB
Loading
-1.04 KB
Binary file not shown.

en/_assets/tracker/checklist-save.png

-868 Bytes
Binary file not shown.

en/_assets/tracker/copy-ticket.png

618 Bytes
Loading
978 Bytes
Loading

en/_assets/tracker/delete-comment.png

4.69 KB
Loading

en/_assets/tracker/dots.png

4.34 KB
Loading

en/_assets/tracker/link.png

4.99 KB
Loading

en/_assets/tracker/logout-fed.png

4.98 KB
Loading
979 Bytes
Loading
257 Bytes
Loading

en/_assets/tracker/open-text.png

1.08 KB
Loading

en/_assets/tracker/pin.png

5.02 KB
Loading

en/_assets/tracker/send.png

4.71 KB
Loading

en/_assets/tracker/share-comment.png

4.95 KB
Loading
Loading
31.5 KB
Loading
-16.2 KB
Binary file not shown.
-19.9 KB
Binary file not shown.

en/_includes/functions-limits.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ Calls are distributed across [availability zones](../overview/concepts/geo-scope
2626
| **Other restrictions** |
2727
| Maximum size of the JSON structure of a [request](../functions/concepts/function-invoke.md#request) and [response](../functions/concepts/function-invoke.md#response) | 3.5 MB |
2828
| Maximum [temporary file size](../functions/concepts/runtime/environment-variables.md#files) | 512 MB |
29-
| Maximum function execution time before [timeout](../functions/operations/function/version-manage.md#version-create) (including original initialization at first call) | 10 minutes |
29+
| Maximum function execution time before [timeout](../functions/operations/function/version-manage.md#version-create), including initialization at first call | 10 minutes |
30+
| Maximum total environment variable storage, including variable names | 4 KB |
3031
| Maximum number of [triggers](../functions/concepts/trigger/index.md) per [message queue](../message-queue/concepts/queue.md) | 1 |
3132

3233
#### Other restrictions {#functions-other-restrictions}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
If the request is successful, the API returns a response with code `200 OK`.
2+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
If the request is successful, the API returns a response with code `201 Created`.
2+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
If the request is successful, the API returns a response with code `204`.
2+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
400
2+
: One or more request parameters have an invalid value.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
401
2+
: The user isn't authorized. Make sure to perform the actions described in [API access](../../../tracker/concepts/access.md).
3+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
403
2+
: Insufficient rights to perform this action. You can check what rights you have in the {{ tracker-name }} interface. The same rights are required to perform an action via the API and interface.
3+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
404
2+
: The requested object was not found. You may have specified an invalid object ID or key.
3+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
500
2+
: Internal service error. Try again later.
3+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
503
2+
: The API service is temporarily unavailable.
3+

en/_includes/tracker/api/headings.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
#### Headers {#req-headers}
1+
{% cut "Headers" %}
22

33
- **Host**
44

5-
API host address:
5+
Address of the node that provides the API:
66

77
```
8-
https://api.tracker.yandex.net
8+
{{ host }}
99
```
1010
1111
- **Authorization**
@@ -16,7 +16,10 @@
1616
OAuth 0c4181a7c2cf4521964a72ff57a34a07
1717
```
1818
19+
1920
- **X-Org-ID**
2021
21-
Company ID.
22+
Organization ID.
23+
24+
{% endcut %}
2225
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{% cut "Resource" %}
2+
3+
| Parameter | Description | Data type |
4+
| -------- | -------- | ---------- |
5+
| \<issue-id> | ID or key of the current issue. | String |
6+
7+
{% endcut %}
8+

en/_includes/tracker/api/user.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Parameter | Description | Data type
2+
----- | ----- | -----
3+
self | Address of the API resource with information about the user. | String
4+
id | User ID. | String
5+
display | User's name displayed. | String
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{{ tracker-name }}On the top panel, click ![](../../_assets/tracker/tracker-settings.png)**Personal settings** or follow the link: [{{ link-settings }}]({{ link-settings }}).
2+

en/functions/concepts/runtime/environment-variables.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,26 @@
22

33
## Environment variables {#env}
44

5-
A list of environment variables that are defined in the {{ sf-name }} runtime environment and can be used by functions.
5+
The table provides a list of environment variables defined in the {{ sf-name }} runtime and available to a function. You cannot override these.
66

77
| Key | Value |
88
| ---- | ---- |
99
| `_HANDLER` | The handler location specified for the function. |
1010
| `AWS_LAMBDA_RUNTIME_API` | The runtime host and API port. |
11-
| `LAMBDA_RUNTIME_DIR` | The path to the runtime libraries. |
12-
| `LAMBDA_TASK_ROOT` | The path to your function code. |
11+
| `LAMBDA_RUNTIME_DIR` | Path to runtime libraries. |
12+
| `LAMBDA_TASK_ROOT` | Path to folder containing external function files. |
1313
| `PATH` | The set of folders with executable files. |
1414

15-
You can [add environment variables](../../operations/function/version-manage.md#version-env) in the management console.
15+
You can [add other environment variables](../../operations/function/version-manage.md#version-env) when creating a function version. Environment variables, including variable names, are [limited](../limits.md#limits) to 4 KB of space.
16+
17+
You cannot calculate environment variables. Environment variable values are string constants. You can only calculate these within function code.
18+
19+
You can retrieve environment variables using standard programming language tools.
1620

1721
## User files {#files}
1822

1923
User files are stored in two directories:
2024

2125
- `/function/code`: The user's working directory. It contains all the code of your function and all the files uploaded as a ZIP archive. You can use a relative path to access it.
22-
- `/tmp`: A directory to store temporary files used for optimizing repeated function instance calls. [The maximum size of temporary files is limited](../limits.md#limits) to 512 MB.
26+
- `/tmp`: directory for temporary files. It is used by the service to optimize repeat function calls that are sequentially processed by one of its instances. When a function instance runs its course, its data in `/tmp` are deleted. [The maximum size](../limits.md#limits) of temporary files is limited to 512 MB.
2327

en/functions/concepts/runtime/index.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@
22
title: Runtime. Overview
33
description: The runtime environment is selected when creating a function. It provides additional libraries and environment variables that can be accessed from the function code. You can change the selected runtime environment by updating the function configuration.
44
---
5+
# Runtime environment. Overview
56

6-
# Runtime. Overview
7-
8-
The runtime environment is selected when creating a function. It provides additional libraries and environment variables that can be accessed from the function code. You can change the selected runtime environment by updating the function configuration.
7+
The runtime environment is selected when creating a function. It provides additional libraries and environment variables that can be accessed from the function code. You can change the selected runtime environment by updating the function configuration. The [preloaded runtime environment](./preload-runtime.md) automatically updates to the latest version in the function version settings.
98

109
Runtime environment characteristics:
1110

1211
- Operating system: Ubuntu 18.04 LTS.
13-
- Linux Kernel v. 4.14.
12+
- Linux kernel: 4.19.
1413

15-
When invoking a function, the service tries to use the runtime environment from the previous invocation if it's still available. This lets you save time preparing the runtime environment and resources, such as DB connections and temporary files, which don't have to be re-created when the runtime environment is used again.
14+
A first function call creates a function instance. The service uses existing function instances for new calls, if available. This lets you save time preparing the runtime environment and resources, such as DB connections and temporary files, which don't have to be re-created when the runtime environment is used again.
1615

1716
{% note info %}
1817

@@ -38,7 +37,7 @@ Runtime environments available in {{ sf-name }}.
3837
| Python 3.7 | `python37` | No |
3938
| **Go** | | |
4039
| Go 1.17 | `golang117` | No |
41-
| Go 1.16 | `golang114` | No |
40+
| Go 1.16 | `golang116` | No |
4241
| **Java** | | |
4342
| Java 11 | `java11` | No |
4443
| **.NET Core** | | |

0 commit comments

Comments
 (0)