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
When the keyspace has thousands of tables, the tablet server engine takes a logs time to load. Measured numbers: about 10secfor4000` tables. The number can vary by machine type and tablet definitions.
ON i.name LIKE CONCAT(database(), '/%') AND (i.name = CONCAT(t.table_schema, '/', t.table_name) OR i.name LIKE CONCAT(t.table_schema, '/', t.table_name, '#p#%'))
WHERE t.table_schema = database()
GROUP BY t.table_name, t.table_type, t.create_time, t.table_comment`
The query can be optimized. Followup in a PR.
The text was updated successfully, but these errors were encountered:
When the keyspace has thousands of tables, the tablet server engine takes a logs time to load. Measured numbers: about
10
secfor
4000` tables. The number can vary by machine type and tablet definitions.The query is:
vitess/go/mysql/flavor_mysql.go
Lines 348 to 358 in d4c5096
The query can be optimized. Followup in a PR.
The text was updated successfully, but these errors were encountered: