Skip to content
Advertisement

Prepared Statement does not use expected index

I have a very large table of IOT sample that I’m trying to run a relativly simple query against. Running the query normally using the MySql CLI returns a result in ~0.07 seconds. If I first prepare the query either via PDO or by running a SQL PREPARE statement then the request takes over a minute.

I’ve enabled the the optimizer trace feature, and it looks like when the statement is prepared, MySql ignores the index that it should use and does a file sort of the whole table. I’d like any insight if I am doing something wrong or if this looks like a MySql bug.

The table itself contains over 100 million samples, and at least 300 thousand are associated with the device being queried here. I ran these tests with MySql 8.0.23, but when I upgraded to 8.0.25 the issues persisted.

Table definition (some data rows ommited)

Sql That runs in < 1s

Sql That runs in over a minute

Trace for the non prepared SQL can be found at my gist, but the relevant part is

Trace for the prepared query can be found at my other gist, but the relevant part is

Advertisement

Answer

Not full solution, but a workaround. I added an index on just my timestamp and that seems to satisfy the optimizer.

I’m going to try to clean up a minimal test case and post it over on MySql bugs. I’ll add a followup here if anything comes of that.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement