Confirm that the current band aid work fors query 78 and will move to MCOL-964 as the future version of this.
David Thompson (Inactive)
added a comment - Confirm that the current band aid work fors query 78 and will move to MCOL-964 as the future version of this.
There are two issues here, first, the oscillating between an answer and no answer. This is caused by code in ha_calpont_execplan.cpp that notices the function calls in the order by clause and tries to re-write the query, then send it back thru the parser, but that fails and gives the error. The next time it tries, the execution plan hasn't been cleaned up (not good), so it uses it. That execution plan has already been deemed not correct, but gets run anyway, thus the incorrect results. Then the execution plan is cleaned up. Rinse and Repeat.
Once the execution plan cleanup is corrected, the retry logic fails repeatedly into an infinite loop. Also not good.
So, for this bug, I created a counter that stops the retry at 3 attempts, then switches to operating mode 0 if operating mode 2 is on, else throws an error. However, this query under operating mode 0 takes about 18 hours on my machine – it only takes 35 seconds on a reference MariaDB 10.2. The correct results are returned.
The SQL that is causing the problem is the order by sum_sales - avg_monthly_sales. Using one or the other of the columns does not cause a problem but putting them into an expression in the order by confuses the engine.
MCOL-964 is being left for further fixing of the problem
David Hall (Inactive)
added a comment - There are two issues here, first, the oscillating between an answer and no answer. This is caused by code in ha_calpont_execplan.cpp that notices the function calls in the order by clause and tries to re-write the query, then send it back thru the parser, but that fails and gives the error. The next time it tries, the execution plan hasn't been cleaned up (not good), so it uses it. That execution plan has already been deemed not correct, but gets run anyway, thus the incorrect results. Then the execution plan is cleaned up. Rinse and Repeat.
Once the execution plan cleanup is corrected, the retry logic fails repeatedly into an infinite loop. Also not good.
So, for this bug, I created a counter that stops the retry at 3 attempts, then switches to operating mode 0 if operating mode 2 is on, else throws an error. However, this query under operating mode 0 takes about 18 hours on my machine – it only takes 35 seconds on a reference MariaDB 10.2. The correct results are returned.
The SQL that is causing the problem is the order by sum_sales - avg_monthly_sales. Using one or the other of the columns does not cause a problem but putting them into an expression in the order by confuses the engine.
MCOL-964 is being left for further fixing of the problem
Author: Andrew Hutchings <andrew@linuxjedi.co.uk>
Date: Tue Oct 31 15:59:32 2017 +0000
Merge pull request #74 from mariadb-corporation/MCOL-963
MCOL-963 Do REDO_PHASE1 no more than 3 times, then turn of vtable mod…
/root/columnstore/mariadb-columnstore-server/mariadb-columnstore-engine
commit 5bff4c0f133dcd10d4a34b7fd06dd141993bde25
Merge: ed018e8 21e0317
Author: Andrew Hutchings <andrew@linuxjedi.co.uk>
Date: Tue Oct 31 11:14:56 2017 +0000
Merge pull request #308 from mariadb-corporation/MCOL-963
Mcol 963
Created and loaded tpcds database and executed test case. Repeating the query and now consistently getting this error message:
ERROR 1815 (HY000): Internal error: Query cannot be processed using operational mode 1 (vtable mode)
Is this the new expected behavior? Show we say it is an internal error? Should we say this query is not supported in mode 1 instead?
Daniel Lee (Inactive)
added a comment - Build tested: Github source 1.1.1-1
Author: Andrew Hutchings <andrew@linuxjedi.co.uk>
Date: Tue Oct 31 15:59:32 2017 +0000
Merge pull request #74 from mariadb-corporation/ MCOL-963
MCOL-963 Do REDO_PHASE1 no more than 3 times, then turn of vtable mod…
/root/columnstore/mariadb-columnstore-server/mariadb-columnstore-engine
commit 5bff4c0f133dcd10d4a34b7fd06dd141993bde25
Merge: ed018e8 21e0317
Author: Andrew Hutchings <andrew@linuxjedi.co.uk>
Date: Tue Oct 31 11:14:56 2017 +0000
Merge pull request #308 from mariadb-corporation/ MCOL-963
Mcol 963
Created and loaded tpcds database and executed test case. Repeating the query and now consistently getting this error message:
ERROR 1815 (HY000): Internal error: Query cannot be processed using operational mode 1 (vtable mode)
Is this the new expected behavior? Show we say it is an internal error? Should we say this query is not supported in mode 1 instead?
Confirm that the current band aid work fors query 78 and will move to
MCOL-964as the future version of this.