-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
35517: build: Upgrade base image for deployment dockerfile r=mberhault a=bdarnell Debian 8.x has unpatched security vulnerabilities in the glibc package (even though it's supposed to be in its LTS period?), so upgrade to the current 9.x. https://security-tracker.debian.org/tracker/source-package/glibc Release note (build change): Release Docker images are now built on Debian 9.8. 35647: sqltelemetry: make SQL telemetry more uniform, w/ linter r=knz a=knz This patch groups the telemetry counters for the SQL layer into a single package `sqltelemetry`. The package aims to document the telemetry counter in a way that's easily understandable / discoverable without having to read code. This also introduces the pattern required by @dt: that telemetry counter names generated dynamically to be generated in a way that's regular, subject to later formalization via a new API `telemetry.GetCounterf()` (so that we can automate the inventorization of all telemetry counters). This patch ensures that all the dynamic counter names go to `GetCounter(fmt.Sprintf(...))`, which we'll be able to re-structure at a later point. Finally it introduces the prefix `sql.plan`, in anticipation of a further split between `sql.parse`, `sql.plan`, `sql.exec`. Release note: None 35656: sql: add telemetry for SERIAL expansions r=knz a=knz First commit from #35647. Informs https://github.com/cockroachlabs/registration/issues/203 This adds telemetry for the SERIAL expansion strategies. Counter format: `sql.schema.serial.<normtype>.<coltype>` For example: `sql.schema.serial.rowid.SERIAL2` Release note (sql change): CockroachDB will now report how the SERIAL pseudo-type is expanded in table column definitions, when telemetry is enabled. Co-authored-by: Ben Darnell <[email protected]> Co-authored-by: Raphael 'kena' Poss <[email protected]>
- Loading branch information
Showing
19 changed files
with
367 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.