1
1
/*****************************************************************************
3
Copyright (c) 1996, 2010, Innobase Oy. All Rights Reserved.
4
Copyright (c) 2008, Google Inc.
5
Copyright (c) 2009, Percona Inc.
3
Copyright (C) 1996, 2010, Innobase Oy. All Rights Reserved.
4
Copyright (C) 2008, Google Inc.
5
Copyright (C) 2009, Percona Inc.
7
7
Portions of this file contain modifications contributed and copyrighted by
8
8
Google, Inc. Those modifications are gratefully acknowledged and are described
123
125
/** Files comprising the system tablespace */
124
126
static os_file_t files[1000];
126
/** Mutex protecting the ios count */
127
static mutex_t ios_mutex;
128
/** Count of I/O operations in io_handler_thread() */
131
128
/** io_handler_thread parameters for thread identification */
132
129
static ulint n[SRV_MAX_N_IO_THREADS + 6];
133
130
/** io_handler_thread identifiers */
154
151
UNIV_INTERN mysql_pfs_key_t srv_master_thread_key;
155
152
#endif /* UNIV_PFS_THREAD */
157
#ifdef UNIV_PFS_MUTEX
158
/* Key to register ios_mutex_key with performance schema */
159
UNIV_INTERN mysql_pfs_key_t ios_mutex_key;
160
#endif /* UNIV_PFS_MUTEX */
162
154
/*********************************************************************//**
163
155
Convert a numeric string that optionally ends in G or M, to a number
164
156
containing megabytes.
292
srv_data_file_names = malloc(i * sizeof *srv_data_file_names);
293
srv_data_file_sizes = malloc(i * sizeof *srv_data_file_sizes);
294
srv_data_file_is_raw_partition = malloc(
295
i * sizeof *srv_data_file_is_raw_partition);
284
srv_data_file_names = static_cast<char **>(malloc(i * sizeof *srv_data_file_names));
285
srv_data_file_sizes = static_cast<ulint *>(malloc(i * sizeof *srv_data_file_sizes));
286
srv_data_file_is_raw_partition = static_cast<ulint *>(malloc(
287
i * sizeof *srv_data_file_is_raw_partition));
297
289
srv_n_data_files = i;
494
490
while (srv_shutdown_state != SRV_SHUTDOWN_EXIT_THREADS) {
495
491
fil_aio_wait(segment);
497
mutex_enter(&ios_mutex);
499
mutex_exit(&ios_mutex);
502
thr_local_free(os_thread_get_curr_id());
504
494
/* We count the number of threads in os_thread_exit(). A created
505
495
thread should always use that to exit and not use return() to exit.
506
496
The thread actually never comes here because it is exited in an
1045
1031
on Mac OS X 10.3 or later. */
1046
1032
struct utsname utsname;
1047
1033
if (uname(&utsname)) {
1048
fputs("InnoDB: cannot determine Mac OS X version!\n", stderr);
1034
fputs(_("InnoDB: cannot determine Mac OS X version!\n"), stderr);
1050
1036
srv_have_fullfsync = strcmp(utsname.release, "7.") >= 0;
1052
1038
if (!srv_have_fullfsync) {
1053
fputs("InnoDB: On Mac OS X, fsync() may be"
1054
" broken on internal drives,\n"
1055
"InnoDB: making transactions unsafe!\n", stderr);
1039
fputs(_("InnoDB: On Mac OS X, fsync() may be"
1040
" broken on internal drives,\n"
1041
"InnoDB: making transactions unsafe!\n"), stderr);
1057
1043
# endif /* F_FULLFSYNC */
1058
1044
#endif /* HAVE_DARWIN_THREADS */
1060
1046
if (sizeof(ulint) != sizeof(void*)) {
1061
1047
fprintf(stderr,
1062
"InnoDB: Error: size of InnoDB's ulint is %lu,"
1063
" but size of void* is %lu.\n"
1064
"InnoDB: The sizes should be the same"
1065
" so that on a 64-bit platform you can\n"
1066
"InnoDB: allocate more than 4 GB of memory.",
1048
_("InnoDB: Error: size of InnoDB's ulint is %lu,"
1049
" but size of void* is %lu.\n"
1050
"InnoDB: The sizes should be the same"
1051
" so that on a 64-bit platform you can\n"
1052
"InnoDB: allocate more than 4 GB of memory."),
1067
1053
(ulong)sizeof(ulint), (ulong)sizeof(void*));
1074
1060
srv_file_per_table = FALSE;
1075
1061
#ifdef UNIV_DEBUG
1076
1062
fprintf(stderr,
1077
"InnoDB: !!!!!!!! UNIV_DEBUG switched on !!!!!!!!!\n");
1063
_("InnoDB: !!!!!!!! UNIV_DEBUG switched on !!!!!!!!!\n"));
1080
1066
#ifdef UNIV_IBUF_DEBUG
1081
1067
fprintf(stderr,
1082
"InnoDB: !!!!!!!! UNIV_IBUF_DEBUG switched on !!!!!!!!!\n"
1068
_("InnoDB: !!!!!!!! UNIV_IBUF_DEBUG switched on !!!!!!!!!\n"
1083
1069
# ifdef UNIV_IBUF_COUNT_DEBUG
1084
"InnoDB: !!!!!!!! UNIV_IBUF_COUNT_DEBUG switched on !!!!!!!!!\n"
1085
"InnoDB: Crash recovery will fail with UNIV_IBUF_COUNT_DEBUG\n"
1070
"InnoDB: !!!!!!!! UNIV_IBUF_COUNT_DEBUG switched on !!!!!!!!!\n"
1071
"InnoDB: Crash recovery will fail with UNIV_IBUF_COUNT_DEBUG\n"
1090
1076
#ifdef UNIV_SYNC_DEBUG
1091
1077
fprintf(stderr,
1092
"InnoDB: !!!!!!!! UNIV_SYNC_DEBUG switched on !!!!!!!!!\n");
1078
_("InnoDB: !!!!!!!! UNIV_SYNC_DEBUG switched on !!!!!!!!!\n"));
1095
1081
#ifdef UNIV_SEARCH_DEBUG
1096
1082
fprintf(stderr,
1097
"InnoDB: !!!!!!!! UNIV_SEARCH_DEBUG switched on !!!!!!!!!\n");
1083
_("InnoDB: !!!!!!!! UNIV_SEARCH_DEBUG switched on !!!!!!!!!\n"));
1100
1086
#ifdef UNIV_LOG_LSN_DEBUG
1101
1087
fprintf(stderr,
1102
"InnoDB: !!!!!!!! UNIV_LOG_LSN_DEBUG switched on !!!!!!!!!\n");
1088
_("InnoDB: !!!!!!!! UNIV_LOG_LSN_DEBUG switched on !!!!!!!!!\n"));
1103
1089
#endif /* UNIV_LOG_LSN_DEBUG */
1104
1090
#ifdef UNIV_MEM_DEBUG
1105
1091
fprintf(stderr,
1106
"InnoDB: !!!!!!!! UNIV_MEM_DEBUG switched on !!!!!!!!!\n");
1092
_("InnoDB: !!!!!!!! UNIV_MEM_DEBUG switched on !!!!!!!!!\n"));
1109
1095
if (UNIV_LIKELY(srv_use_sys_malloc)) {
1110
1096
fprintf(stderr,
1111
"InnoDB: The InnoDB memory heap is disabled\n");
1097
_("InnoDB: The InnoDB memory heap is disabled\n"));
1114
1100
fputs("InnoDB: " IB_ATOMICS_STARTUP_MSG
1115
"\nInnoDB: Compressed tables use zlib " ZLIB_VERSION
1101
"\nInnoDB: Compressed tables use zlib " ZLIB_VERSION
1116
1102
#ifdef UNIV_ZIP_DEBUG
1117
1103
" with validation"
1118
1104
#endif /* UNIV_ZIP_DEBUG */
1178
1164
if (srv_use_native_aio) {
1179
1165
ut_print_timestamp(stderr);
1180
1166
fprintf(stderr,
1181
" InnoDB: Using Linux native AIO\n");
1167
_(" InnoDB: Using Linux native AIO\n"));
1184
1170
/* Currently native AIO is supported only on windows and linux
1266
1252
&srv_monitor_file_mutex, SYNC_NO_ORDER_CHECK);
1268
1254
if (srv_innodb_status) {
1269
srv_monitor_file_name = mem_alloc(
1255
srv_monitor_file_name = static_cast<char *>(mem_alloc(
1270
1256
strlen(fil_path_to_mysql_datadir)
1271
+ 20 + sizeof "/innodb_status.");
1257
+ 20 + sizeof "/innodb_status."));
1272
1258
sprintf(srv_monitor_file_name, "%s/innodb_status.%lu",
1273
1259
fil_path_to_mysql_datadir, os_proc_get_number());
1274
1260
srv_monitor_file = fopen(srv_monitor_file_name, "w+");
1327
1313
fil_init(srv_file_per_table ? 50000 : 5000,
1328
1314
srv_max_n_open_files);
1316
/* Print time to initialize the buffer pool */
1317
ut_print_timestamp(stderr);
1319
" InnoDB: Initializing buffer pool, size =");
1321
if (srv_buf_pool_size >= 1024 * 1024 * 1024) {
1324
((double) srv_buf_pool_size) / (1024 * 1024 * 1024));
1328
((double) srv_buf_pool_size) / (1024 * 1024));
1330
1331
err = buf_pool_init(srv_buf_pool_size, srv_buf_pool_instances);
1333
ut_print_timestamp(stderr);
1335
" InnoDB: Completed initialization of buffer pool\n");
1332
1337
if (err != DB_SUCCESS) {
1333
1338
fprintf(stderr,
1334
1339
"InnoDB: Fatal error: cannot allocate the memory"
1845
1850
if (srv_print_verbose_log) {
1846
1851
ut_print_timestamp(stderr);
1847
1852
fprintf(stderr,
1848
" InnoDB %s started; "
1853
" InnoDB %s started; "
1849
1854
"log sequence number %"PRIu64"\n",
1850
1855
INNODB_VERSION_STR, srv_start_lsn);