0

我在查询执行中遇到了一些问题,这是我的情况:

我有两个表记录有 20 万条记录和日志记录有 60 万条记录

日志表中的单个日志记录可以在日志记录表中有多个日志消息,我的数据库架构如下

日志

CREATE TABLE `log` (                           
       `logid` varchar(50) NOT NULL DEFAULT '',         
       `creationtime` bigint(20) DEFAULT NULL,            
       `serviceInitiatorID` varchar(50) DEFAULT NULL,   
       PRIMARY KEY (`logid`),                           
       KEY `idx_creationtime_wsc_log` (`creationtime`)  
     ) ENGINE=InnoDB DEFAULT CHARSET=latin1

logrecords

CREATE TABLE `logrecords` (                                                 
              `logrecordid` varchar(50) NOT NULL DEFAULT '',                                
              `timestamp` bigint(20) DEFAULT NULL,                                          
              `message` varchar(8000) DEFAULT NULL,                                         
              `loglevel` int(11) DEFAULT NULL,                                              
              `logid` varchar(50) DEFAULT NULL,                                             
              `indexcolumn` int(11) DEFAULT NULL,                                           
              PRIMARY KEY (`logrecordid`),                                                  
              KEY `indx_logrecordid_message_logid` (`logrecordid`,`message`(767),`logid`),  
              KEY `logid` (`logid`),                                                        
              KEY `indx_message` (`message`(767))                                           
            ) ENGINE=InnoDB DEFAULT CHARSET=latin1    

hibernate 创建的查询就像

select this_.logid as logid4_1_, this_.loglevel as loglevel4_1_, this_.creationtime as creation3_4_1_,this_.serviceInitiatorID as service17_4_1_, this_.logtype as logtype4_1_,logrecord1_.logrecordid as logrecor1_3_0_, logrecord1_.timestamp as timestamp3_0_, logrecord1_.message as message3_0_, logrecord1_.loglevel as loglevel3_0_, logrecord1_.logid as logid3_0_, logrecord1_.indexcolumn as indexcol6_3_0_ from log this_ inner join wsc_logrecords logrecord1_ on this_.logid=logrecord1_.logid where (1=1) and (1=1) and logrecord1_.message like 'SecondMessage' order by this_.creationtime desc limit 25

执行大约需要 7313 毫秒

查询解释就像

在此处输入图像描述

但是当我执行下面的查询时,执行大约需要 15 分钟

select count(*) as y0_ from log this_ inner join logrecords logrecord1_ on this_.logid=logrecord1_.logid where (1=1) and (1=1) and lower(logrecord1_.message) like 'SecondMessage' order by this_.creationtime desc limit 25

对于上面的查询解释就像 在此处输入图像描述

我正在使用 MySQl 数据库。我认为索引或其他一些我无法识别的问题

任何解决方案将不胜感激。

4

1 回答 1

0

当您使用lower(logrecord1_.message) like 'SecondMessage'而不是plainlogrecord1_.message like 'SecondMessage'时,数据库引擎将停止使用logrecord1_.message.

您可以通过创建一个基于函数的索引来lower(logrecord1_.message)代替logrecord1_.message.

于 2013-04-08T14:19:21.707 回答