Currently, when a table is created it uses a one-up counter for its table name. This means that a workload that creates new tables end up putting all that work on the same metadata tablet.
Describe the solution you'd like
Switch the sort order of the metadata table to use the least significant bit of the tableID.
This would spread the new tables metadata entries across multiple metadata tablets while still allowing each table section to be ordered.
Currently, when a table is created it uses a one-up counter for its table name. This means that a workload that creates new tables end up putting all that work on the same metadata tablet.
Describe the solution you'd like
Switch the sort order of the metadata table to use the least significant bit of the tableID.
This would spread the new tables metadata entries across multiple metadata tablets while still allowing each table section to be ordered.