Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The different IN value numbers in query cause too much memory in TiDB #60380

Open
elsa0520 opened this issue Apr 2, 2025 · 2 comments
Open
Labels
epic/plan-cache report/customer Customers have encountered this bug. sig/planner SIG: Planner type/enhancement The issue or PR belongs to an enhancement.

Comments

@elsa0520
Copy link
Contributor

elsa0520 commented Apr 2, 2025

Enhancement

  1. The query like
select order_id from order_var ov where order_id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) 
  1. Use the prepare stmt and query with different IN values number
  2. The memory keeps rising and cannot be released

Image

Image

Image

Tidb version: v6.5.2

@elsa0520 elsa0520 added type/enhancement The issue or PR belongs to an enhancement. sig/planner SIG: Planner labels Apr 2, 2025
@qw4990 qw4990 added epic/plan-cache report/customer Customers have encountered this bug. labels Apr 2, 2025
@qw4990
Copy link
Contributor

qw4990 commented Apr 3, 2025

A potential solution from @wddevries is that we can extend lengths of these in-lists to round numbers in 100, like 100, 200, 300, by appending the last value in the list.

For example, where a in (1, 2, 3, 4, 95) could be converted to where a in (1, 2, 3, 4, 95, 95, 95, 95, 95, 95), whose length is 100.
Then most in-list should have the same length.

@terry1purcell
Copy link
Contributor

Such a solution (of extending the lengths) should only apply if the IN-list entry exceeds a certain value - which could be configurable. Above that value - we need the query optimizer to account for the fact that the number of IN-list entries we "cost" should be less than the number in the query.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
epic/plan-cache report/customer Customers have encountered this bug. sig/planner SIG: Planner type/enhancement The issue or PR belongs to an enhancement.
Projects
None yet
Development

No branches or pull requests

3 participants