When using the translate-plugin with models where ID is an integer, the index on the model_id column is not use in MySQL versions 8.0.40 and 5.7.44.
The current implementation with integer ID models causes inefficient index usage where only the model_type index is employed, leading to excessive row scanning. Suggested solution: modify the model_id data type and implement a compound index.

After
