Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Copy v17.0.0-rc changelog to main #13248

Merged
merged 2 commits into from
Jun 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog/14.0/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## v14.0
* **[14.0.5](14.0.5)**
* [Changelog](14.0.5/changelog.md)
* [Release Notes](14.0.5/release_notes.md)

* **[14.0.4](14.0.4)**
* [Changelog](14.0.4/changelog.md)
* [Release Notes](14.0.4/release_notes.md)
Expand Down
4 changes: 4 additions & 0 deletions changelog/15.0/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## v15.0
The dedicated team for this release can be found [here](team.md).
* **[15.0.3](15.0.3)**
* [Changelog](15.0.3/changelog.md)
* [Release Notes](15.0.3/release_notes.md)

* **[15.0.2](15.0.2)**
* [Changelog](15.0.2/changelog.md)
* [Release Notes](15.0.2/release_notes.md)
Expand Down
526 changes: 526 additions & 0 deletions changelog/17.0/17.0.0/changelog.md

Large diffs are not rendered by default.

460 changes: 460 additions & 0 deletions changelog/17.0/17.0.0/release_notes.md

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions changelog/17.0/17.0.0/summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- **[New command line flags and behavior](#new-flag)**
- [Builtin backup: read buffering flags](#builtin-backup-read-buffering-flags)
- [Manifest backup external decompressor command](#manifest-backup-external-decompressor-command)
- [Throttler config via topo enabled by default](#throttler-config-via-topo)
- **[New stats](#new-stats)**
- [Detailed backup and restore stats](#detailed-backup-and-restore-stats)
- [VTtablet Error count with code](#vttablet-error-count-with-code)
Expand All @@ -29,6 +30,7 @@
- [Settings pool enabled](#settings-pool)
- **[VTGate](#vtgate)**
- [StreamExecute GRPC API](#stream-execute)
- [Insert Planner Gen4](#insert-planner)
- **[Deprecations and Deletions](#deprecations-and-deletions)**
- [Deprecated Flags](#deprecated-flags)
- [Deprecated Stats](#deprecated-stats)
Expand Down Expand Up @@ -164,6 +166,12 @@ This feature enables the following flow:
```
2. Restore that backup with a mere `Restore` command, without having to specify `--external-decompressor`.

#### <a id="throttler-config-via-topo" />vttablet --throttler-config-via-topo

This flag was introduced in v16 and defaulted to `false`. In v17 it defaults to `true`, and there is no need to supply it.

Note that this flag overrides `--enable-lag-throttler` and `--throttle-threshold`, which now give warnings, and will be removed in v18.

### <a id="new-stats"/>New stats

#### <a id="detailed-backup-and-restore-stats"/>Detailed backup and restore stats
Expand Down Expand Up @@ -382,6 +390,13 @@ so that it can be persisted with the client and sent back to VTGate on the next
This does not impact anyone using the mysql client library to connect to VTGate.
This could be a breaking change for grpc api users based on how they have implemented their grpc clients.

#### <a id="insert-planner"/> Insert Planning with Gen4

Gen4 planner was made default in v14 for `SELECT` queries. In v15 `UPDATE` and `DELETE` queries were moved to Gen4 framework.
With this release `INSERT` queries are moved to Gen4.

Clients can move to old v3 planner for inserts by using `V3Insert` planner version with `--planner-version` vtgate flag or with comment directive /*vt+ planner=<planner_version>` for individual query.

### <a id="deprecations-and-deletions"/>Deprecations and Deletions

- The deprecated `automation` and `automationservice` protobuf definitions and associated client and server packages have been removed.
Expand Down
2 changes: 2 additions & 0 deletions changelog/17.0/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
## v17.0
* **[17.0.0](17.0.0)**
* [Changelog](17.0.0/changelog.md)
* [Release Notes](17.0.0/release_notes.md)