Skip to content

Commit 6a0ec72

Browse files
DataUI VCS Robottatlush
DataUI VCS Robot
authored andcommitted
Release 17.02.2025
* DataSphere: added information on working DataSphere Jobs with Spark connector. * Translations updated. * Fixes and improvements.
1 parent 90b52a6 commit 6a0ec72

File tree

354 files changed

+10713
-1508
lines changed

Some content is hidden

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

354 files changed

+10713
-1508
lines changed

Diff for: en/_assets/console-icons/code-trunk.svg

+3
Loading
Loading

Diff for: en/_assets/datalens/report/demo_report.png

723 KB
Loading
-28.9 KB
Binary file not shown.

Diff for: en/_assets/marketplace/folder-select.png

151 KB
Loading

Diff for: en/_assets/marketplace/subscription-cancel.png

134 KB
Loading

Diff for: en/_assets/marketplace/subscriptions.png

306 KB
Loading

Diff for: en/_assets/support/yb-burger.svg

+5
Loading

Diff for: en/_assets/support/yb-clear-log.svg

+8
Loading

Diff for: en/_assets/support/yb-export-har.svg

+11
Loading

Diff for: en/_assets/support/yb-stop-rec.svg

+8
Loading

Diff for: en/_includes/api-gateway/trigger-before-you-begin.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
To create a trigger, you need:
1+
To create a trigger, you will need:
22

3-
* API gateway. Messages will be sent to WebSocket connections connected to the API gateway. If you do not have an API gateway, [create one](../../api-gateway/operations/api-gw-create.md).
3+
* API gateway. Messages will be sent to WebSocket connections accessing the API gateway at the path specified in the trigger settings. If you do not have an API gateway, [create one](../../api-gateway/operations/api-gw-create.md).
4+
5+
{% note info %}
6+
7+
The trigger does not call the API gateway when sending messages to WebSocket connections.
8+
9+
{% endnote %}
410

511
* [Service account](../../iam/concepts/users/service-accounts.md) with the `api-gateway.websocketBroadcaster` role. If you do not have a service account, [create one](../../iam/operations/sa/create.md).

Diff for: en/_includes/application-load-balancer/cli-Stream-where-legend.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Where:
22
* `--panic-threshold`: Panic mode threshold.
3-
* `--enable-proxy-protocol`: If this option is enabled, the load balancer will send metadata about its connection to the client, including its IP, to the backend over the [PROXY protocol from HAProxy](https://www.haproxy.org/download/1.9/doc/proxy-protocol.txt). If this option is not specified, only the load balancer's IP address will be provided to the backend.
3+
* `--enable-proxy-protocol`: With this option enabled, the load balancer will send metadata about its connection to the client, including its IP, to the backend over the [PROXY protocol from HAProxy](https://www.haproxy.org/download/1.9/doc/proxy-protocol.txt). If the option is not specified, only the load balancer's IP address will be provided to the backend.
4+
* `--keep-connections-on-host-health-failure`: Keeps the connection alive even if the health check fails.
45
* `--stream-healthcheck`: Resource health check parameters:
56
* `port`: Port.
67
* `healthy-threshold`: Healthy threshold.
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
```bash
22
yc alb backend-group add-stream-backend \
33
--backend-group-name <backend_group_name> \
4-
--name <name_of_backend_to_add> \
4+
--name <name_of_backend_you_are_adding> \
55
--weight <backend_weight> \
66
--port <backend_port> \
77
--target-group-id=<target_group_ID> \
88
--panic-threshold 90 \
99
--enable-proxy-protocol \
10+
--keep-connections-on-host-health-failure \
1011
--stream-healthcheck port=80,healthy-threshold=10,unhealthy-threshold=15,\
1112
timeout=10s,interval=2s,send-text=<data_to_endpoint>,receive-text=<data_from_endpoint>
1213
```
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
```bash
22
yc alb backend-group add-http-backend \
33
--backend-group-name <backend_group_name> \
4-
--name <name_of_backend_being_added> \
4+
--name <name_of_backend_you_are_adding> \
55
--weight <backend_weight> \
66
--port <backend_port> \
77
--target-group-id=<target_group_ID> \
88
--panic-threshold 90 \
9-
--http-healthcheck port=80,healthy-threshold=10,unhealthy-threshold=15,\
9+
--http-healthcheck port=80,healthy-threshold=10,unhealthy-threshold=15,expected-statuses=211,\
1010
timeout=10s,interval=2s,host=<host_address>,path=<path>
1111
```

0 commit comments

Comments
 (0)