Skip to content

Commit 4138c79

Browse files
authored
Fix linter warnings (#18514)
1 parent b61d000 commit 4138c79

Some content is hidden

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

59 files changed

+868
-681
lines changed

ydb/docs/en/core/changelog-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Release date: April 15, 2025
1414
* [auto-partitioning mode](./concepts/topic.md#autopartitioning) for topics
1515
* [transactions involving topics and row-oriented tables simultaneously](./concepts/transactions.md#topic-table-transactions)
1616
* [volatile distributed transactions](./contributor/datashard-distributed-txs.md#volatile-transactions)
17-
17+
1818

1919
* Added the ability to [read and write to a topic](./reference/kafka-api/examples.md#kafka-api-usage-examples) using the Kafka API without authentication.
2020

ydb/docs/en/core/concepts/topic.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Sequence numbers are not used if [no-deduplication mode](#no-dedup) is enabled.
155155
| Type | Example | Description |
156156
|----------| --- |------------------------------------------------------------------------------------------------------------------------------------|
157157
| File | Offset of transferred data from the beginning of a file | You can't delete lines from the beginning of a file, since this will lead to skipping some data as duplicates or losing some data. |
158-
| DB table | Auto-increment record ID |
158+
| DB table | Auto-increment record ID | |
159159

160160
## Message Retention Period {#retention-time}
161161

@@ -172,9 +172,9 @@ Supported codecs are explicitly listed in each topic. When making an attempt to
172172
| `raw` | No compression. |
173173
| `gzip` | [Gzip](https://en.wikipedia.org/wiki/Gzip) compression. |
174174
{% if audience != "external" %}
175-
`lzop` | [lzop](https://en.wikipedia.org/wiki/Lzop) compression.
175+
| `lzop` | [lzop](https://en.wikipedia.org/wiki/Lzop) compression. |
176176
{% endif %}
177-
`zstd` | [zstd](https://en.wikipedia.org/wiki/Zstd) compression.
177+
| `zstd` | [zstd](https://en.wikipedia.org/wiki/Zstd) compression. |
178178

179179
## Consumer {#consumer}
180180

@@ -216,4 +216,4 @@ During transactional writes to a topic, data is stored outside the partition unt
216216

217217
There are no additional constraints when working with topics within a transaction. It is possible to write large amounts of data to a topic, write to multiple partitions, and read with multiple consumers.
218218

219-
However, it is recommended to consider that data is published only at transaction commit. Therefore, if a transaction is long-running, the data will become visible only after a significant delay.
219+
However, it is recommended to consider that data is published only at transaction commit. Therefore, if a transaction is long-running, the data will become visible only after a significant delay.

ydb/docs/en/core/contributor/suggest-change.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ You need to have a GitHub account to suggest any changes to the {{ ydb-short-nam
1515
* If you have personal keys and use skotty as ssh-agent:
1616
* Add keys to skotty with command [ssh-add](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent?platform=mac#adding-your-ssh-key-to-the-ssh-agent)
1717
* Edit `~/.skotty/config.yaml` file by adding a section:
18+
1819
```yaml
1920
keys_order:
2021
- added
2122
- insecure
2223
- legacy
2324
- secure
24-
```
25+
```
26+
2527
* If you have a yubikey, you can use the legacy key from the yubikey:
2628
2729
* Let's assume you have already configured yubikey (or configure yubikey locally)

ydb/docs/en/core/dev/system-views.md

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -21,38 +21,38 @@ Cumulative metrics (`RowReads`, `RowUpdate`, `LockAcquired`, etc.) store accumul
2121

2222
Table structure:
2323

24-
Column | Description | Data type | Instant/Cumulative
25-
--- | --- | --- | ---
26-
`OwnerId` | ID of the SchemeShard table.<br/>Key: `0`. | `Uint64` | Instant
27-
`PathId` | ID of the SchemeShard path.<br/>Key: `1`. | `Uint64` | Instant
28-
`PartIdx` | Partition sequence number.<br/>Key: `2`. | `Uint64` | Instant
29-
`FollowerId` | ID of the partition tablet [follower](../concepts/glossary.md#tablet-follower). A value of 0 means the leader.<br/>Key: `3`.| `Uint32` | Instant
30-
`DataSize` | Approximate partition size in bytes. | `Uint64` | Instant
31-
`RowCount` | Approximate number of rows. | `Uint64` | Instant
32-
`IndexSize` | Partition index size in bytes. | `Uint64` | Instant
33-
`CPUCores` | Instantaneous value of the load on the partition (the share of the CPU core time spent by the actor of the partition). | `Double` | Instant
34-
`TabletId` | ID of the partition tablet. | `Uint64` | Instant
35-
`Path` | Full path to the table. | `Utf8` | Instant
36-
`NodeId` | ID of the partition node. | `Uint32` | Instant
37-
`StartTime` | Last time of the launch of the partition tablet. | `Timestamp` | Instant
38-
`AccessTime` | Last time of reading from the partition. | `Timestamp` | Instant
39-
`UpdateTime` | Last time of writing to the partition. | `Timestamp` | Instant
40-
`RowReads` | Number of point reads. | `Uint64` | Cumulative
41-
`RowUpdates` | Number of rows written. | `Uint64` | Cumulative
42-
`RowDeletes` | Number of rows deleted. | `Uint64` | Cumulative
43-
`RangeReads` | Number of range reads. | `Uint64` | Cumulative
44-
`RangeReadRows` | Number of rows read in ranges. | `Uint64` | Cumulative
45-
`InFlightTxCount` | Number of in-flight transactions. | `Uint64` | Instant
46-
`ImmediateTxCompleted` | Number of completed [single-shard transactions](../concepts/glossary.md#transactions). | `Uint32` | Cumulative
47-
`CoordinatedTxCompleted` | Number of completed [distributed transactions](../concepts/glossary.md#transactions). | `Uint64` | Cumulative
48-
`TxRejectedByOverload` | Number of transactions cancelled due to [overload](../troubleshooting/performance/queries/overloaded-errors.md). | `Uint64` | Cumulative
49-
`TxRejectedByOutOfStorage` | Number of transactions cancelled due to lack of storage space. | `Uint64` | Cumulative
50-
`LastTtlRunTime` | Launch time of the last TTL erasure procedure | `Timestamp` | Instant
51-
`LastTtlRowsProcessed` | Number of rows checked during the last TTL erasure procedure | `Uint64` | Instant
52-
`LastTtlRowsErased` | Number of rows deleted during the last TTL erasure procedure | `Uint64` | Instant
53-
`LocksAcquired` | Number of [locks](../contributor/datashard-locks-and-change-visibility.md) acquired. | `Uint64` | Cumulative
54-
`LocksWholeShard` | The number of ["whole shard" locks](../contributor/datashard-locks-and-change-visibility.md#limitations) taken. | `Uint64` | Cumulative
55-
`LocksBroken` | Number of [broken locks](../contributor/datashard-locks-and-change-visibility.md#high-level-overview). | `Uint64` | Cumulative
24+
| Column | Description | Data type | Instant/Cumulative |
25+
| --- | --- | --- | --- |
26+
| `OwnerId` | ID of the SchemeShard table.<br/>Key: `0`. | `Uint64` | Instant |
27+
| `PathId` | ID of the SchemeShard path.<br/>Key: `1`. | `Uint64` | Instant |
28+
| `PartIdx` | Partition sequence number.<br/>Key: `2`. | `Uint64` | Instant |
29+
| `FollowerId` | ID of the partition tablet [follower](../concepts/glossary.md#tablet-follower). A value of 0 means the leader.<br/>Key: `3`.| `Uint32` | Instant |
30+
| `DataSize` | Approximate partition size in bytes. | `Uint64` | Instant |
31+
| `RowCount` | Approximate number of rows. | `Uint64` | Instant |
32+
| `IndexSize` | Partition index size in bytes. | `Uint64` | Instant |
33+
| `CPUCores` | Instantaneous value of the load on the partition (the share of the CPU core time spent by the actor of the partition). | `Double` | Instant |
34+
| `TabletId` | ID of the partition tablet. | `Uint64` | Instant |
35+
| `Path` | Full path to the table. | `Utf8` | Instant |
36+
| `NodeId` | ID of the partition node. | `Uint32` | Instant |
37+
| `StartTime` | Last time of the launch of the partition tablet. | `Timestamp` | Instant |
38+
| `AccessTime` | Last time of reading from the partition. | `Timestamp` | Instant |
39+
| `UpdateTime` | Last time of writing to the partition. | `Timestamp` | Instant |
40+
| `RowReads` | Number of point reads. | `Uint64` | Cumulative |
41+
| `RowUpdates` | Number of rows written. | `Uint64` | Cumulative |
42+
| `RowDeletes` | Number of rows deleted. | `Uint64` | Cumulative |
43+
| `RangeReads` | Number of range reads. | `Uint64` | Cumulative |
44+
| `RangeReadRows` | Number of rows read in ranges. | `Uint64` | Cumulative |
45+
| `InFlightTxCount` | Number of in-flight transactions. | `Uint64` | Instant |
46+
| `ImmediateTxCompleted` | Number of completed [single-shard transactions](../concepts/glossary.md#transactions). | `Uint32` | Cumulative |
47+
| `CoordinatedTxCompleted` | Number of completed [distributed transactions](../concepts/glossary.md#transactions). | `Uint64` | Cumulative |
48+
| `TxRejectedByOverload` | Number of transactions cancelled due to [overload](../troubleshooting/performance/queries/overloaded-errors.md). | `Uint64` | Cumulative |
49+
| `TxRejectedByOutOfStorage` | Number of transactions cancelled due to lack of storage space. | `Uint64` | Cumulative |
50+
| `LastTtlRunTime` | Launch time of the last TTL erasure procedure | `Timestamp` | Instant |
51+
| `LastTtlRowsProcessed` | Number of rows checked during the last TTL erasure procedure | `Uint64` | Instant |
52+
| `LastTtlRowsErased` | Number of rows deleted during the last TTL erasure procedure | `Uint64` | Instant |
53+
| `LocksAcquired` | Number of [locks](../contributor/datashard-locks-and-change-visibility.md) acquired. | `Uint64` | Cumulative |
54+
| `LocksWholeShard` | The number of ["whole shard" locks](../contributor/datashard-locks-and-change-visibility.md#limitations) taken. | `Uint64` | Cumulative |
55+
| `LocksBroken` | Number of [broken locks](../contributor/datashard-locks-and-change-visibility.md#high-level-overview). | `Uint64` | Cumulative |
5656

5757
### Example queries {#partitions-examples}
5858

ydb/docs/en/core/downloads/yandex-enterprise-database.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,34 +31,50 @@ Yandex Enterprise Database distributions are available for download via the link
3131
|| **Version** | **Release date** | **Download** | **Checksums** | **Changelog** ||
3232
|| **v24.3** | | | | ||
3333
|| v.24.3.13.11 | 06.03.2024 |
34+
3435
- [Distribution](https://binaries.ясубд.рф/release/24.3.13.11/yasubd-24.3.13.11-linux-amd64.tar.xz)
3536
- [Debug symbols](https://binaries.ясубд.рф/release/24.3.13.11/yasubd-24.3.13.11-linux-amd64-debug.tar.xz)
37+
3638
|
39+
3740
- [For distribution](https://binaries.ясубд.рф/release/24.3.13.11/checksums.txt)
3841
- [For debug symbols](https://binaries.ясубд.рф/release/24.3.13.11/checksums.debug.txt)
42+
3943
| - ||
4044
|| v.24.3.13.10 | 24.12.2024 |
45+
4146
- [Distribution](https://binaries.ясубд.рф/release/24.3.13.10/yasubd-24.3.13.10-linux-amd64.tar.xz)
4247
- [Debug symbols](https://binaries.ясубд.рф/release/24.3.13.10/yasubd-24.3.13.10-linux-amd64-debug.tar.xz)
48+
4349
|
50+
4451
- [For distribution](https://binaries.ясубд.рф/release/24.3.13.10/checksums.txt)
4552
- [For debug symbols](https://binaries.ясубд.рф/release/24.3.13.10/checksums.debug.txt)
53+
4654
| [See list](../changelog-server.md#24-3) ||
4755
|| **v24.2** | | | | ||
4856
|| v.24.2.7.1 | 20.08.2024 |
57+
4958
- [Distribution](https://binaries.ясубд.рф/release/24.2.7.1/yasubd-24.2.7.1-linux-amd64.tar.xz)
5059
- [Debug symbols](https://binaries.ясубд.рф/release/24.2.7.1/yasubd-24.2.7.1-linux-amd64-debug.tar.xz)
60+
5161
|
62+
5263
- [For distribution](https://binaries.ясубд.рф/release/24.2.7.1/checksums.txt)
5364
- [For debug symbols](https://binaries.ясубд.рф/release/24.2.7.1/checksums.debug.txt)
65+
5466
| [See list](../changelog-server.md#24-2) ||
5567
|| **v24.1** | | | | ||
5668
|| v.24.1.18.1 | 28.06.2024 |
69+
5770
- [Distribution](https://binaries.ясубд.рф/release/24.1.18.1/yasubd-24.1.18.1-linux-amd64.tar.xz)
5871
- [Debug symbols](https://binaries.ясубд.рф/release/24.1.18.1/yasubd-24.1.18.1-linux-amd64-debug.tar.xz)
72+
5973
|
74+
6075
- [For distribution](https://binaries.ясубд.рф/release/24.1.18.1/checksums.txt)
6176
- [For debug symbols](https://binaries.ясубд.рф/release/24.1.18.1/checksums.debug.txt)
77+
6278
| [See list](../changelog-server.md#24-1) ||
6379
|| **v23.4** | | | | ||
6480
|| v.23.4.11.1 | 15.05.2024 | [Distribution](https://binaries.ясубд.рф/release/23.4.11.1/yasubd-23.4.11.1-linux-amd64.tar.gz) | [Checksums](https://binaries.ясубд.рф/release/23.4.11.1/checksums.txt) | [See list](../changelog-server.md#23-4) ||

0 commit comments

Comments
 (0)