Open flecia-l opened 12 months ago
Unfortunately, I cannot reproduce that error and query 10 executes without problems. Could you have a look in MySQL's log files or provide more information where the program is stuck?
I did not see any errors in the MySQL log files, but when I execute 1.sql, it only takes 30 seconds, and it has only 1 hint sets. When executing 10.sql, it took three hours and is still running. The final output is 2023-11-30 01:18:02 INFO Enter next DP stage, execute for 2 hint sets/configurations
. Is this reasonable?
I ran
python main.py --training --database mysql --benchmark ./benchmark/queries/tpch
This is the output file of my program running:I found through debugging that the program gets stuck at
dp_exploration.py
in theexecute_hint_set
when running10.sql
, especially attimed_result = connector.execute(sql_query)
.I don't know how to resolve or locate the error. Can you provide me with some suggestions?