Usually, this is Power BI pulling the time timeout of the data source. When filling in the data source server and database, click the advanced option, which has a timeout time, set the time higher.
Run “show collation” in the database first. Generally, only utf8mb4_900_bin is displayed, and the charset is utf8mb4. The main reason for this error is that ID 33 needs to be found when connecting to Power BI. That is, rows with 33ids in the table need to be upgraded to version 2.1.5 or later.
The cause of the problem is that global parameters are loaded during the connection process, and the SQL column names and values are the same
SELECT @@max_allowed_packet as max_allowed_packet, @@character_set_client ,@@character_set_connection , @@license,@@sql_mode ,@@lower_case_table_names , @@autocommit ;
The new optimizer can be turned off in the current version or upgraded to version 2.0.7 or 2.1.6 or later.
This problem is easily encountered in version 2.1.x. If this problem occurs, you need to upgrade the JDBC Driver to 8.0.32.
Turn off the new optimizer in the current version or upgrade to 2.0.7 or later
The cause of this error is that SSL authentication is enabled on Doris, but SSL connections are not used during the connection. You need to disable the enable_ssl variable in fe.conf.
The MySQL driver version is improperly installed. Install the MySQL 5.1.x connection driver instead.