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
Currently, the indices we are using for many of our CockroachDB database tables are suboptimal; we should update our indices to optimize performance, storage, and probability of success.
Some indices are not used in any queries. Only one index is used when SELECTing data, but sometimes we have indices on each of the columns used in the WHERE clause. It is an anti-pattern to have an index on a sequential key like timestamps.
Currently, the indices we are using for many of our CockroachDB database tables are suboptimal; we should update our indices to optimize performance, storage, and probability of success.
Some indices are not used in any queries. Only one index is used when SELECTing data, but sometimes we have indices on each of the columns used in the WHERE clause. It is an anti-pattern to have an index on a sequential key like timestamps.
It is likely this will improve #742
The text was updated successfully, but these errors were encountered: