sql/schema: new system tables causing 22.2 regression in GetZoneConfig #89410
Labels
branch-release-22.2
Used to mark GA and release blockers, technical advisories, and bugs for 22.2
C-bug
Code not up to spec/doc, specs & docs deemed correct. Solution expected to change code/behavior.
T-sql-foundations
SQL Foundations Team (formerly SQL Schema + SQL Sessions)
There's a >100% regression in allocations (that means more than double) for the
GetZoneConfig
benchmark between 22.1 and 22.2. It seems to be related to two system tables that were added in 22.2:SystemPrivilegeTable
andSystemExternalConnectionsTable
. Possibly this regression is expected, or maybe we're failing to do cache the initialized table descriptors somewhere.The allocations stem from
addSystemDescriptorsToSchema
, which callsAddDescriptor
for the system tables:Within
AddDescriptor
the allocations look like this:Jira issue: CRDB-20247
The text was updated successfully, but these errors were encountered: