MySQL的server_uuid獲取之uuid()函式和uuid_short()函式

yzs87發表於2017-12-02
1、uuid()函式
  1. mysql> select uuid(),uuid();  
  2. +--------------------------------------+--------------------------------------+  
  3. | uuid()                               | uuid()                               |  
  4. +--------------------------------------+--------------------------------------+  
  5. | 50120c25-d75c-11e7-9484-000c29c9278a | 50120c53-d75c-11e7-9484-000c29c9278a |  
  6. +--------------------------------------+--------------------------------------+  
  7. 1 row in set (0.00 sec)  
  1. String *Item_func_uuid::val_str(String *str)  
  2. {  
  3.     ...  
  4.     mac\rand get  
  5.     ...  
  6.     uint32 time_low=            (uint32) (tv & 0xFFFFFFFF);  
  7.     uint16 time_mid=            (uint16) ((tv >> 32) & 0xFFFF);  
  8.     uint16 time_hi_and_version= (uint16) ((tv >> 48) | UUID_VERSION);  
  9.     s[8]=s[13]='-';  
  10.     tohex(s, time_low, 8);  
  11.     tohex(s+9, time_mid, 4);  
  12.     tohex(s+14, time_hi_and_version, 4);  
  13.     strmov(s+18, clock_seq_and_node_str);  
  14.     ...  
  15. }  
詳細產生uuid的過程,參考上面的函式進行分析。

time_low、time_mid、time_high_and_version轉成16進位制後分別對應第1 2 3段。
這個時間是從1582-10-15 00:00:00.00到當前時間的100ns值。(實際上系統只能取到精確us,再乘以10)。所以你短時間連續執行的話,比較可能只有第一個值在改,實際上1 2 3都可能會改變。第4段是你啟動這個MySQL後第一次執行select uuid()時的隨機數,每次重啟會改變。第5段是mac值轉過來的,同一個機器多例項的一般相同。如果mac值獲取不到,則是一個隨機值。所以這個值可以認為是每次執行都不相同。並且不同例項之間也只有極微小機率重複。

2、uuid_short()函式

  1. mysql> select uuid_short(),uuid_short();  
  2. +--------------------+--------------------+  
  3. | uuid_short()       | uuid_short()       |  
  4. +--------------------+--------------------+  
  5. | 818004335832072194 | 818004335832072195 |  
  6. +--------------------+--------------------+  
  7. 1 row in set (0.00 sec)  
函式呼叫過程:
  1. main->init_common_variables()->  
  2.     server_start_time= flush_status_time= my_time(0);  
  3.     //獲取server啟動時的時間戳  
  1. ulonglong uuid_value;  
  2. main->init_common_variables->item_init->  
  3. void uuid_short_init()  
  4. {  
  5.   uuid_value= ((((ulonglong) server_id) << 56) +   
  6.                (((ulonglong) server_start_time) << 24));  
  7. }  
  1. longlong Item_func_uuid_short::val_int()  
  2. {  
  3.   ulonglong val;  
  4.   mysql_mutex_lock(&LOCK_uuid_generator);  
  5.   val= uuid_value++;  
  6.   mysql_mutex_unlock(&LOCK_uuid_generator);  
  7.   return (longlong) val;  
  8. }  
與uuid()函式返回固定字串不同,uuid_short()函式返回的是ulonglong型別的值。mysql啟動後第一次執行的值透過server_id<<56+server_start_time<<24來初始化,其中
server_start_time是server啟動時的時間,單位是秒。之後每次執行該函式都+1

3、server啟動時,會自動產生server_uuid
  1. main->init_server_auto_options:處理server_uuid  
  2.     my_load_defaults(fname, groups, &argc, &argv, NULL)//fname:auto.cnf  
  3.     handle_options(&argc, &argv, auto_options, mysqld_get_one_option);  
  4.     if(uuid){  
  5.         strcpy(server_uuid, uuid);  
  6.     }else{  
  7.         flush= TRUE;  
  8.         generate_server_uuid();  
  9.     }  
  10.     if (flush)  
  11.         DBUG_RETURN(flush_auto_options(fname));  
  12.         //O_CREAT|O_RDWR形式open,即如果沒有auto.cnf檔案,  
  13.         //則建立一個並將生成的server_uuid寫入檔案並flush  
  1. generate_server_uuid:  
  2.     func_uuid= new (thd->mem_root) Item_func_uuid();  
  3.     func_uuid->fixed= 1;  
  4.     func_uuid->val_str(&uuid);  
  5.     strncpy(server_uuid, uuid.c_ptr(), UUID_LENGTH);  
其中val_str函式是Item_func_uuid::val_str。server啟動時,會從auto.cnf檔案中讀取,如果沒有這個檔案,則新建立檔案並自動產生server_uuid,寫入檔案並flush。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31493717/viewspace-2148191/,如需轉載,請註明出處,否則將追究法律責任。

相關文章