-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
It will crash when executing 500 delete statements at a time. #3518
Comments
This is because the current plan of sequential statements is spliced together into one giant plan, which then causes stack overflow when this giant plan enters the optimizer phase. I find there is a variable called |
Or will the new execution plan of sequential sentences avoid splicing together the plans? |
You could delete multiple vertices in on statement. |
Thanks. If it is still 500 delete statements executed together, adjusting |
Hi @ColinChamber, you are right. The option
|
Thanks a lot for your advice. |
It will crash when executing 500 delete statements at a time.
Your Environments (required)
Linux fedora 5.14.10-300.fc35.x86_64 #1 SMP Thu Oct 7 20:48:44 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
g++ 7.5.0
lscpu
de0302545b08bc73bdb31ade1b566b13e430264c
How To Reproduce(required)
Expected behavior
Additional context
Maybe because of stack overflow
The text was updated successfully, but these errors were encountered: