You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 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.
| 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 ||
159
159
160
160
## Message Retention Period {#retention-time}
161
161
@@ -172,9 +172,9 @@ Supported codecs are explicitly listed in each topic. When making an attempt to
@@ -216,4 +216,4 @@ During transactional writes to a topic, data is stored outside the partition unt
216
216
217
217
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.
218
218
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.
Copy file name to clipboardExpand all lines: ydb/docs/en/core/contributor/suggest-change.md
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,13 +15,15 @@ You need to have a GitHub account to suggest any changes to the {{ ydb-short-nam
15
15
* If you have personal keys and use skotty as ssh-agent:
16
16
* 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)
17
17
* Edit `~/.skotty/config.yaml` file by adding a section:
18
+
18
19
```yaml
19
20
keys_order:
20
21
- added
21
22
- insecure
22
23
- legacy
23
24
- secure
24
-
```
25
+
```
26
+
25
27
* If you have a yubikey, you can use the legacy key from the yubikey:
26
28
27
29
* Let's assume you have already configured yubikey (or configure yubikey locally)
`FollowerId` | ID of the partition tablet [follower](../concepts/glossary.md#tablet-follower). A value of 0 means the leader.<br/>Key: `3`.| `Uint32` | Instant
`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|
|`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|
0 commit comments