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
{{ message }}
This repository was archived by the owner on Sep 17, 2024. It is now read-only.
The history table doesn't have a primary key which means Cockroach autogenerates a primary key with a unique_rowid() function. This creates a hotspot as every insertion into the history table will be touch the last range of that table (unique_rowid() produces IDs that are usually sorted). We should investigate adding a UUID primary key for this table.
The
historytable doesn't have a primary key which means Cockroach autogenerates a primary key with aunique_rowid()function. This creates a hotspot as every insertion into thehistorytable will be touch the last range of that table (unique_rowid()produces IDs that are usually sorted). We should investigate adding aUUIDprimary key for this table.