srv0srv.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:66k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. The database server main program
  3. NOTE: SQL Server 7 uses something which the documentation
  4. calls user mode scheduled threads (UMS threads). One such
  5. thread is usually allocated per processor. Win32
  6. documentation does not know any UMS threads, which suggests
  7. that the concept is internal to SQL Server 7. It may mean that
  8. SQL Server 7 does all the scheduling of threads itself, even
  9. in i/o waits. We should maybe modify InnoDB to use the same
  10. technique, because thread switches within NT may be too slow.
  11. SQL Server 7 also mentions fibers, which are cooperatively
  12. scheduled threads. They can boost performance by 5 %,
  13. according to the Delaney and Soukup's book.
  14. Windows 2000 will have something called thread pooling
  15. (see msdn website), which we could possibly use.
  16. Another possibility could be to use some very fast user space
  17. thread library. This might confuse NT though.
  18. (c) 1995 Innobase Oy
  19. Created 10/8/1995 Heikki Tuuri
  20. *******************************************************/
  21. /* Dummy comment */
  22. #include "srv0srv.h"
  23. #include "ut0mem.h"
  24. #include "os0proc.h"
  25. #include "mem0mem.h"
  26. #include "mem0pool.h"
  27. #include "sync0sync.h"
  28. #include "thr0loc.h"
  29. #include "que0que.h"
  30. #include "srv0que.h"
  31. #include "log0recv.h"
  32. #include "pars0pars.h"
  33. #include "usr0sess.h"
  34. #include "lock0lock.h"
  35. #include "trx0purge.h"
  36. #include "ibuf0ibuf.h"
  37. #include "buf0flu.h"
  38. #include "btr0sea.h"
  39. #include "dict0load.h"
  40. #include "srv0start.h"
  41. #include "row0mysql.h"
  42. /* This is set to TRUE if the MySQL user has set it in MySQL; currently
  43. affects only FOREIGN KEY definition parsing */
  44. ibool srv_lower_case_table_names = FALSE;
  45. /* The following counter is incremented whenever there is some user activity
  46. in the server */
  47. ulint srv_activity_count = 0;
  48. /* The following is the maximum allowed duration of a lock wait. */
  49. ulint srv_fatal_semaphore_wait_threshold = 600;
  50. /* How much data manipulation language (DML) statements need to be delayed,
  51. in microseconds, in order to reduce the lagging of the purge thread. */
  52. ulint srv_dml_needed_delay = 0;
  53. ibool srv_lock_timeout_and_monitor_active = FALSE;
  54. ibool srv_error_monitor_active = FALSE;
  55. const char* srv_main_thread_op_info = "";
  56. /* Server parameters which are read from the initfile */
  57. /* The following three are dir paths which are catenated before file
  58. names, where the file name itself may also contain a path */
  59. char* srv_data_home  = NULL;
  60. #ifdef UNIV_LOG_ARCHIVE
  61. char* srv_arch_dir  = NULL;
  62. #endif /* UNIV_LOG_ARCHIVE */
  63. ibool srv_file_per_table = FALSE; /* store to its own file each table
  64. created by an user; data dictionary
  65. tables are in the system tablespace
  66. 0 */
  67. ibool   srv_locks_unsafe_for_binlog = FALSE; /* Place locks to records only 
  68.                                                 i.e. do not use next-key locking
  69.                                                 except on duplicate key checking and
  70.                                                 foreign key checking */
  71. ulint srv_n_data_files = 0;
  72. char** srv_data_file_names = NULL;
  73. ulint* srv_data_file_sizes = NULL; /* size in database pages */ 
  74. ibool srv_auto_extend_last_data_file = FALSE; /* if TRUE, then we
  75.  auto-extend the last data
  76.  file */
  77. ulint srv_last_file_size_max = 0;  /* if != 0, this tells
  78.  the max size auto-extending
  79.  may increase the last data
  80.  file size */
  81. ulong srv_auto_extend_increment = 8;  /* If the last data file is
  82.  auto-extended, we add this
  83.  many pages to it at a time */
  84. ulint*  srv_data_file_is_raw_partition = NULL;
  85. /* If the following is TRUE we do not allow inserts etc. This protects
  86. the user from forgetting the 'newraw' keyword to my.cnf */
  87. ibool srv_created_new_raw = FALSE;
  88. char** srv_log_group_home_dirs = NULL; 
  89. ulint srv_n_log_groups = ULINT_MAX;
  90. ulint srv_n_log_files = ULINT_MAX;
  91. ulint srv_log_file_size = ULINT_MAX; /* size in database pages */ 
  92. ulint srv_log_buffer_size = ULINT_MAX; /* size in database pages */ 
  93. ulint srv_flush_log_at_trx_commit = 1;
  94. byte srv_latin1_ordering[256] /* The sort order table of the latin1
  95. character set. The following table is
  96. the MySQL order as of Feb 10th, 2002 */
  97. = {
  98.   0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
  99. , 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F
  100. , 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17
  101. , 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F
  102. , 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27
  103. , 0x28, 0x29, 0x2A, 0x2B, 0x2C, 0x2D, 0x2E, 0x2F
  104. , 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37
  105. , 0x38, 0x39, 0x3A, 0x3B, 0x3C, 0x3D, 0x3E, 0x3F
  106. , 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47
  107. , 0x48, 0x49, 0x4A, 0x4B, 0x4C, 0x4D, 0x4E, 0x4F
  108. , 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57
  109. , 0x58, 0x59, 0x5A, 0x5B, 0x5C, 0x5D, 0x5E, 0x5F
  110. , 0x60, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47
  111. , 0x48, 0x49, 0x4A, 0x4B, 0x4C, 0x4D, 0x4E, 0x4F
  112. , 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57
  113. , 0x58, 0x59, 0x5A, 0x7B, 0x7C, 0x7D, 0x7E, 0x7F
  114. , 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87
  115. , 0x88, 0x89, 0x8A, 0x8B, 0x8C, 0x8D, 0x8E, 0x8F
  116. , 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97
  117. , 0x98, 0x99, 0x9A, 0x9B, 0x9C, 0x9D, 0x9E, 0x9F
  118. , 0xA0, 0xA1, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7
  119. , 0xA8, 0xA9, 0xAA, 0xAB, 0xAC, 0xAD, 0xAE, 0xAF
  120. , 0xB0, 0xB1, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7
  121. , 0xB8, 0xB9, 0xBA, 0xBB, 0xBC, 0xBD, 0xBE, 0xBF
  122. , 0x41, 0x41, 0x41, 0x41, 0x5C, 0x5B, 0x5C, 0x43
  123. , 0x45, 0x45, 0x45, 0x45, 0x49, 0x49, 0x49, 0x49
  124. , 0x44, 0x4E, 0x4F, 0x4F, 0x4F, 0x4F, 0x5D, 0xD7
  125. , 0xD8, 0x55, 0x55, 0x55, 0x59, 0x59, 0xDE, 0xDF
  126. , 0x41, 0x41, 0x41, 0x41, 0x5C, 0x5B, 0x5C, 0x43
  127. , 0x45, 0x45, 0x45, 0x45, 0x49, 0x49, 0x49, 0x49
  128. , 0x44, 0x4E, 0x4F, 0x4F, 0x4F, 0x4F, 0x5D, 0xF7
  129. , 0xD8, 0x55, 0x55, 0x55, 0x59, 0x59, 0xDE, 0xFF
  130. };
  131. ulint srv_pool_size = ULINT_MAX; /* size in pages; MySQL inits
  132. this to size in kilobytes but
  133. we normalize this to pages in
  134. srv_boot() */
  135. ulint srv_awe_window_size  = 0; /* size in pages; MySQL inits
  136. this to bytes, but we
  137. normalize it to pages in
  138. srv_boot() */
  139. ulint srv_mem_pool_size = ULINT_MAX; /* size in bytes */ 
  140. ulint srv_lock_table_size = ULINT_MAX;
  141. ulint srv_n_file_io_threads = ULINT_MAX;
  142. #ifdef UNIV_LOG_ARCHIVE
  143. ibool srv_log_archive_on = FALSE;
  144. ibool srv_archive_recovery = 0;
  145. dulint srv_archive_recovery_limit_lsn;
  146. #endif /* UNIV_LOG_ARCHIVE */
  147. ulint srv_lock_wait_timeout = 1024 * 1024 * 1024;
  148. char*   srv_file_flush_method_str = NULL;
  149. ulint   srv_unix_file_flush_method = SRV_UNIX_FDATASYNC;
  150. ulint   srv_win_file_flush_method = SRV_WIN_IO_UNBUFFERED;
  151. ulint srv_max_n_open_files   = 300;
  152. /* The InnoDB main thread tries to keep the ratio of modified pages
  153. in the buffer pool to all database pages in the buffer pool smaller than
  154. the following number. But it is not guaranteed that the value stays below
  155. that during a time of heavy update/insert activity. */
  156. ulong srv_max_buf_pool_modified_pct = 90;
  157. /* If the following is != 0 we do not allow inserts etc. This protects
  158. the user from forgetting the innodb_force_recovery keyword to my.cnf */
  159. ulint srv_force_recovery = 0;
  160. /*-----------------------*/
  161. /* We are prepared for a situation that we have this many threads waiting for
  162. a semaphore inside InnoDB. innobase_start_or_create_for_mysql() sets the
  163. value. */
  164. ulint   srv_max_n_threads       = 0;
  165. /* The following controls how many threads we let inside InnoDB concurrently:
  166. threads waiting for locks are not counted into the number because otherwise
  167. we could get a deadlock. MySQL creates a thread for each user session, and
  168. semaphore contention and convoy problems can occur withput this restriction.
  169. Value 10 should be good if there are less than 4 processors + 4 disks in the
  170. computer. Bigger computers need bigger values. */
  171. ulint srv_thread_concurrency = 8;
  172. os_fast_mutex_t srv_conc_mutex; /* this mutex protects srv_conc data
  173. structures */
  174. lint srv_conc_n_threads = 0; /* number of OS threads currently
  175. inside InnoDB; it is not an error
  176. if this drops temporarily below zero
  177. because we do not demand that every
  178. thread increments this, but a thread
  179. waiting for a lock decrements this
  180. temporarily */
  181. ulint srv_conc_n_waiting_threads = 0; /* number of OS threads waiting in the
  182. FIFO for a permission to enter InnoDB
  183. */
  184. typedef struct srv_conc_slot_struct srv_conc_slot_t;
  185. struct srv_conc_slot_struct{
  186. os_event_t event; /* event to wait */
  187. ibool reserved; /* TRUE if slot
  188. reserved */
  189. ibool wait_ended; /* TRUE when another
  190. thread has already set
  191. the event and the
  192. thread in this slot is
  193. free to proceed; but
  194. reserved may still be
  195. TRUE at that point */
  196. UT_LIST_NODE_T(srv_conc_slot_t) srv_conc_queue; /* queue node */
  197. };
  198. UT_LIST_BASE_NODE_T(srv_conc_slot_t) srv_conc_queue; /* queue of threads
  199. waiting to get in */
  200. srv_conc_slot_t* srv_conc_slots; /* array of wait
  201. slots */
  202. /* Number of times a thread is allowed to enter InnoDB within the same
  203. SQL query after it has once got the ticket at srv_conc_enter_innodb */
  204. #define SRV_FREE_TICKETS_TO_ENTER 500
  205. /*-----------------------*/
  206. /* If the following is set TRUE then we do not run purge and insert buffer
  207. merge to completion before shutdown */
  208. ibool srv_fast_shutdown = FALSE;
  209. ibool srv_very_fast_shutdown = FALSE; /* if this TRUE, do not flush the
  210.  buffer pool to data files at the
  211.  shutdown; we effectively 'crash'
  212.  InnoDB */
  213. /* Generate a innodb_status.<pid> file */
  214. ibool srv_innodb_status = FALSE;
  215. ibool srv_use_doublewrite_buf = TRUE;
  216. ibool   srv_set_thread_priorities = TRUE;
  217. int     srv_query_thread_priority = 0;
  218. /* TRUE if the Address Windowing Extensions of Windows are used; then we must
  219. disable adaptive hash indexes */
  220. ibool srv_use_awe = FALSE;
  221. ibool srv_use_adaptive_hash_indexes  = TRUE;
  222. /*-------------------------------------------*/
  223. ulint srv_n_spin_wait_rounds = 20;
  224. ulint srv_spin_wait_delay = 5;
  225. ibool srv_priority_boost = TRUE;
  226. ibool srv_print_thread_releases = FALSE;
  227. ibool srv_print_lock_waits = FALSE;
  228. ibool srv_print_buf_io = FALSE;
  229. ibool srv_print_log_io = FALSE;
  230. ibool srv_print_latch_waits = FALSE;
  231. ulint srv_n_rows_inserted = 0;
  232. ulint srv_n_rows_updated = 0;
  233. ulint srv_n_rows_deleted = 0;
  234. ulint srv_n_rows_read = 0;
  235. static ulint srv_n_rows_inserted_old = 0;
  236. static ulint srv_n_rows_updated_old = 0;
  237. static ulint srv_n_rows_deleted_old = 0;
  238. static ulint srv_n_rows_read_old = 0;
  239. /*
  240.   Set the following to 0 if you want InnoDB to write messages on
  241.   stderr on startup/shutdown
  242. */
  243. ibool srv_print_verbose_log = TRUE;
  244. ibool srv_print_innodb_monitor = FALSE;
  245. ibool   srv_print_innodb_lock_monitor   = FALSE;
  246. ibool   srv_print_innodb_tablespace_monitor = FALSE;
  247. ibool   srv_print_innodb_table_monitor = FALSE;
  248. /* The parameters below are obsolete: */
  249. ibool srv_print_parsed_sql = FALSE;
  250. ulint srv_sim_disk_wait_pct = ULINT_MAX;
  251. ulint srv_sim_disk_wait_len = ULINT_MAX;
  252. ibool srv_sim_disk_wait_by_yield = FALSE;
  253. ibool srv_sim_disk_wait_by_wait = FALSE;
  254. ibool srv_measure_contention = FALSE;
  255. ibool srv_measure_by_spin = FALSE;
  256. ibool srv_test_extra_mutexes = FALSE;
  257. ibool srv_test_nocache = FALSE;
  258. ibool srv_test_cache_evict = FALSE;
  259. ibool srv_test_sync = FALSE;
  260. ulint srv_test_n_threads = ULINT_MAX;
  261. ulint srv_test_n_loops = ULINT_MAX;
  262. ulint srv_test_n_free_rnds = ULINT_MAX;
  263. ulint srv_test_n_reserved_rnds = ULINT_MAX;
  264. ulint srv_test_array_size = ULINT_MAX;
  265. ulint srv_test_n_mutexes = ULINT_MAX;
  266. /* Array of English strings describing the current state of an
  267. i/o handler thread */
  268. const char* srv_io_thread_op_info[SRV_MAX_N_IO_THREADS];
  269. const char* srv_io_thread_function[SRV_MAX_N_IO_THREADS];
  270. time_t srv_last_monitor_time;
  271. mutex_t srv_innodb_monitor_mutex;
  272. /* Mutex for locking srv_monitor_file */
  273. mutex_t srv_monitor_file_mutex;
  274. /* Temporary file for innodb monitor output */
  275. FILE* srv_monitor_file;
  276. ulint srv_main_thread_process_no = 0;
  277. ulint srv_main_thread_id = 0;
  278. /*
  279. IMPLEMENTATION OF THE SERVER MAIN PROGRAM
  280. =========================================
  281. There is the following analogue between this database
  282. server and an operating system kernel:
  283. DB concept equivalent OS concept
  284. ---------- ---------------------
  285. transaction -- process;
  286. query thread -- thread;
  287. lock -- semaphore;
  288. transaction set to
  289. the rollback state -- kill signal delivered to a process;
  290. kernel -- kernel;
  291. query thread execution:
  292. (a) without kernel mutex
  293. reserved   --  process executing in user mode;
  294. (b) with kernel mutex reserved
  295. -- process executing in kernel mode;
  296. The server is controlled by a master thread which runs at
  297. a priority higher than normal, that is, higher than user threads.
  298. It sleeps most of the time, and wakes up, say, every 300 milliseconds,
  299. to check whether there is anything happening in the server which
  300. requires intervention of the master thread. Such situations may be,
  301. for example, when flushing of dirty blocks is needed in the buffer
  302. pool or old version of database rows have to be cleaned away.
  303. The threads which we call user threads serve the queries of
  304. the clients and input from the console of the server.
  305. They run at normal priority. The server may have several
  306. communications endpoints. A dedicated set of user threads waits
  307. at each of these endpoints ready to receive a client request.
  308. Each request is taken by a single user thread, which then starts
  309. processing and, when the result is ready, sends it to the client
  310. and returns to wait at the same endpoint the thread started from.
  311. So, we do not have dedicated communication threads listening at
  312. the endpoints and dealing the jobs to dedicated worker threads.
  313. Our architecture saves one thread swithch per request, compared
  314. to the solution with dedicated communication threads
  315. which amounts to 15 microseconds on 100 MHz Pentium
  316. running NT. If the client
  317. is communicating over a network, this saving is negligible, but
  318. if the client resides in the same machine, maybe in an SMP machine
  319. on a different processor from the server thread, the saving
  320. can be important as the threads can communicate over shared
  321. memory with an overhead of a few microseconds.
  322. We may later implement a dedicated communication thread solution
  323. for those endpoints which communicate over a network.
  324. Our solution with user threads has two problems: for each endpoint
  325. there has to be a number of listening threads. If there are many
  326. communication endpoints, it may be difficult to set the right number
  327. of concurrent threads in the system, as many of the threads
  328. may always be waiting at less busy endpoints. Another problem
  329. is queuing of the messages, as the server internally does not
  330. offer any queue for jobs.
  331. Another group of user threads is intended for splitting the
  332. queries and processing them in parallel. Let us call these
  333. parallel communication threads. These threads are waiting for
  334. parallelized tasks, suspended on event semaphores.
  335. A single user thread waits for input from the console,
  336. like a command to shut the database.
  337. Utility threads are a different group of threads which takes
  338. care of the buffer pool flushing and other, mainly background
  339. operations, in the server.
  340. Some of these utility threads always run at a lower than normal
  341. priority, so that they are always in background. Some of them
  342. may dynamically boost their priority by the pri_adjust function,
  343. even to higher than normal priority, if their task becomes urgent.
  344. The running of utilities is controlled by high- and low-water marks
  345. of urgency. The urgency may be measured by the number of dirty blocks
  346. in the buffer pool, in the case of the flush thread, for example.
  347. When the high-water mark is exceeded, an utility starts running, until
  348. the urgency drops under the low-water mark. Then the utility thread
  349. suspend itself to wait for an event. The master thread is
  350. responsible of signaling this event when the utility thread is
  351. again needed.
  352. For each individual type of utility, some threads always remain
  353. at lower than normal priority. This is because pri_adjust is implemented
  354. so that the threads at normal or higher priority control their
  355. share of running time by calling sleep. Thus, if the load of the
  356. system sudenly drops, these threads cannot necessarily utilize
  357. the system fully. The background priority threads make up for this,
  358. starting to run when the load drops.
  359. When there is no activity in the system, also the master thread
  360. suspends itself to wait for an event making
  361. the server totally silent. The responsibility to signal this
  362. event is on the user thread which again receives a message
  363. from a client.
  364. There is still one complication in our server design. If a
  365. background utility thread obtains a resource (e.g., mutex) needed by a user
  366. thread, and there is also some other user activity in the system,
  367. the user thread may have to wait indefinitely long for the
  368. resource, as the OS does not schedule a background thread if
  369. there is some other runnable user thread. This problem is called
  370. priority inversion in real-time programming.
  371. One solution to the priority inversion problem would be to
  372. keep record of which thread owns which resource and
  373. in the above case boost the priority of the background thread
  374. so that it will be scheduled and it can release the resource.
  375. This solution is called priority inheritance in real-time programming.
  376. A drawback of this solution is that the overhead of acquiring a mutex 
  377. increases slightly, maybe 0.2 microseconds on a 100 MHz Pentium, because
  378. the thread has to call os_thread_get_curr_id.
  379. This may be compared to 0.5 microsecond overhead for a mutex lock-unlock
  380. pair. Note that the thread
  381. cannot store the information in the resource, say mutex, itself,
  382. because competing threads could wipe out the information if it is
  383. stored before acquiring the mutex, and if it stored afterwards,
  384. the information is outdated for the time of one machine instruction,
  385. at least. (To be precise, the information could be stored to
  386. lock_word in mutex if the machine supports atomic swap.)
  387. The above solution with priority inheritance may become actual in the
  388. future, but at the moment we plan to implement a more coarse solution,
  389. which could be called a global priority inheritance. If a thread
  390. has to wait for a long time, say 300 milliseconds, for a resource,
  391. we just guess that it may be waiting for a resource owned by a background
  392. thread, and boost the the priority of all runnable background threads
  393. to the normal level. The background threads then themselves adjust
  394. their fixed priority back to background after releasing all resources
  395. they had (or, at some fixed points in their program code).
  396. What is the performance of the global priority inheritance solution?
  397. We may weigh the length of the wait time 300 milliseconds, during
  398. which the system processes some other thread
  399. to the cost of boosting the priority of each runnable background
  400. thread, rescheduling it, and lowering the priority again.
  401. On 100 MHz Pentium + NT this overhead may be of the order 100
  402. microseconds per thread. So, if the number of runnable background
  403. threads is not very big, say < 100, the cost is tolerable.
  404. Utility threads probably will access resources used by
  405. user threads not very often, so collisions of user threads
  406. to preempted utility threads should not happen very often.
  407. The thread table contains
  408. information of the current status of each thread existing in the system,
  409. and also the event semaphores used in suspending the master thread
  410. and utility and parallel communication threads when they have nothing to do.
  411. The thread table can be seen as an analogue to the process table
  412. in a traditional Unix implementation.
  413. The thread table is also used in the global priority inheritance
  414. scheme. This brings in one additional complication: threads accessing
  415. the thread table must have at least normal fixed priority,
  416. because the priority inheritance solution does not work if a background
  417. thread is preempted while possessing the mutex protecting the thread table.
  418. So, if a thread accesses the thread table, its priority has to be
  419. boosted at least to normal. This priority requirement can be seen similar to
  420. the privileged mode used when processing the kernel calls in traditional
  421. Unix.*/
  422. /* Thread slot in the thread table */
  423. struct srv_slot_struct{
  424. os_thread_id_t id; /* thread id */
  425. os_thread_t handle; /* thread handle */
  426. ulint type; /* thread type: user, utility etc. */
  427. ibool in_use; /* TRUE if this slot is in use */
  428. ibool suspended; /* TRUE if the thread is waiting
  429. for the event of this slot */
  430. ib_time_t suspend_time; /* time when the thread was
  431. suspended */
  432. os_event_t event; /* event used in suspending the
  433. thread when it has nothing to do */
  434. que_thr_t* thr; /* suspended query thread (only
  435. used for MySQL threads) */
  436. };
  437. /* Table for MySQL threads where they will be suspended to wait for locks */
  438. srv_slot_t* srv_mysql_table = NULL;
  439. os_event_t srv_lock_timeout_thread_event;
  440. srv_sys_t* srv_sys = NULL;
  441. byte srv_pad1[64]; /* padding to prevent other memory update
  442. hotspots from residing on the same memory
  443. cache line */
  444. mutex_t* kernel_mutex_temp;/* mutex protecting the server, trx structs,
  445. query threads, and lock table */
  446. byte srv_pad2[64]; /* padding to prevent other memory update
  447. hotspots from residing on the same memory
  448. cache line */
  449. /* The following three values measure the urgency of the jobs of
  450. buffer, version, and insert threads. They may vary from 0 - 1000.
  451. The server mutex protects all these variables. The low-water values
  452. tell that the server can acquiesce the utility when the value
  453. drops below this low-water mark. */
  454. ulint srv_meter[SRV_MASTER + 1];
  455. ulint srv_meter_low_water[SRV_MASTER + 1];
  456. ulint srv_meter_high_water[SRV_MASTER + 1];
  457. ulint srv_meter_high_water2[SRV_MASTER + 1];
  458. ulint srv_meter_foreground[SRV_MASTER + 1];
  459. /* The following values give info about the activity going on in
  460. the database. They are protected by the server mutex. The arrays
  461. are indexed by the type of the thread. */
  462. ulint srv_n_threads_active[SRV_MASTER + 1];
  463. ulint srv_n_threads[SRV_MASTER + 1];
  464. /*************************************************************************
  465. Sets the info describing an i/o thread current state. */
  466. void
  467. srv_set_io_thread_op_info(
  468. /*======================*/
  469. ulint i, /* in: the 'segment' of the i/o thread */
  470. const char* str) /* in: constant char string describing the
  471. state */
  472. {
  473. ut_a(i < SRV_MAX_N_IO_THREADS);
  474. srv_io_thread_op_info[i] = str;
  475. }
  476. /*************************************************************************
  477. Accessor function to get pointer to n'th slot in the server thread
  478. table. */
  479. static
  480. srv_slot_t*
  481. srv_table_get_nth_slot(
  482. /*===================*/
  483. /* out: pointer to the slot */
  484. ulint index) /* in: index of the slot */
  485. {
  486. ut_a(index < OS_THREAD_MAX_N);
  487. return(srv_sys->threads + index);
  488. }
  489. /*************************************************************************
  490. Gets the number of threads in the system. */
  491. ulint
  492. srv_get_n_threads(void)
  493. /*===================*/
  494. {
  495. ulint i;
  496. ulint n_threads = 0;
  497. mutex_enter(&kernel_mutex);
  498. for (i = SRV_COM; i < SRV_MASTER + 1; i++) {
  499. n_threads += srv_n_threads[i];
  500. }
  501. mutex_exit(&kernel_mutex);
  502. return(n_threads);
  503. }
  504. /*************************************************************************
  505. Reserves a slot in the thread table for the current thread. Also creates the
  506. thread local storage struct for the current thread. NOTE! The server mutex
  507. has to be reserved by the caller! */
  508. static
  509. ulint
  510. srv_table_reserve_slot(
  511. /*===================*/
  512. /* out: reserved slot index */
  513. ulint type) /* in: type of the thread: one of SRV_COM, ... */
  514. {
  515. srv_slot_t* slot;
  516. ulint i;
  517. ut_a(type > 0);
  518. ut_a(type <= SRV_MASTER);
  519. i = 0;
  520. slot = srv_table_get_nth_slot(i);
  521. while (slot->in_use) {
  522. i++;
  523. slot = srv_table_get_nth_slot(i);
  524. }
  525. ut_a(slot->in_use == FALSE);
  526. slot->in_use = TRUE;
  527. slot->suspended = FALSE;
  528. slot->id = os_thread_get_curr_id();
  529. slot->handle = os_thread_get_curr();
  530. slot->type = type;
  531. thr_local_create();
  532. thr_local_set_slot_no(os_thread_get_curr_id(), i);
  533. return(i);
  534. }
  535. /*************************************************************************
  536. Suspends the calling thread to wait for the event in its thread slot.
  537. NOTE! The server mutex has to be reserved by the caller! */
  538. static
  539. os_event_t
  540. srv_suspend_thread(void)
  541. /*====================*/
  542. /* out: event for the calling thread to wait */
  543. {
  544. srv_slot_t* slot;
  545. os_event_t event;
  546. ulint slot_no;
  547. ulint type;
  548. #ifdef UNIV_SYNC_DEBUG
  549. ut_ad(mutex_own(&kernel_mutex));
  550. #endif /* UNIV_SYNC_DEBUG */
  551. slot_no = thr_local_get_slot_no(os_thread_get_curr_id());
  552. if (srv_print_thread_releases) {
  553. fprintf(stderr,
  554. "Suspending thread %lu to slot %lu meter %lun",
  555. (ulong) os_thread_get_curr_id(), (ulong) slot_no,
  556. (ulong) srv_meter[SRV_RECOVERY]);
  557. }
  558. slot = srv_table_get_nth_slot(slot_no);
  559. type = slot->type;
  560. ut_ad(type >= SRV_WORKER);
  561. ut_ad(type <= SRV_MASTER);
  562. event = slot->event;
  563. slot->suspended = TRUE;
  564. ut_ad(srv_n_threads_active[type] > 0);
  565. srv_n_threads_active[type]--;
  566. os_event_reset(event);
  567. return(event);
  568. }
  569. /*************************************************************************
  570. Releases threads of the type given from suspension in the thread table.
  571. NOTE! The server mutex has to be reserved by the caller! */
  572. ulint
  573. srv_release_threads(
  574. /*================*/
  575. /* out: number of threads released: this may be
  576. < n if not enough threads were suspended at the
  577. moment */
  578. ulint type, /* in: thread type */
  579. ulint n) /* in: number of threads to release */
  580. {
  581. srv_slot_t* slot;
  582. ulint i;
  583. ulint count = 0;
  584. ut_ad(type >= SRV_WORKER);
  585. ut_ad(type <= SRV_MASTER);
  586. ut_ad(n > 0);
  587. #ifdef UNIV_SYNC_DEBUG
  588. ut_ad(mutex_own(&kernel_mutex));
  589. #endif /* UNIV_SYNC_DEBUG */
  590. for (i = 0; i < OS_THREAD_MAX_N; i++) {
  591. slot = srv_table_get_nth_slot(i);
  592. if (slot->in_use && slot->type == type && slot->suspended) {
  593. slot->suspended = FALSE;
  594. srv_n_threads_active[type]++;
  595. os_event_set(slot->event);
  596. if (srv_print_thread_releases) {
  597. fprintf(stderr,
  598. "Releasing thread %lu type %lu from slot %lu meter %lun",
  599. (ulong) slot->id, (ulong) type, (ulong) i,
  600.                 (ulong) srv_meter[SRV_RECOVERY]);
  601. }
  602. count++;
  603. if (count == n) {
  604. break;
  605. }
  606. }
  607. }
  608. return(count);
  609. }
  610. /*************************************************************************
  611. Returns the calling thread type. */
  612. ulint
  613. srv_get_thread_type(void)
  614. /*=====================*/
  615. /* out: SRV_COM, ... */
  616. {
  617. ulint slot_no;
  618. srv_slot_t* slot;
  619. ulint type;
  620. mutex_enter(&kernel_mutex);
  621. slot_no = thr_local_get_slot_no(os_thread_get_curr_id());
  622. slot = srv_table_get_nth_slot(slot_no);
  623. type = slot->type;
  624. ut_ad(type >= SRV_WORKER);
  625. ut_ad(type <= SRV_MASTER);
  626. mutex_exit(&kernel_mutex);
  627. return(type);
  628. }
  629. /*************************************************************************
  630. Initializes the server. */
  631. static
  632. void
  633. srv_init(void)
  634. /*==========*/
  635. {
  636. srv_conc_slot_t*  conc_slot;
  637. srv_slot_t* slot;
  638. ulint i;
  639. srv_sys = mem_alloc(sizeof(srv_sys_t));
  640. kernel_mutex_temp = mem_alloc(sizeof(mutex_t));
  641. mutex_create(&kernel_mutex);
  642. mutex_set_level(&kernel_mutex, SYNC_KERNEL);
  643. mutex_create(&srv_innodb_monitor_mutex);
  644. mutex_set_level(&srv_innodb_monitor_mutex, SYNC_NO_ORDER_CHECK);
  645. srv_sys->threads = mem_alloc(OS_THREAD_MAX_N * sizeof(srv_slot_t));
  646. for (i = 0; i < OS_THREAD_MAX_N; i++) {
  647. slot = srv_table_get_nth_slot(i);
  648. slot->in_use = FALSE;
  649.                 slot->type=0; /* Avoid purify errors */
  650. slot->event = os_event_create(NULL);
  651. ut_a(slot->event);
  652. }
  653. srv_mysql_table = mem_alloc(OS_THREAD_MAX_N * sizeof(srv_slot_t));
  654. for (i = 0; i < OS_THREAD_MAX_N; i++) {
  655. slot = srv_mysql_table + i;
  656. slot->in_use = FALSE;
  657. slot->type = 0;
  658. slot->event = os_event_create(NULL);
  659. ut_a(slot->event);
  660. }
  661. srv_lock_timeout_thread_event = os_event_create(NULL);
  662. for (i = 0; i < SRV_MASTER + 1; i++) {
  663. srv_n_threads_active[i] = 0;
  664. srv_n_threads[i] = 0;
  665. srv_meter[i] = 30;
  666. srv_meter_low_water[i] = 50;
  667. srv_meter_high_water[i] = 100;
  668. srv_meter_high_water2[i] = 200;
  669. srv_meter_foreground[i] = 250;
  670. }
  671. srv_sys->operational = os_event_create(NULL);
  672. ut_a(srv_sys->operational);
  673. UT_LIST_INIT(srv_sys->tasks);
  674. /* Init the server concurrency restriction data structures */
  675. os_fast_mutex_init(&srv_conc_mutex);
  676. UT_LIST_INIT(srv_conc_queue);
  677. srv_conc_slots = mem_alloc(OS_THREAD_MAX_N * sizeof(srv_conc_slot_t));
  678. for (i = 0; i < OS_THREAD_MAX_N; i++) {
  679. conc_slot = srv_conc_slots + i;
  680. conc_slot->reserved = FALSE;
  681. conc_slot->event = os_event_create(NULL);
  682. ut_a(conc_slot->event);
  683. }
  684. }
  685. /*************************************************************************
  686. Frees the OS fast mutex created in srv_init(). */
  687. void
  688. srv_free(void)
  689. /*==========*/
  690. {
  691. os_fast_mutex_free(&srv_conc_mutex);
  692. }
  693. /*************************************************************************
  694. Initializes the synchronization primitives, memory system, and the thread
  695. local storage. */
  696. void
  697. srv_general_init(void)
  698. /*==================*/
  699. {
  700. os_sync_init();
  701. sync_init();
  702. mem_init(srv_mem_pool_size);
  703. thr_local_init();
  704. }
  705. /*======================= InnoDB Server FIFO queue =======================*/
  706. /* Maximum allowable purge history length.  <=0 means 'infinite'. */
  707. ulong srv_max_purge_lag = 0;
  708. /*************************************************************************
  709. Puts an OS thread to wait if there are too many concurrent threads
  710. (>= srv_thread_concurrency) inside InnoDB. The threads wait in a FIFO queue. */
  711. void
  712. srv_conc_enter_innodb(
  713. /*==================*/
  714. trx_t* trx) /* in: transaction object associated with the
  715. thread */
  716. {
  717. ibool has_slept = FALSE;
  718. srv_conc_slot_t* slot   = NULL;
  719. ulint i;
  720. if (srv_thread_concurrency >= 500) {
  721. /* Disable the concurrency check */
  722. return;
  723. }
  724. /* If trx has 'free tickets' to enter the engine left, then use one
  725. such ticket */
  726. if (trx->n_tickets_to_enter_innodb > 0) {
  727. trx->n_tickets_to_enter_innodb--;
  728. return;
  729. }
  730. os_fast_mutex_lock(&srv_conc_mutex);
  731. retry:
  732. if (trx->declared_to_be_inside_innodb) {
  733.         ut_print_timestamp(stderr);
  734. fputs(
  735. "  InnoDB: Error: trying to declare trx to enter InnoDB, butn"
  736. "InnoDB: it already is declared.n", stderr);
  737. trx_print(stderr, trx);
  738. putc('n', stderr);
  739. os_fast_mutex_unlock(&srv_conc_mutex);
  740. return;
  741. }
  742. if (srv_conc_n_threads < (lint)srv_thread_concurrency) {
  743. srv_conc_n_threads++;
  744. trx->declared_to_be_inside_innodb = TRUE;
  745. trx->n_tickets_to_enter_innodb = SRV_FREE_TICKETS_TO_ENTER;
  746. os_fast_mutex_unlock(&srv_conc_mutex);
  747. return;
  748. }
  749. /* If the transaction is not holding resources, let it sleep for 50
  750. milliseconds, and try again then */
  751.  
  752. if (!has_slept && !trx->has_search_latch
  753.     && NULL == UT_LIST_GET_FIRST(trx->trx_locks)) {
  754.         has_slept = TRUE; /* We let is sleep only once to avoid
  755.   starvation */
  756. srv_conc_n_waiting_threads++;
  757. os_fast_mutex_unlock(&srv_conc_mutex);
  758. trx->op_info = "sleeping before joining InnoDB queue";
  759. /* Peter Zaitsev suggested that we take the sleep away
  760. altogether. But the sleep may be good in pathological
  761. situations of lots of thread switches. Simply put some
  762. threads aside for a while to reduce the number of thread
  763. switches. */
  764. os_thread_sleep(10000);
  765. trx->op_info = "";
  766. os_fast_mutex_lock(&srv_conc_mutex);
  767. srv_conc_n_waiting_threads--;
  768. goto retry;
  769. }   
  770. /* Too many threads inside: put the current thread to a queue */
  771. for (i = 0; i < OS_THREAD_MAX_N; i++) {
  772. slot = srv_conc_slots + i;
  773. if (!slot->reserved) {
  774. break;
  775. }
  776. }
  777. if (i == OS_THREAD_MAX_N) {
  778. /* Could not find a free wait slot, we must let the
  779. thread enter */
  780. srv_conc_n_threads++;
  781. trx->declared_to_be_inside_innodb = TRUE;
  782. trx->n_tickets_to_enter_innodb = 0;
  783. os_fast_mutex_unlock(&srv_conc_mutex);
  784. return;
  785. }
  786. /* Release possible search system latch this thread has */
  787. if (trx->has_search_latch) {
  788. trx_search_latch_release_if_reserved(trx);
  789. }
  790. /* Add to the queue */
  791. slot->reserved = TRUE;
  792. slot->wait_ended = FALSE;
  793. UT_LIST_ADD_LAST(srv_conc_queue, srv_conc_queue, slot);
  794. os_event_reset(slot->event);
  795. srv_conc_n_waiting_threads++;
  796. os_fast_mutex_unlock(&srv_conc_mutex);
  797. /* Go to wait for the event; when a thread leaves InnoDB it will
  798. release this thread */
  799. trx->op_info = "waiting in InnoDB queue";
  800. os_event_wait(slot->event);
  801. trx->op_info = "";
  802. os_fast_mutex_lock(&srv_conc_mutex);
  803. srv_conc_n_waiting_threads--;
  804. /* NOTE that the thread which released this thread already
  805. incremented the thread counter on behalf of this thread */
  806. slot->reserved = FALSE;
  807. UT_LIST_REMOVE(srv_conc_queue, srv_conc_queue, slot);
  808. trx->declared_to_be_inside_innodb = TRUE;
  809. trx->n_tickets_to_enter_innodb = SRV_FREE_TICKETS_TO_ENTER;
  810. os_fast_mutex_unlock(&srv_conc_mutex);
  811. }
  812. /*************************************************************************
  813. This lets a thread enter InnoDB regardless of the number of threads inside
  814. InnoDB. This must be called when a thread ends a lock wait. */
  815. void
  816. srv_conc_force_enter_innodb(
  817. /*========================*/
  818. trx_t* trx) /* in: transaction object associated with the
  819. thread */
  820. {
  821. if (srv_thread_concurrency >= 500) {
  822. return;
  823. }
  824. os_fast_mutex_lock(&srv_conc_mutex);
  825. srv_conc_n_threads++;
  826. trx->declared_to_be_inside_innodb = TRUE;
  827. trx->n_tickets_to_enter_innodb = 0;
  828. os_fast_mutex_unlock(&srv_conc_mutex);
  829. }
  830. /*************************************************************************
  831. This must be called when a thread exits InnoDB in a lock wait or at the
  832. end of an SQL statement. */
  833. void
  834. srv_conc_force_exit_innodb(
  835. /*=======================*/
  836. trx_t* trx) /* in: transaction object associated with the
  837. thread */
  838. {
  839. srv_conc_slot_t* slot = NULL;
  840. if (srv_thread_concurrency >= 500) {
  841. return;
  842. }
  843. if (trx->declared_to_be_inside_innodb == FALSE) {
  844. return;
  845. }
  846. os_fast_mutex_lock(&srv_conc_mutex);
  847. srv_conc_n_threads--;
  848. trx->declared_to_be_inside_innodb = FALSE;
  849. trx->n_tickets_to_enter_innodb = 0;
  850. if (srv_conc_n_threads < (lint)srv_thread_concurrency) {
  851. /* Look for a slot where a thread is waiting and no other
  852. thread has yet released the thread */
  853. slot = UT_LIST_GET_FIRST(srv_conc_queue);
  854. while (slot && slot->wait_ended == TRUE) {
  855. slot = UT_LIST_GET_NEXT(srv_conc_queue, slot);
  856. }
  857. if (slot != NULL) {
  858. slot->wait_ended = TRUE;
  859. /* We increment the count on behalf of the released
  860. thread */
  861. srv_conc_n_threads++;
  862. }
  863. }
  864. os_fast_mutex_unlock(&srv_conc_mutex);
  865. if (slot != NULL) {
  866. os_event_set(slot->event);
  867. }
  868. }
  869. /*************************************************************************
  870. This must be called when a thread exits InnoDB. */
  871. void
  872. srv_conc_exit_innodb(
  873. /*=================*/
  874. trx_t* trx) /* in: transaction object associated with the
  875. thread */
  876. {
  877. if (srv_thread_concurrency >= 500) {
  878. return;
  879. }
  880. if (trx->n_tickets_to_enter_innodb > 0) {
  881. /* We will pretend the thread is still inside InnoDB though it
  882. now leaves the InnoDB engine. In this way we save
  883. a lot of semaphore operations. srv_conc_force_exit_innodb is
  884. used to declare the thread definitely outside InnoDB. It
  885. should be called when there is a lock wait or an SQL statement
  886. ends. */
  887. return;
  888. }
  889. srv_conc_force_exit_innodb(trx);
  890. }
  891. /*========================================================================*/
  892. /*************************************************************************
  893. Normalizes init parameter values to use units we use inside InnoDB. */
  894. static
  895. ulint
  896. srv_normalize_init_values(void)
  897. /*===========================*/
  898. /* out: DB_SUCCESS or error code */
  899. {
  900. ulint n;
  901. ulint i;
  902. n = srv_n_data_files;
  903. for (i = 0; i < n; i++) {
  904. srv_data_file_sizes[i] = srv_data_file_sizes[i]
  905. * ((1024 * 1024) / UNIV_PAGE_SIZE);
  906. }
  907. srv_last_file_size_max = srv_last_file_size_max
  908. * ((1024 * 1024) / UNIV_PAGE_SIZE);
  909. srv_log_file_size = srv_log_file_size / UNIV_PAGE_SIZE;
  910. srv_log_buffer_size = srv_log_buffer_size / UNIV_PAGE_SIZE;
  911. srv_pool_size = srv_pool_size / (UNIV_PAGE_SIZE / 1024);
  912. srv_awe_window_size = srv_awe_window_size / UNIV_PAGE_SIZE;
  913. if (srv_use_awe) {
  914.         /* If we are using AWE we must save memory in the 32-bit
  915. address space of the process, and cannot bind the lock
  916. table size to the real buffer pool size. */
  917.         srv_lock_table_size = 20 * srv_awe_window_size;
  918. } else {
  919.         srv_lock_table_size = 5 * srv_pool_size;
  920. }
  921. return(DB_SUCCESS);
  922. }
  923. /*************************************************************************
  924. Boots the InnoDB server. */
  925. ulint
  926. srv_boot(void)
  927. /*==========*/
  928. /* out: DB_SUCCESS or error code */
  929. {
  930. ulint err;
  931. /* Transform the init parameter values given by MySQL to
  932. use units we use inside InnoDB: */
  933. err = srv_normalize_init_values();
  934. if (err != DB_SUCCESS) {
  935. return(err);
  936. }
  937. /* Initialize synchronization primitives, memory management, and thread
  938. local storage */
  939. srv_general_init();
  940. /* Initialize this module */
  941. srv_init();
  942. return(DB_SUCCESS);
  943. }
  944. /*************************************************************************
  945. Reserves a slot in the thread table for the current MySQL OS thread.
  946. NOTE! The kernel mutex has to be reserved by the caller! */
  947. static
  948. srv_slot_t*
  949. srv_table_reserve_slot_for_mysql(void)
  950. /*==================================*/
  951. /* out: reserved slot */
  952. {
  953. srv_slot_t* slot;
  954. ulint i;
  955. #ifdef UNIV_SYNC_DEBUG
  956. ut_ad(mutex_own(&kernel_mutex));
  957. #endif /* UNIV_SYNC_DEBUG */
  958. i = 0;
  959. slot = srv_mysql_table + i;
  960. while (slot->in_use) {
  961. i++;
  962. if (i >= OS_THREAD_MAX_N) {
  963.         ut_print_timestamp(stderr);
  964.         fprintf(stderr,
  965. "  InnoDB: There appear to be %lu MySQL threads currently waitingn"
  966. "InnoDB: inside InnoDB, which is the upper limit. Cannot continue operation.n"
  967. "InnoDB: We intentionally generate a seg fault to print a stack tracen"
  968. "InnoDB: on Linux. But first we print a list of waiting threads.n", (ulong) i);
  969. for (i = 0; i < OS_THREAD_MAX_N; i++) {
  970.         slot = srv_mysql_table + i;
  971.         fprintf(stderr,
  972. "Slot %lu: thread id %lu, type %lu, in use %lu, susp %lu, time %lun",
  973.   (ulong) i, (ulong) os_thread_pf(slot->id),
  974.   (ulong) slot->type, (ulong) slot->in_use,
  975.   (ulong) slot->suspended,
  976.   (ulong) difftime(ut_time(), slot->suspend_time));
  977. }
  978.         ut_error;
  979. }
  980. slot = srv_mysql_table + i;
  981. }
  982. ut_a(slot->in_use == FALSE);
  983. slot->in_use = TRUE;
  984. slot->id = os_thread_get_curr_id();
  985. slot->handle = os_thread_get_curr();
  986. return(slot);
  987. }
  988. /*******************************************************************
  989. Puts a MySQL OS thread to wait for a lock to be released. If an error
  990. occurs during the wait trx->error_state associated with thr is
  991. != DB_SUCCESS when we return. DB_LOCK_WAIT_TIMEOUT and DB_DEADLOCK
  992. are possible errors. DB_DEADLOCK is returned if selective deadlock
  993. resolution chose this transaction as a victim. */
  994. void
  995. srv_suspend_mysql_thread(
  996. /*=====================*/
  997. que_thr_t* thr) /* in: query thread associated with the MySQL
  998. OS thread */
  999. {
  1000. srv_slot_t* slot;
  1001. os_event_t event;
  1002. double wait_time;
  1003. trx_t* trx;
  1004. ibool had_dict_lock = FALSE;
  1005. ibool was_declared_inside_innodb = FALSE;
  1006. #ifdef UNIV_SYNC_DEBUG
  1007. ut_ad(!mutex_own(&kernel_mutex));
  1008. #endif /* UNIV_SYNC_DEBUG */
  1009. trx = thr_get_trx(thr);
  1010. os_event_set(srv_lock_timeout_thread_event);
  1011. mutex_enter(&kernel_mutex);
  1012. trx->error_state = DB_SUCCESS;
  1013. if (thr->state == QUE_THR_RUNNING) {
  1014. ut_ad(thr->is_active == TRUE);
  1015. /* The lock has already been released or this transaction
  1016. was chosen as a deadlock victim: no need to suspend */
  1017. if (trx->was_chosen_as_deadlock_victim) {
  1018. trx->error_state = DB_DEADLOCK;
  1019. trx->was_chosen_as_deadlock_victim = FALSE;
  1020. }
  1021. mutex_exit(&kernel_mutex);
  1022. return;
  1023. }
  1024. ut_ad(thr->is_active == FALSE);
  1025. slot = srv_table_reserve_slot_for_mysql();
  1026. event = slot->event;
  1027. slot->thr = thr;
  1028. os_event_reset(event);
  1029. slot->suspend_time = ut_time();
  1030. /* Wake the lock timeout monitor thread, if it is suspended */
  1031. os_event_set(srv_lock_timeout_thread_event);
  1032. mutex_exit(&kernel_mutex);
  1033. if (trx->declared_to_be_inside_innodb) {
  1034. was_declared_inside_innodb = TRUE;
  1035. /* We must declare this OS thread to exit InnoDB, since a
  1036. possible other thread holding a lock which this thread waits
  1037. for must be allowed to enter, sooner or later */
  1038. srv_conc_force_exit_innodb(trx);
  1039. }
  1040. /* Release possible foreign key check latch */
  1041. if (trx->dict_operation_lock_mode == RW_S_LATCH) {
  1042. had_dict_lock = TRUE;
  1043. row_mysql_unfreeze_data_dictionary(trx);
  1044. }
  1045. ut_a(trx->dict_operation_lock_mode == 0);
  1046. /* Wait for the release */
  1047. os_event_wait(event);
  1048. if (had_dict_lock) {
  1049. row_mysql_freeze_data_dictionary(trx);
  1050. }
  1051. if (was_declared_inside_innodb) {
  1052. /* Return back inside InnoDB */
  1053. srv_conc_force_enter_innodb(trx);
  1054. }
  1055. mutex_enter(&kernel_mutex);
  1056. /* Release the slot for others to use */
  1057. slot->in_use = FALSE;
  1058. wait_time = ut_difftime(ut_time(), slot->suspend_time);
  1059. if (trx->was_chosen_as_deadlock_victim) {
  1060. trx->error_state = DB_DEADLOCK;
  1061. trx->was_chosen_as_deadlock_victim = FALSE;
  1062. }
  1063. mutex_exit(&kernel_mutex);
  1064. if (srv_lock_wait_timeout < 100000000 && 
  1065.      wait_time > (double)srv_lock_wait_timeout) {
  1066.      trx->error_state = DB_LOCK_WAIT_TIMEOUT;
  1067. }
  1068. }
  1069. /************************************************************************
  1070. Releases a MySQL OS thread waiting for a lock to be released, if the
  1071. thread is already suspended. */
  1072. void
  1073. srv_release_mysql_thread_if_suspended(
  1074. /*==================================*/
  1075. que_thr_t* thr) /* in: query thread associated with the
  1076. MySQL OS thread  */
  1077. {
  1078. srv_slot_t* slot;
  1079. ulint i;
  1080. #ifdef UNIV_SYNC_DEBUG
  1081. ut_ad(mutex_own(&kernel_mutex));
  1082. #endif /* UNIV_SYNC_DEBUG */
  1083. for (i = 0; i < OS_THREAD_MAX_N; i++) {
  1084. slot = srv_mysql_table + i;
  1085. if (slot->in_use && slot->thr == thr) {
  1086. /* Found */
  1087. os_event_set(slot->event);
  1088. return;
  1089. }
  1090. }
  1091. /* not found */
  1092. }
  1093. /**********************************************************************
  1094. Refreshes the values used to calculate per-second averages. */
  1095. static
  1096. void
  1097. srv_refresh_innodb_monitor_stats(void)
  1098. /*==================================*/
  1099. {
  1100. mutex_enter(&srv_innodb_monitor_mutex);
  1101. srv_last_monitor_time = time(NULL);
  1102. os_aio_refresh_stats();
  1103. btr_cur_n_sea_old = btr_cur_n_sea;
  1104. btr_cur_n_non_sea_old = btr_cur_n_non_sea;
  1105. log_refresh_stats();
  1106. buf_refresh_io_stats();
  1107. srv_n_rows_inserted_old = srv_n_rows_inserted;
  1108. srv_n_rows_updated_old = srv_n_rows_updated;
  1109. srv_n_rows_deleted_old = srv_n_rows_deleted;
  1110. srv_n_rows_read_old = srv_n_rows_read;
  1111. mutex_exit(&srv_innodb_monitor_mutex);
  1112. }
  1113. /**********************************************************************
  1114. Outputs to a file the output of the InnoDB Monitor. */
  1115. void
  1116. srv_printf_innodb_monitor(
  1117. /*======================*/
  1118. FILE* file, /* in: output stream */
  1119. ulint* trx_start, /* out: file position of the start of
  1120. the list of active transactions */
  1121. ulint* trx_end) /* out: file position of the end of
  1122. the list of active transactions */
  1123. {
  1124. double time_elapsed;
  1125. time_t current_time;
  1126. ulint   n_reserved;
  1127. mutex_enter(&srv_innodb_monitor_mutex);
  1128. current_time = time(NULL);
  1129. /* We add 0.001 seconds to time_elapsed to prevent division
  1130. by zero if two users happen to call SHOW INNODB STATUS at the same
  1131. time */
  1132. time_elapsed = difftime(current_time, srv_last_monitor_time)
  1133. + 0.001;
  1134. srv_last_monitor_time = time(NULL);
  1135. fputs("n=====================================n", file);
  1136. ut_print_timestamp(file);
  1137. fprintf(file,
  1138. " INNODB MONITOR OUTPUTn"
  1139. "=====================================n"
  1140. "Per second averages calculated from the last %lu secondsn",
  1141. (ulong)time_elapsed);
  1142. fputs("----------n"
  1143. "SEMAPHORESn"
  1144. "----------n", file);
  1145. sync_print(file);
  1146. /* Conceptually, srv_innodb_monitor_mutex has a very high latching
  1147. order level in sync0sync.h, while dict_foreign_err_mutex has a very
  1148. low level 135. Therefore we can reserve the latter mutex here without
  1149. a danger of a deadlock of threads. */
  1150. mutex_enter(&dict_foreign_err_mutex);
  1151. if (ftell(dict_foreign_err_file) != 0L) {
  1152. fputs("------------------------n"
  1153. "LATEST FOREIGN KEY ERRORn"
  1154. "------------------------n", file);
  1155. ut_copy_file(file, dict_foreign_err_file);
  1156. }
  1157. mutex_exit(&dict_foreign_err_mutex);
  1158. lock_print_info_summary(file);
  1159. if (trx_start) {
  1160. long t = ftell(file);
  1161. if (t < 0) {
  1162. *trx_start = ULINT_UNDEFINED;
  1163. } else {
  1164. *trx_start = (ulint) t;
  1165. }
  1166. }
  1167. lock_print_info_all_transactions(file);
  1168. if (trx_end) {
  1169. long t = ftell(file);
  1170. if (t < 0) {
  1171. *trx_end = ULINT_UNDEFINED;
  1172. } else {
  1173. *trx_end = (ulint) t;
  1174. }
  1175. }
  1176. fputs("--------n"
  1177. "FILE I/On"
  1178. "--------n", file);
  1179. os_aio_print(file);
  1180. fputs("-------------------------------------n"
  1181. "INSERT BUFFER AND ADAPTIVE HASH INDEXn"
  1182. "-------------------------------------n", file);
  1183. ibuf_print(file);
  1184. ha_print_info(file, btr_search_sys->hash_index);
  1185. fprintf(file,
  1186. "%.2f hash searches/s, %.2f non-hash searches/sn",
  1187. (btr_cur_n_sea - btr_cur_n_sea_old)
  1188. / time_elapsed,
  1189. (btr_cur_n_non_sea - btr_cur_n_non_sea_old)
  1190. / time_elapsed);
  1191. btr_cur_n_sea_old = btr_cur_n_sea;
  1192. btr_cur_n_non_sea_old = btr_cur_n_non_sea;
  1193. fputs("---n"
  1194.        "LOGn"
  1195. "---n", file);
  1196. log_print(file);
  1197. fputs("----------------------n"
  1198.        "BUFFER POOL AND MEMORYn"
  1199. "----------------------n", file);
  1200. fprintf(file,
  1201. "Total memory allocated " ULINTPF
  1202. "; in additional pool allocated " ULINTPF "n",
  1203. ut_total_allocated_memory,
  1204. mem_pool_get_reserved(mem_comm_pool));
  1205. if (srv_use_awe) {
  1206. fprintf(file,
  1207. "In addition to that %lu MB of AWE memory allocatedn",
  1208. (ulong) (srv_pool_size / ((1024 * 1024) / UNIV_PAGE_SIZE)));
  1209. }
  1210. buf_print_io(file);
  1211. fputs("--------------n"
  1212. "ROW OPERATIONSn"
  1213. "--------------n", file);
  1214. fprintf(file, "%ld queries inside InnoDB, %lu queries in queuen",
  1215.                (long) srv_conc_n_threads,
  1216.        (ulong) srv_conc_n_waiting_threads);
  1217.         n_reserved = fil_space_get_n_reserved_extents(0);
  1218.         if (n_reserved > 0) {
  1219.                 fprintf(file,
  1220.         "%lu tablespace extents now reserved for B-tree split operationsn",
  1221.                                                     (ulong) n_reserved);
  1222.         }
  1223. #ifdef UNIV_LINUX
  1224. fprintf(file, "Main thread process no. %lu, id %lu, state: %sn",
  1225.        (ulong) srv_main_thread_process_no,
  1226.        (ulong) srv_main_thread_id,
  1227.        srv_main_thread_op_info);
  1228. #else
  1229. fprintf(file, "Main thread id %lu, state: %sn",
  1230. (ulong) srv_main_thread_id,
  1231. srv_main_thread_op_info);
  1232. #endif
  1233. fprintf(file,
  1234. "Number of rows inserted " ULINTPF
  1235. ", updated " ULINTPF ", deleted " ULINTPF ", read " ULINTPF "n",
  1236. srv_n_rows_inserted, 
  1237. srv_n_rows_updated, 
  1238. srv_n_rows_deleted, 
  1239. srv_n_rows_read);
  1240. fprintf(file,
  1241. "%.2f inserts/s, %.2f updates/s, %.2f deletes/s, %.2f reads/sn",
  1242. (srv_n_rows_inserted - srv_n_rows_inserted_old)
  1243. / time_elapsed,
  1244. (srv_n_rows_updated - srv_n_rows_updated_old)
  1245. / time_elapsed,
  1246. (srv_n_rows_deleted - srv_n_rows_deleted_old)
  1247. / time_elapsed,
  1248. (srv_n_rows_read - srv_n_rows_read_old)
  1249. / time_elapsed);
  1250. srv_n_rows_inserted_old = srv_n_rows_inserted;
  1251. srv_n_rows_updated_old = srv_n_rows_updated;
  1252. srv_n_rows_deleted_old = srv_n_rows_deleted;
  1253. srv_n_rows_read_old = srv_n_rows_read;
  1254. fputs("----------------------------n"
  1255.        "END OF INNODB MONITOR OUTPUTn"
  1256. "============================n", file);
  1257. mutex_exit(&srv_innodb_monitor_mutex);
  1258. fflush(file);
  1259. }
  1260. /*************************************************************************
  1261. A thread which wakes up threads whose lock wait may have lasted too long.
  1262. This also prints the info output by various InnoDB monitors. */
  1263. #ifndef __WIN__
  1264. void*
  1265. #else
  1266. ulint
  1267. #endif
  1268. srv_lock_timeout_and_monitor_thread(
  1269. /*================================*/
  1270. /* out: a dummy parameter */
  1271. void* arg __attribute__((unused)))
  1272. /* in: a dummy parameter required by
  1273. os_thread_create */
  1274. {
  1275. srv_slot_t* slot;
  1276. double time_elapsed;
  1277. time_t          current_time;
  1278. time_t last_table_monitor_time;
  1279. time_t last_monitor_time;
  1280. ibool some_waits;
  1281. double wait_time;
  1282. ulint i;
  1283. #ifdef UNIV_DEBUG_THREAD_CREATION
  1284. fprintf(stderr, "Lock timeout thread starts, id %lun",
  1285.      os_thread_pf(os_thread_get_curr_id()));
  1286. #endif
  1287. UT_NOT_USED(arg);
  1288. srv_last_monitor_time = time(NULL);
  1289. last_table_monitor_time = time(NULL);
  1290. last_monitor_time = time(NULL);
  1291. loop:
  1292. srv_lock_timeout_and_monitor_active = TRUE;
  1293. /* When someone is waiting for a lock, we wake up every second
  1294. and check if a timeout has passed for a lock wait */
  1295. os_thread_sleep(1000000);
  1296. /* In case mutex_exit is not a memory barrier, it is
  1297. theoretically possible some threads are left waiting though
  1298. the semaphore is already released. Wake up those threads: */
  1299. sync_arr_wake_threads_if_sema_free();
  1300. current_time = time(NULL);
  1301. time_elapsed = difftime(current_time, last_monitor_time);
  1302. if (time_elapsed > 15) {
  1303.     last_monitor_time = time(NULL);
  1304.     if (srv_print_innodb_monitor) {
  1305. srv_printf_innodb_monitor(stderr, NULL, NULL);
  1306.     }
  1307.     if (srv_innodb_status) {
  1308. mutex_enter(&srv_monitor_file_mutex);
  1309. rewind(srv_monitor_file);
  1310. srv_printf_innodb_monitor(srv_monitor_file, NULL, NULL);
  1311. os_file_set_eof(srv_monitor_file);
  1312. mutex_exit(&srv_monitor_file_mutex);
  1313.     }
  1314.     if (srv_print_innodb_tablespace_monitor
  1315. && difftime(current_time, last_table_monitor_time) > 60) {
  1316. last_table_monitor_time = time(NULL);
  1317. fputs("================================================n",
  1318. stderr);
  1319. ut_print_timestamp(stderr);
  1320. fputs(" INNODB TABLESPACE MONITOR OUTPUTn"
  1321. "================================================n",
  1322. stderr);
  1323.        
  1324. fsp_print(0);
  1325. fputs("Validating tablespacen", stderr);
  1326. fsp_validate(0);
  1327. fputs("Validation okn"
  1328. "---------------------------------------n"
  1329.         "END OF INNODB TABLESPACE MONITOR OUTPUTn"
  1330. "=======================================n",
  1331. stderr);
  1332.     }
  1333.     if (srv_print_innodb_table_monitor
  1334. && difftime(current_time, last_table_monitor_time) > 60) {
  1335. last_table_monitor_time = time(NULL);
  1336. fputs("===========================================n", stderr);
  1337. ut_print_timestamp(stderr);
  1338. fputs(" INNODB TABLE MONITOR OUTPUTn"
  1339. "===========================================n",
  1340. stderr);
  1341.      dict_print();
  1342. fputs("-----------------------------------n"
  1343.         "END OF INNODB TABLE MONITOR OUTPUTn"
  1344. "==================================n",
  1345. stderr);
  1346.     }
  1347. }
  1348. mutex_enter(&kernel_mutex);
  1349. some_waits = FALSE;
  1350. /* Check of all slots if a thread is waiting there, and if it
  1351. has exceeded the time limit */
  1352. for (i = 0; i < OS_THREAD_MAX_N; i++) {
  1353. slot = srv_mysql_table + i;
  1354. if (slot->in_use) {
  1355. some_waits = TRUE;
  1356. wait_time = ut_difftime(ut_time(), slot->suspend_time);
  1357. if (srv_lock_wait_timeout < 100000000 && 
  1358.      (wait_time > (double) srv_lock_wait_timeout
  1359. || wait_time < 0)) {
  1360. /* Timeout exceeded or a wrap-around in system
  1361. time counter: cancel the lock request queued
  1362. by the transaction and release possible
  1363. other transactions waiting behind; it is
  1364. possible that the lock has already been
  1365. granted: in that case do nothing */
  1366.         if (thr_get_trx(slot->thr)->wait_lock) {
  1367.         lock_cancel_waiting_and_release(
  1368.           thr_get_trx(slot->thr)->wait_lock);
  1369.         }
  1370. }
  1371. }
  1372. }
  1373. os_event_reset(srv_lock_timeout_thread_event);
  1374. mutex_exit(&kernel_mutex);
  1375. if (srv_shutdown_state >= SRV_SHUTDOWN_CLEANUP) {
  1376. goto exit_func;
  1377. }
  1378. if (some_waits || srv_print_innodb_monitor
  1379. || srv_print_innodb_lock_monitor
  1380. || srv_print_innodb_tablespace_monitor
  1381. || srv_print_innodb_table_monitor) {
  1382. goto loop;
  1383. }
  1384. /* No one was waiting for a lock and no monitor was active:
  1385. suspend this thread */
  1386. srv_lock_timeout_and_monitor_active = FALSE;
  1387. #if 0
  1388. /* The following synchronisation is disabled, since
  1389. the InnoDB monitor output is to be updated every 15 seconds. */
  1390. os_event_wait(srv_lock_timeout_thread_event);
  1391. #endif
  1392. goto loop;
  1393. exit_func:
  1394. srv_lock_timeout_and_monitor_active = FALSE;
  1395. /* We count the number of threads in os_thread_exit(). A created
  1396. thread should always use that to exit and not use return() to exit. */
  1397. os_thread_exit(NULL);
  1398. #ifndef __WIN__
  1399. return(NULL);
  1400. #else
  1401. return(0);
  1402. #endif
  1403. }
  1404. /*************************************************************************
  1405. A thread which prints warnings about semaphore waits which have lasted
  1406. too long. These can be used to track bugs which cause hangs. */
  1407. #ifndef __WIN__
  1408. void*
  1409. #else
  1410. ulint
  1411. #endif
  1412. srv_error_monitor_thread(
  1413. /*=====================*/
  1414. /* out: a dummy parameter */
  1415. void* arg __attribute__((unused)))
  1416. /* in: a dummy parameter required by
  1417. os_thread_create */
  1418. {
  1419. /* number of successive fatal timeouts observed */
  1420. ulint fatal_cnt = 0;
  1421. dulint old_lsn;
  1422. dulint new_lsn;
  1423. old_lsn = srv_start_lsn;
  1424. #ifdef UNIV_DEBUG_THREAD_CREATION
  1425. fprintf(stderr, "Error monitor thread starts, id %lun",
  1426.       os_thread_pf(os_thread_get_curr_id()));
  1427. #endif
  1428. loop:
  1429. srv_error_monitor_active = TRUE;
  1430. /* Try to track a strange bug reported by Harald Fuchs and others,
  1431. where the lsn seems to decrease at times */
  1432. new_lsn = log_get_lsn();
  1433. if (ut_dulint_cmp(new_lsn, old_lsn) < 0) {
  1434. ut_print_timestamp(stderr);
  1435. fprintf(stderr,
  1436. "  InnoDB: Error: old log sequence number %lu %lu was greatern"
  1437. "InnoDB: than the new log sequence number %lu %lu!n"
  1438. "InnoDB: Please send a bug report to mysql@lists.mysql.comn",
  1439. (ulong) ut_dulint_get_high(old_lsn),
  1440. (ulong) ut_dulint_get_low(old_lsn),
  1441. (ulong) ut_dulint_get_high(new_lsn),
  1442. (ulong) ut_dulint_get_low(new_lsn));
  1443. }
  1444. old_lsn = new_lsn;
  1445. if (difftime(time(NULL), srv_last_monitor_time) > 60) {
  1446. /* We referesh InnoDB Monitor values so that averages are
  1447. printed from at most 60 last seconds */
  1448. srv_refresh_innodb_monitor_stats();
  1449. }
  1450. if (sync_array_print_long_waits()) {
  1451. fatal_cnt++;
  1452. if (fatal_cnt > 5) {
  1453. fprintf(stderr,
  1454. "InnoDB: Error: semaphore wait has lasted > %lu secondsn"
  1455. "InnoDB: We intentionally crash the server, because it appears to be hung.n",
  1456. srv_fatal_semaphore_wait_threshold);
  1457. ut_error;
  1458. }
  1459. } else {
  1460. fatal_cnt = 0;
  1461. }
  1462. /* Flush stderr so that a database user gets the output
  1463. to possible MySQL error file */
  1464. fflush(stderr);
  1465. os_thread_sleep(2000000);
  1466. if (srv_shutdown_state < SRV_SHUTDOWN_LAST_PHASE) {
  1467. goto loop;
  1468. }
  1469. srv_error_monitor_active = FALSE;
  1470. /* We count the number of threads in os_thread_exit(). A created
  1471. thread should always use that to exit and not use return() to exit. */
  1472. os_thread_exit(NULL);
  1473. #ifndef __WIN__
  1474. return(NULL);
  1475. #else
  1476. return(0);
  1477. #endif
  1478. }
  1479. /***********************************************************************
  1480. Tells the InnoDB server that there has been activity in the database
  1481. and wakes up the master thread if it is suspended (not sleeping). Used
  1482. in the MySQL interface. Note that there is a small chance that the master
  1483. thread stays suspended (we do not protect our operation with the kernel
  1484. mutex, for performace reasons). */
  1485. void
  1486. srv_active_wake_master_thread(void)
  1487. /*===============================*/
  1488. {
  1489. srv_activity_count++;
  1490. if (srv_n_threads_active[SRV_MASTER] == 0) {
  1491. mutex_enter(&kernel_mutex);
  1492. srv_release_threads(SRV_MASTER, 1);
  1493. mutex_exit(&kernel_mutex);
  1494. }
  1495. }
  1496. /***********************************************************************
  1497. Wakes up the master thread if it is suspended or being suspended. */
  1498. void
  1499. srv_wake_master_thread(void)
  1500. /*========================*/
  1501. {
  1502. srv_activity_count++;
  1503. mutex_enter(&kernel_mutex);
  1504. srv_release_threads(SRV_MASTER, 1);
  1505. mutex_exit(&kernel_mutex);
  1506. }
  1507. /*************************************************************************
  1508. The master thread controlling the server. */
  1509. #ifndef __WIN__
  1510. void*
  1511. #else
  1512. ulint
  1513. #endif
  1514. srv_master_thread(
  1515. /*==============*/
  1516. /* out: a dummy parameter */
  1517. void* arg __attribute__((unused)))
  1518. /* in: a dummy parameter required by
  1519. os_thread_create */
  1520. {
  1521. os_event_t event;
  1522. time_t          last_flush_time;
  1523. time_t          current_time;
  1524. ulint old_activity_count;
  1525. ulint n_pages_purged;
  1526. ulint n_bytes_merged;
  1527. ulint n_pages_flushed;
  1528. ulint n_bytes_archived;
  1529. ulint n_tables_to_drop;
  1530. ulint n_ios;
  1531. ulint n_ios_old;
  1532. ulint n_ios_very_old;
  1533. ulint n_pend_ios;
  1534. ibool skip_sleep = FALSE;
  1535. ulint i;
  1536. #ifdef UNIV_DEBUG_THREAD_CREATION
  1537. fprintf(stderr, "Master thread starts, id %lun",
  1538.       os_thread_pf(os_thread_get_curr_id()));
  1539. #endif
  1540. srv_main_thread_process_no = os_proc_get_number();
  1541. srv_main_thread_id = os_thread_pf(os_thread_get_curr_id());
  1542. srv_table_reserve_slot(SRV_MASTER);
  1543. mutex_enter(&kernel_mutex);
  1544. srv_n_threads_active[SRV_MASTER]++;
  1545. mutex_exit(&kernel_mutex);
  1546. os_event_set(srv_sys->operational);
  1547. loop:
  1548. /*****************************************************************/
  1549. /* ---- When there is database activity by users, we cycle in this
  1550. loop */
  1551. srv_main_thread_op_info = "reserving kernel mutex";
  1552. n_ios_very_old = log_sys->n_log_ios + buf_pool->n_pages_read
  1553. + buf_pool->n_pages_written;
  1554. mutex_enter(&kernel_mutex);
  1555. /* Store the user activity counter at the start of this loop */
  1556. old_activity_count = srv_activity_count;
  1557. mutex_exit(&kernel_mutex);
  1558. if (srv_force_recovery >= SRV_FORCE_NO_BACKGROUND) {
  1559. goto suspend_thread;
  1560. }
  1561. /* ---- We run the following loop approximately once per second
  1562. when there is database activity */
  1563. skip_sleep = FALSE;
  1564. for (i = 0; i < 10; i++) {
  1565. n_ios_old = log_sys->n_log_ios + buf_pool->n_pages_read
  1566. + buf_pool->n_pages_written;
  1567. srv_main_thread_op_info = "sleeping";
  1568. if (!skip_sleep) {
  1569.         os_thread_sleep(1000000);
  1570. }
  1571. skip_sleep = FALSE;
  1572. /* ALTER TABLE in MySQL requires on Unix that the table handler
  1573. can drop tables lazily after there no longer are SELECT
  1574. queries to them. */
  1575. srv_main_thread_op_info = "doing background drop tables";
  1576. row_drop_tables_for_mysql_in_background();
  1577. srv_main_thread_op_info = "";
  1578. if (srv_fast_shutdown && srv_shutdown_state > 0) {
  1579. goto background_loop;
  1580. }
  1581. /* We flush the log once in a second even if no commit
  1582. is issued or the we have specified in my.cnf no flush
  1583. at transaction commit */
  1584. srv_main_thread_op_info = "flushing log";
  1585. log_buffer_flush_to_disk();
  1586. srv_main_thread_op_info = "making checkpoint";
  1587. log_free_check();
  1588. /* If there were less than 5 i/os during the
  1589. one second sleep, we assume that there is free
  1590. disk i/o capacity available, and it makes sense to
  1591. do an insert buffer merge. */
  1592. n_pend_ios = buf_get_n_pending_ios()
  1593. + log_sys->n_pending_writes;
  1594. n_ios = log_sys->n_log_ios + buf_pool->n_pages_read
  1595. + buf_pool->n_pages_written;
  1596. if (n_pend_ios < 3 && (n_ios - n_ios_old < 5)) {
  1597. srv_main_thread_op_info = "doing insert buffer merge";
  1598. ibuf_contract_for_n_pages(TRUE, 5);
  1599. srv_main_thread_op_info = "flushing log";
  1600. log_buffer_flush_to_disk();
  1601. }
  1602. if (buf_get_modified_ratio_pct() >
  1603.              srv_max_buf_pool_modified_pct) {
  1604. /* Try to keep the number of modified pages in the
  1605. buffer pool under the limit wished by the user */
  1606. n_pages_flushed = buf_flush_batch(BUF_FLUSH_LIST, 100,
  1607.   ut_dulint_max);
  1608.         /* If we had to do the flush, it may have taken
  1609. even more than 1 second, and also, there may be more
  1610. to flush. Do not sleep 1 second during the next
  1611. iteration of this loop. */
  1612.      
  1613. skip_sleep = TRUE;
  1614. }
  1615. if (srv_activity_count == old_activity_count) {
  1616. /* There is no user activity at the moment, go to
  1617. the background loop */
  1618. goto background_loop;
  1619. }
  1620. }
  1621. /* ---- We perform the following code approximately once per
  1622. 10 seconds when there is database activity */
  1623. #ifdef MEM_PERIODIC_CHECK
  1624. /* Check magic numbers of every allocated mem block once in 10
  1625. seconds */
  1626. mem_validate_all_blocks();
  1627. #endif
  1628. /* If there were less than 200 i/os during the 10 second period,
  1629. we assume that there is free disk i/o capacity available, and it
  1630. makes sense to flush 100 pages. */
  1631. n_pend_ios = buf_get_n_pending_ios() + log_sys->n_pending_writes;
  1632. n_ios = log_sys->n_log_ios + buf_pool->n_pages_read
  1633. + buf_pool->n_pages_written;
  1634. if (n_pend_ios < 3 && (n_ios - n_ios_very_old < 200)) {
  1635. srv_main_thread_op_info = "flushing buffer pool pages";
  1636. buf_flush_batch(BUF_FLUSH_LIST, 100, ut_dulint_max);
  1637. srv_main_thread_op_info = "flushing log";
  1638. log_buffer_flush_to_disk();
  1639. }
  1640. /* We run a batch of insert buffer merge every 10 seconds,
  1641. even if the server were active */
  1642. srv_main_thread_op_info = "doing insert buffer merge";
  1643. ibuf_contract_for_n_pages(TRUE, 5);
  1644. srv_main_thread_op_info = "flushing log";
  1645. log_buffer_flush_to_disk();
  1646. /* We run a full purge every 10 seconds, even if the server
  1647. were active */
  1648. n_pages_purged = 1;
  1649. last_flush_time = time(NULL);
  1650. while (n_pages_purged) {
  1651. if (srv_fast_shutdown && srv_shutdown_state > 0) {
  1652. goto background_loop;
  1653. }
  1654. srv_main_thread_op_info = "purging";
  1655. n_pages_purged = trx_purge();
  1656. current_time = time(NULL);
  1657. if (difftime(current_time, last_flush_time) > 1) {
  1658. srv_main_thread_op_info = "flushing log";
  1659.         log_buffer_flush_to_disk();
  1660. last_flush_time = current_time;
  1661. }
  1662. }
  1663. srv_main_thread_op_info = "flushing buffer pool pages";
  1664. /* Flush a few oldest pages to make a new checkpoint younger */
  1665. if (buf_get_modified_ratio_pct() > 70) {
  1666. /* If there are lots of modified pages in the buffer pool
  1667. (> 70 %), we assume we can afford reserving the disk(s) for
  1668. the time it requires to flush 100 pages */
  1669.         n_pages_flushed = buf_flush_batch(BUF_FLUSH_LIST, 100,
  1670. ut_dulint_max);
  1671. } else {
  1672.         /* Otherwise, we only flush a small number of pages so that
  1673. we do not unnecessarily use much disk i/o capacity from
  1674. other work */
  1675.         n_pages_flushed = buf_flush_batch(BUF_FLUSH_LIST, 10,
  1676. ut_dulint_max);
  1677. }
  1678. srv_main_thread_op_info = "making checkpoint";
  1679. /* Make a new checkpoint about once in 10 seconds */
  1680. log_checkpoint(TRUE, FALSE);
  1681. srv_main_thread_op_info = "reserving kernel mutex";
  1682. mutex_enter(&kernel_mutex);
  1683. /* ---- When there is database activity, we jump from here back to
  1684. the start of loop */
  1685. if (srv_activity_count != old_activity_count) {
  1686. mutex_exit(&kernel_mutex);
  1687. goto loop;
  1688. }
  1689. mutex_exit(&kernel_mutex);
  1690. /* If the database is quiet, we enter the background loop */
  1691. /*****************************************************************/
  1692. background_loop:
  1693. /* ---- In this loop we run background operations when the server
  1694. is quiet from user activity. Also in the case of a shutdown, we
  1695. loop here, flushing the buffer pool to the data files. */
  1696. /* The server has been quiet for a while: start running background
  1697. operations */
  1698. srv_main_thread_op_info = "doing background drop tables";
  1699. n_tables_to_drop = row_drop_tables_for_mysql_in_background();
  1700. if (n_tables_to_drop > 0) {
  1701.         /* Do not monopolize the CPU even if there are tables waiting
  1702. in the background drop queue. (It is essentially a bug if
  1703. MySQL tries to drop a table while there are still open handles
  1704. to it and we had to put it to the background drop queue.) */
  1705. os_thread_sleep(100000);
  1706. }
  1707.  
  1708. srv_main_thread_op_info = "purging";
  1709. /* Run a full purge */
  1710. n_pages_purged = 1;
  1711. last_flush_time = time(NULL);
  1712. while (n_pages_purged) {
  1713. if (srv_fast_shutdown && srv_shutdown_state > 0) {
  1714. break;
  1715. }
  1716. srv_main_thread_op_info = "purging";
  1717. n_pages_purged = trx_purge();
  1718. current_time = time(NULL);
  1719. if (difftime(current_time, last_flush_time) > 1) {
  1720. srv_main_thread_op_info = "flushing log";
  1721.         log_buffer_flush_to_disk();
  1722. last_flush_time = current_time;
  1723. }
  1724. }
  1725. srv_main_thread_op_info = "reserving kernel mutex";
  1726. mutex_enter(&kernel_mutex);
  1727. if (srv_activity_count != old_activity_count) {
  1728. mutex_exit(&kernel_mutex);
  1729. goto loop;
  1730. }
  1731. mutex_exit(&kernel_mutex);
  1732. srv_main_thread_op_info = "doing insert buffer merge";
  1733. if (srv_fast_shutdown && srv_shutdown_state > 0) {
  1734.         n_bytes_merged = 0;
  1735. } else {
  1736.         n_bytes_merged = ibuf_contract_for_n_pages(TRUE, 20);
  1737. }
  1738. srv_main_thread_op_info = "reserving kernel mutex";
  1739. mutex_enter(&kernel_mutex);
  1740. if (srv_activity_count != old_activity_count) {
  1741. mutex_exit(&kernel_mutex);
  1742. goto loop;
  1743. }
  1744. mutex_exit(&kernel_mutex);
  1745. flush_loop:
  1746. srv_main_thread_op_info = "flushing buffer pool pages";
  1747. if (!srv_very_fast_shutdown) {
  1748. n_pages_flushed =
  1749. buf_flush_batch(BUF_FLUSH_LIST, 100, ut_dulint_max);
  1750. } else {
  1751. /* In a 'very fast' shutdown we do not flush the buffer pool
  1752. to data files: we set n_pages_flushed to 0 artificially. */
  1753. n_pages_flushed = 0;
  1754. }
  1755. srv_main_thread_op_info = "reserving kernel mutex";
  1756. mutex_enter(&kernel_mutex);
  1757. if (srv_activity_count != old_activity_count) {
  1758. mutex_exit(&kernel_mutex);
  1759. goto loop;
  1760. }
  1761. mutex_exit(&kernel_mutex);
  1762. srv_main_thread_op_info = "waiting for buffer pool flush to end";
  1763. buf_flush_wait_batch_end(BUF_FLUSH_LIST);
  1764. srv_main_thread_op_info = "flushing log";
  1765. log_buffer_flush_to_disk();
  1766. srv_main_thread_op_info = "making checkpoint";
  1767. log_checkpoint(TRUE, FALSE);
  1768. if (buf_get_modified_ratio_pct() > srv_max_buf_pool_modified_pct) {
  1769. /* Try to keep the number of modified pages in the
  1770. buffer pool under the limit wished by the user */
  1771. goto flush_loop;
  1772. }
  1773. srv_main_thread_op_info = "reserving kernel mutex";
  1774. mutex_enter(&kernel_mutex);
  1775. if (srv_activity_count != old_activity_count) {
  1776. mutex_exit(&kernel_mutex);
  1777. goto loop;
  1778. }
  1779. mutex_exit(&kernel_mutex);
  1780. /*
  1781. srv_main_thread_op_info = "archiving log (if log archive is on)";
  1782. log_archive_do(FALSE, &n_bytes_archived);
  1783. */
  1784. n_bytes_archived = 0;
  1785. /* Keep looping in the background loop if still work to do */
  1786. if (srv_fast_shutdown && srv_shutdown_state > 0) {
  1787. if (n_tables_to_drop + n_pages_flushed
  1788. + n_bytes_archived != 0) {
  1789. /* If we are doing a fast shutdown (= the default)
  1790. we do not do purge or insert buffer merge. But we
  1791. flush the buffer pool completely to disk.
  1792. In a 'very fast' shutdown we do not flush the buffer
  1793. pool to data files: we have set n_pages_flushed to
  1794. 0 artificially. */
  1795. goto background_loop;
  1796. }
  1797. } else if (n_tables_to_drop +
  1798.    n_pages_purged + n_bytes_merged + n_pages_flushed
  1799. + n_bytes_archived != 0) {
  1800. /* In a 'slow' shutdown we run purge and the insert buffer
  1801. merge to completion */
  1802. goto background_loop;
  1803. }
  1804. /* There is no work for background operations either: suspend
  1805. master thread to wait for more server activity */
  1806. suspend_thread:
  1807. srv_main_thread_op_info = "suspending";
  1808. mutex_enter(&kernel_mutex);
  1809. if (row_get_background_drop_list_len_low() > 0) {
  1810. mutex_exit(&kernel_mutex);
  1811. goto loop;
  1812. }
  1813. event = srv_suspend_thread();
  1814. mutex_exit(&kernel_mutex);
  1815. srv_main_thread_op_info = "waiting for server activity";
  1816. os_event_wait(event);
  1817. if (srv_shutdown_state == SRV_SHUTDOWN_EXIT_THREADS) {
  1818.         /* This is only extra safety, the thread should exit
  1819. already when the event wait ends */
  1820.         os_thread_exit(NULL);
  1821. }
  1822. /* When there is user activity, InnoDB will set the event and the main
  1823. thread goes back to loop: */
  1824. goto loop;
  1825. /* We count the number of threads in os_thread_exit(). A created
  1826. thread should always use that to exit and not use return() to exit.
  1827. The thread actually never comes here because it is exited in an
  1828. os_event_wait(). */
  1829. os_thread_exit(NULL);
  1830. #ifndef __WIN__
  1831.         return(NULL); /* Not reached */
  1832. #else
  1833. return(0);
  1834. #endif
  1835. }