婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > mysql中索引與FROM_UNIXTIME的問題

mysql中索引與FROM_UNIXTIME的問題

熱門標簽:寧波企業外呼系統收費 聊城智能外呼系統運營商 電子地圖標注電話 上海智能外呼系統代理商 成都優派外呼系統 地圖標注人員兼職 扎樣申請400電話 ps制作地圖標注gif 沈陽電銷外呼系統原理是什么

零、背景

這周四收到很多告警,找DBA看了看,發現有個慢查詢。

簡單收集一些信息后,發現這個慢查詢問題隱藏的很深,問了好多人包括DBA都不知道原因。

一、問題

有一個DB, 有一個字段, 定義如下.

MySQL [d_union_stat]> desc t_local_cache_log_meta;
+----------------+--------------+------+-----+---------------------+
| Field     | Type     | Null | Key | Default       |
+----------------+--------------+------+-----+---------------------+
| c_id      | int(11)   | NO  | PRI | NULL        |
| c_key     | varchar(128) | NO  | MUL |           |
| c_time     | int(11)   | NO  | MUL | 0          |
| c_mtime    | varchar(45) | NO  | MUL | 0000-00-00 00:00:00 |
+----------------+--------------+------+-----+---------------------+
17 rows in set (0.01 sec)

索引如下:

MySQL [d_union_stat]> show index from t_local_cache_log_meta \G     
*************************** 1. row ***************************
    Table: t_local_cache_log_meta
  Non_unique: 0
   Key_name: PRIMARY
 Column_name: c_id
  Collation: A
 Cardinality: 6517096
  Index_type: BTREE
*************************** 2. row ***************************
.
.
.
*************************** 6. row ***************************
    Table: t_local_cache_log_meta
  Non_unique: 1
   Key_name: index_mtime
 Column_name: c_mtime
  Collation: A
 Cardinality: 592463
  Index_type: BTREE
6 rows in set (0.02 sec)

然后我寫了一個SQL如下:

SELECT 
  count(*)
FROM
  d_union_stat.t_local_cache_log_meta
where
  `c_mtime`  FROM_UNIXTIME(1494485402);

終于有一天DBA過來了, 扔給我一個流水,說這個SQL是慢SQL。

# Time: 170518 11:31:14
# Query_time: 12.312329 Lock_time: 0.000061 Rows_sent: 0 Rows_examined: 5809647
SET timestamp=1495078274;
DELETE FROM `t_local_cache_log_meta` WHERE `c_mtime` FROM_UNIXTIME(1494473461) limit 1000;

我頓時無語了,我的DB都是加了索引,SQL都是精心優化了的,怎么是慢SQL呢?

問為什么是慢SQL,DBA答不上來, 問了周圍的同事也都答不上來。

我心里暗想遇到一個隱藏很深的知識點了。

令人懷疑的地方有兩個:1.有6個索引。 2. 右值是 FROM_UNIXTIME 函數。

于是查詢MYSQL官方文檔,發現6個不是問題。

All storage engines support at least 16 indexes per table and a total index length of at least 256 bytes.  
Most storage engines have higher limits.

于是懷疑問題是 FROM_UNIXTIME 函數了。

然后看看MYSQL的INDEX小節,找到一點蛛絲馬跡。

1.To find the rows matching a WHERE clause quickly.
2. To eliminate rows from consideration.
 If there is a choice between multiple indexes, MySQL normally uses the index that finds the smallest number of rows.
3.If the table has a multiple-column index, any leftmost prefix of the index can be used by the optimizer to look up rows.
4. MySQL can use indexes on columns more efficiently if they are declared as the same type and size.
 Comparison of dissimilar columns (comparing a string column to a temporal or numeric column, for example) may prevent use of indexes if values cannot be compared directly without conversion.

看到第4條的時候,提到不同類型可能導致不走索引,難道 FROM_UNIXTIME 的返回值不能轉化為字符串類型?

于是查詢 FROM_UNIXTIME 函數的返回值。

MySQL FROM_UNIXTIME() returns a date /datetime from a version of unix_timestamp.

返回的是一個時間類型,那強制轉化為字符串類型呢?

MySQL [d_union_stat]> explain SELECT 
  ->   *
  -> FROM
  ->   t_local_cache_log_meta
  -> where
  ->   `c_mtime` = CONCAT(FROM_UNIXTIME(1494485402)) \G
*************************** 1. row ***************************
      id: 1
 select_type: SIMPLE
    table: t_local_cache_log_meta
     type: ref
possible_keys: index_mtime
     key: index_mtime
   key_len: 137
     ref: const
     rows: 1
    Extra: Using where
1 row in set (0.01 sec)

這次可以看到, 使用了索引,只掃描了一個數據。

二、結論

這次對 FROM_UNIXTIME 的返回值強制轉化一下就可以利用上索引了。

所以這個SQL不能利用上索引是右值與左值的類型不一致導致的。 。

好了,不多說了, 這篇文章算是一個插曲,后面繼續介紹算法吧。

您可能感興趣的文章:
  • Mysql索引性能優化問題解決方案
  • MySQL批量插入和唯一索引問題的解決方法
  • 分析Mysql表讀寫、索引等操作的sql語句效率優化問題
  • 解決MySQL中IN子查詢會導致無法使用索引問題
  • mysql索引必須了解的幾個重要問題
  • 分析MySQL中索引引引發的CPU負載飆升的問題
  • php mysql索引問題
  • Mysql索引常見問題匯總

標簽:朔州 汕頭 咸寧 AXB 林芝 內江 宿州 三明

巨人網絡通訊聲明:本文標題《mysql中索引與FROM_UNIXTIME的問題》,本文關鍵詞  mysql,中,索引,與,FROM,UNIXTIME,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《mysql中索引與FROM_UNIXTIME的問題》相關的同類信息!
  • 本頁收集關于mysql中索引與FROM_UNIXTIME的問題的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 长治县| 沛县| 扎兰屯市| 青川县| 金门县| 南涧| 迁安市| 青阳县| 公主岭市| 丁青县| 遵义市| 天峨县| 宝山区| 崇明县| 子长县| 甘孜| 东源县| 克什克腾旗| 和静县| 南江县| 澄城县| 偏关县| 古交市| 海门市| 凤凰县| 兴文县| 陵川县| 南和县| 金川县| 广平县| 蓝田县| 紫云| 静安区| 襄城县| 从江县| 玛多县| 册亨县| 台安县| 江都市| 安宁市| 梓潼县|