您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)如何理解MySQL中Table open cache hits/Table open cache misses/Table open cache overflows,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
這3個值的均和函數(shù)open_table有關(guān),且他們均和table cache和table share有關(guān),下面是一個粗略的解釋,具體解釋參考其他書籍:
table cache:會話實例化(instance),通過table share表定義實例化,持有文件的文件描述符。
table share:內(nèi)存中表的定義。
大概邏輯如下
retry_share: { Table_cache *tc= table_cache_manager.get_cache(thd); tc->lock(); /* Try to get unused TABLE object or at least pointer to TABLE_SHARE from the table cache. */ table= tc->get_table(thd, hash_value, key, key_length, &share); if (table) {... thd->status_var.table_open_cache_hits++; goto table_found;
tc->get_table這個調(diào)用,可以粗略看出是在表的table share 的free list 中彈出一個instance(table cache),也就是不用實際的實例化,那么就是命中了,如下:
函數(shù) Table_cache::get_table el->free_tables.front()
這樣Table_open_cache_hits +1。
全面我們說了如果找到空閑的instance(tabe cache)則重用即可,如果沒找到還需要處理table share,然后通過table share 建立 instance(table cache)我們看看通過table share建立instance大概方式:
error= open_table_from_share(thd, share, alias, (uint) (HA_OPEN_KEYFILE | HA_OPEN_RNDFILE | HA_GET_INDEX | HA_TRY_READ_ONLY), EXTRA_RECORD, thd->open_options, table, FALSE); if (error) { ... thd->status_var.table_open_cache_misses++;
大概就是通過函數(shù)open_table_from_share進行table cache的從table share到table cache的實例化,然后標記為Table_open_cache_misses +1。
前面我們說了如果沒用命中(hint),則需要建立instance(table cache),但是需要注意建立instance(table cache)的時候,如果超過了table_open_cache的設置,則會進行淘汰(注意5.7.26的代碼來看table_open_cache可以分為多個instance了默認16個 )。那么這些淘汰的值記錄到Table_open_cache_overflows,下面是邏輯:
函數(shù):Table_cache::free_unused_tables_if_necessary 調(diào)用為open_table ->Table_cache::add_used_table->Table_cache::free_unused_tables_if_necessary if (m_table_count > table_cache_size_per_instance && m_unused_tables) { mysql_mutex_lock(&LOCK_open); while (m_table_count > table_cache_size_per_instance && m_unused_tables) { TABLE *table_to_free= m_unused_tables; remove_table(table_to_free); intern_close_table(table_to_free); thd->status_var.table_open_cache_overflows++; } mysql_mutex_unlock(&LOCK_open); }
注意這里的條件m_table_count > table_cache_size_per_instance,就是淘汰的條件后者和table_open_cache直接相關(guān)。
還有一個值 Opened_tables,也和Table_open_cache_misses類似,他的調(diào)用則是在open_table_from_share進行自加。(thd->status_var.opened_tables++;)
而Open_tables這是總的instance(table cache)的個數(shù)如下:
static int show_open_tables(THD *thd, SHOW_VAR *var, char *buff) { var->type= SHOW_LONG; var->value= buff; *((long *)buff)= (long)table_cache_manager.cached_tables(); return 0; } /** Get total number of used and unused TABLE objects in all table caches. @note Doesn't require acquisition of table cache locks if inexact number of tables is acceptable. */ uint Table_cache_manager::cached_tables() { uint result= 0; for (uint i= 0; i < table_cache_instances; i++) result+= m_table_cache[i].cached_tables(); return result; }
Table_open_cache_hits:能夠從table share 的free list 中找到一個instance(table cache),則看做命中,值+1。
Table_open_cache_misses:Table_open_cache_hits相反,如果找不到則需要重新實例化值+1,這通常發(fā)生在初始化第一次加載表,或者由于超過參數(shù)table_open_cache的設置被淘汰后需要重新實例化。
Table_open_cache_overflows:就是上面說的淘汰的instance(table cache)的數(shù)量,每次淘汰值+1。
Opened_tables:類似Table_open_cache_misses。
Open_tables:總的instance(table cache)的總數(shù)。
我們通??梢酝ㄟ^他們判斷table_open_cache參數(shù)設置是否合理。
看完上述內(nèi)容,你們對如何理解MySQL中Table open cache hits/Table open cache misses/Table open cache overflows有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。