-
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.
91604: tenant: add support to Log endpoints to status server r=abarganier,knz a=dhartunian Previously, the tenant status server did not support the log-file related endpoints leading to missing logs in the debug.zip when generating for a tenant server. This commit migrates the implementations from the standard status server into the tenant, adjusts for fanout to instances instead of nodes, and leaves the rest as-is. Resolves: #91992 Epic: CC-5168 Release note (ops change): generating a debug.zip for a tenant server will now include logs in the zip file. 92010: systemschema: support rbr system.sql_instances r=JeffSwenson a=JeffSwenson ## instancestorage: clean up codec interface Refactor the codec interface. The new codec interface will be used to support the legacy index format and the RBR compatible index format. Part of #85736 ## systemschema: support rbr system.sql_instances The sql_instances table now supports an index format compatible with regional by row tables. This is building on the work from #90408. ``` $ COCKROACH_MR_SYSTEM_DATABASE=true ./cockroach-short demo [email protected]:26257/movr> SELECT * FROM system.sql_instances LIMIT 2; id | addr | session_id | locality | crdb_region -----+-----------------+------------------------------------------+-----------------------------------+-------------- 1 | 127.0.0.1:26257 | \x0101800c678f05d4114b3aa17bcd61d336308a | {"Tiers": "region=us-east1,az=b"} | \x80 2 | | NULL | NULL | \x80 (2 rows) $ COCKROACH_MR_SYSTEM_DATABASE=false ./cockroach-short demo [email protected]:26257/movr> SELECT * FROM system.sql_instances LIMIT 2; id | addr | session_id | locality -----+-----------------+------------------------------------------+------------------------------------ 1 | 127.0.0.1:26257 | \x010180fb9227b38ca9445ba27ac8b1f5a2204d | {"Tiers": "region=us-east1,az=b"} 2 | | NULL | NULL (2 rows) ``` Part of #85736 92280: dev-inf: Add T-multitenant label to multi-tenant r=knz a=ajstorm Added the t-multitenant lable to the multi-tenant section of TEAMS.yaml Release note: None Epic: None Co-authored-by: David Hartunian <[email protected]> Co-authored-by: Jeff <[email protected]> Co-authored-by: Adam Storm <[email protected]>
- Loading branch information
Showing
26 changed files
with
1,252 additions
and
581 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
Oops, something went wrong.