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
151131: sql/delegate: show changefeed jobs option for db-level changefeeds to r=andyyang890,KeithCh a=log-head
SHOW CHANGEFEED JOBS currently returns in a field all of the tables that a changefeed job is watching. With db-level changefeeds, often there could be a large number of tables watched in the database, so we want to default to not listing any of the tables the db-level changefeed watches. Adding a new option WITH WATCHED_TABLES to cause the full list of tables to be returned.
In addition, a new field, database_name, is added to SHOW CHANGEFEED JOBS to show the name of the database, in the case of a db-level changefeed. It will be null for table-level changefeeds.
Epic: [CRDB-1421](https://cockroachlabs.atlassian.net/browse/CRDB-1421)
Fixes: #148023
Release note (sql change): A new field is added to SHOW CHANGEFEED JOBS. database_name gives the name of the database that a db-level changefeed is on. For a table-level changefeed, it will be null.
SHOW CHANGEFEED JOBS field full_table_names is changed for db-level changefeeds. By default, the list of watched tables in full_table_names will be empty for a db-level changefeed, giving the total number of watched tables. A new option WITH WATCHED_TABLES is added that will make SHOW CHANGEFEED JOBS return the full list of target tables, like with non-db level changefeeds.
154206: ui: add transaction diagnostics api client and page r=kyle-a-wong a=dhartunian
This change introduces a transaction diagnostics request page that
lists oustanding and completed requests along with the transaction IDs
or fingerprints. If the bundle has not yet been captured, we can only
show the transactionId, otherwise we'll have the fingeprint available
to display as well. In both cases, the ID or fingerprint will link to
the corresponding SQL Activity page for that Transaction.
Resolves: [CRDB-53543](https://cockroachlabs.atlassian.net/browse/CRDB-53543)
Epic: [CRDB-53541](https://cockroachlabs.atlassian.net/browse/CRDB-53541)
Release note (db console change): The statement diagnostics page in
Advanced Debug now also displays any active transaction diagnostics
requests in a separate tab
Co-authored-by: Matthew Lougheed <[email protected]>
Co-authored-by: David Hartunian <[email protected]>
0 commit comments