my-innodb-heavy-4G.ini
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:21k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #BEGIN CONFIG INFO
  2. #DESCR: 4GB RAM, InnoDB only, ACID, few connections, heavy queries
  3. #TYPE: SYSTEM
  4. #END CONFIG INFO
  5. #
  6. # This is a MySQL example config file for systems with 4GB of memory
  7. # running mostly MySQL using InnoDB only tables and performing complex
  8. # queries with few connections.
  9. # You can copy this file to /etc/my.cnf to set global options,
  10. # mysql-data-dir/my.cnf to set server-specific options 
  11. # (/usr/local/var for this installation) or to
  12. # ~/.my.cnf to set user-specific options.
  13. #
  14. # In this file, you can use all long options that a program supports.
  15. # If you want to know which options a program supports, run the program
  16. # with the "--help" option.
  17. #
  18. # More detailed information about the individual options can also be
  19. # found in the manual.
  20. #
  21. #
  22. # The following options will be read by MySQL client applications.
  23. # Note that only client applications shipped by MySQL are guaranteed
  24. # to read this section. If you want your own MySQL client program to
  25. # honor these values, you need to specify it as an option during the
  26. # MySQL client library initialization.
  27. #
  28. [client]
  29. #password = [your_password]
  30. port = 3306
  31. socket = /tmp/mysql.sock
  32. # *** Application-specific options follow here ***
  33. #
  34. # The MySQL server
  35. #
  36. [mysqld]
  37. # generic configuration options
  38. port = 3306
  39. socket = /tmp/mysql.sock
  40. # back_log is the number of connections the operating system can keep in
  41. # the listen queue, before the MySQL connection manager thread has
  42. # processed them. If you have a very high connection rate and experience
  43. # "connection refused" errors, you might need to increase this value.
  44. # Check your OS documentation for the maximum value of this parameter.
  45. # Attempting to set back_log higher than your operating system limit
  46. # will have no effect.
  47. back_log = 50
  48. # Don't listen on a TCP/IP port at all. This can be a security
  49. # enhancement, if all processes that need to connect to mysqld run
  50. # on the same host.  All interaction with mysqld must be made via Unix
  51. # sockets or named pipes.
  52. # Note that using this option without enabling named pipes on Windows
  53. # (via the "enable-named-pipe" option) will render mysqld useless!
  54. #skip-networking
  55. # The maximum amount of concurrent sessions the MySQL server will
  56. # allow. One of these connections will be reserved for a user with
  57. # SUPER privileges to allow the administrator to login even if the
  58. # connection limit has been reached.
  59. max_connections = 100
  60. # Maximum amount of errors allowed per host. If this limit is reached,
  61. # the host will be blocked from connecting to the MySQL server until
  62. # "FLUSH HOSTS" has been run or the server was restarted. Invalid
  63. # passwords and other errors during the connect phase result in
  64. # increasing this value. See the "Aborted_connects" status variable for
  65. # global counter.
  66. max_connect_errors = 10
  67. # The number of open tables for all threads. Increasing this value
  68. # increases the number of file descriptors that mysqld requires.
  69. # Therefore you have to make sure to set the amount of open files
  70. # allowed to at least 4096 in the variable "open-files-limit" in
  71. # section [mysqld_safe]
  72. table_cache = 2048
  73. # Enable external file level locking. Enabled file locking will have a
  74. # negative impact on performance, so only use it in case you have
  75. # multiple database instances running on the same files (note some
  76. # restrictions still apply!) or if you use other software relying on
  77. # locking MyISAM tables on file level.
  78. #external-locking
  79. # The maximum size of a query packet the server can handle as well as
  80. # maximum query size server can process (Important when working with
  81. # large BLOBs).  enlarged dynamically, for each connection.
  82. max_allowed_packet = 16M
  83. # The size of the cache to hold the SQL statements for the binary log
  84. # during a transaction. If you often use big, multi-statement
  85. # transactions you can increase this value to get more performance. All
  86. # statements from transactions are buffered in the binary log cache and
  87. # are being written to the binary log at once after the COMMIT.  If the
  88. # transaction is larger than this value, temporary file on disk is used
  89. # instead.  This buffer is allocated per connection on first update
  90. # statement in transaction
  91. binlog_cache_size = 1M
  92. # Maximum allowed size for a single HEAP (in memory) table. This option
  93. # is a protection against the accidential creation of a very large HEAP
  94. # table which could otherwise use up all memory resources.
  95. max_heap_table_size = 64M
  96. # Sort buffer is used to perform sorts for some ORDER BY and GROUP BY
  97. # queries. If sorted data does not fit into the sort buffer, a disk
  98. # based merge sort is used instead - See the "Sort_merge_passes"
  99. # status variable. Allocated per thread if sort is needed.
  100. sort_buffer_size = 8M
  101. # This buffer is used for the optimization of full JOINs (JOINs without
  102. # indexes). Such JOINs are very bad for performance in most cases
  103. # anyway, but setting this variable to a large value reduces the
  104. # performance impact. See the "Select_full_join" status variable for a
  105. # count of full JOINs. Allocated per thread if full join is found
  106. join_buffer_size = 8M
  107. # How many threads we should keep in a cache for reuse. When a client
  108. # disconnects, the client's threads are put in the cache if there aren't
  109. # more than thread_cache_size threads from before.  This greatly reduces
  110. # the amount of thread creations needed if you have a lot of new
  111. # connections. (Normally this doesn't give a notable performance
  112. # improvement if you have a good thread implementation.)
  113. thread_cache_size = 8
  114. # This permits the application to give the threads system a hint for the
  115. # desired number of threads that should be run at the same time.  This
  116. # value only makes sense on systems that support the thread_concurrency()
  117. # function call (Sun Solaris, for example).
  118. # You should try [number of CPUs]*(2..4) for thread_concurrency
  119. thread_concurrency = 8
  120. # Query cache is used to cache SELECT results and later return them
  121. # without actual executing the same query once again. Having the query
  122. # cache enabled may result in significant speed improvements, if your
  123. # have a lot of identical queries and rarely changing tables. See the
  124. # "Qcache_lowmem_prunes" status variable to check if the current value
  125. # is high enough for your load.
  126. # Note: In case your tables change very often or if your queries are
  127. # textually different every time, the query cache may result in a
  128. # slowdown instead of a performance improvement.
  129. query_cache_size = 64M
  130. # Only cache result sets that are smaller than this limit. This is to
  131. # protect the query cache of a very large result set overwriting all
  132. # other query results.
  133. query_cache_limit = 2M
  134. # Minimum word length to be indexed by the full text search index.
  135. # You might wish to decrease it if you need to search for shorter words.
  136. # Note that you need to rebuild your FULLTEXT index, after you have
  137. # modified this value.
  138. ft_min_word_len = 4
  139. # If your system supports the memlock() function call, you might want to
  140. # enable this option while running MySQL to keep it locked in memory and
  141. # to avoid potential swapping out in case of high memory pressure. Good
  142. # for performance.
  143. #memlock
  144. # Table type which is used by default when creating new tables, if not
  145. # specified differently during the CREATE TABLE statement.
  146. default_table_type = MYISAM
  147. # Thread stack size to use. This amount of memory is always reserved at
  148. # connection time. MySQL itself usually needs no more than 64K of
  149. # memory, while if you use your own stack hungry UDF functions or your
  150. # OS requires more stack for some operations, you might need to set this
  151. # to a higher value.
  152. thread_stack = 192K
  153. # Set the default transaction isolation level. Levels available are:
  154. # READ-UNCOMMITTED, READ-COMMITTED, REPEATABLE-READ, SERIALIZABLE
  155. transaction_isolation = REPEATABLE-READ
  156. # Maximum size for internal (in-memory) temporary tables. If a table
  157. # grows larger than this value, it is automatically converted to disk
  158. # based table This limitation is for a single table. There can be many
  159. # of them.
  160. tmp_table_size = 64M
  161. # Enable binary logging. This is required for acting as a MASTER in a
  162. # replication configuration. You also need the binary log if you need
  163. # the ability to do point in time recovery from your latest backup.
  164. log_bin
  165. # If you're using replication with chained slaves (A->B->C), you need to
  166. # enable this option on server B. It enables logging of updates done by
  167. # the slave thread into the slave's binary log.
  168. #log_slave_updates
  169. # Enable the full query log. Every query (even ones with incorrect
  170. # syntax) that the server receives will be logged. This is useful for
  171. # debugging, it is usually disabled in production use.
  172. #log
  173. # Print warnings to the error log file.  If you have any problem with
  174. # MySQL you should enable logging of warnings and examine the error log
  175. # for possible explanations. 
  176. #log_warnings
  177. # Log slow queries. Slow queries are queries which take more than the
  178. # amount of time defined in "long_query_time" or which do not use
  179. # indexes well, if log_long_format is enabled. It is normally good idea
  180. # to have this turned on if you frequently add new queries to the
  181. # system.
  182. log_slow_queries
  183. # All queries taking more than this amount of time (in seconds) will be
  184. # trated as slow. Do not use "1" as a value here, as this will result in
  185. # even very fast queries being logged from time to time (as MySQL
  186. # currently measures time with second accuracy only).
  187. long_query_time = 2
  188. # Log more information in the slow query log. Normally it is good to
  189. # have this turned on. This will enable logging of queries that are not
  190. # using indexes in addition to long running queries.
  191. log_long_format
  192. # The directory used by MySQL for storing temporary files. For example,
  193. # it is used to perform disk based large sorts, as well as for internal
  194. # and explicit temporary tables. It might be good to put it on a
  195. # swapfs/tmpfs filesystem, if you do not create very large temporary
  196. # files. Alternatively you can put it on dedicated disk. You can
  197. # specify multiple paths here by separating them by ";" - they will then
  198. # be used in a round-robin fashion.
  199. #tmpdir = /tmp
  200. # ***  Replication related settings 
  201. # Unique server identification number between 1 and 2^32-1. This value
  202. # is required for both master and slave hosts. It defaults to 1 if
  203. # "master-host" is not set, but will MySQL will not function as a master
  204. # if it is omitted.
  205. server-id = 1
  206. # Replication Slave (comment out master section to use this)
  207. #
  208. # To configure this host as a replication slave, you can choose between
  209. # two methods :
  210. #
  211. # 1) Use the CHANGE MASTER TO command (fully described in our manual) -
  212. #    the syntax is:
  213. #
  214. #    CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
  215. #    MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
  216. #
  217. #    where you replace <host>, <user>, <password> by quoted strings and
  218. #    <port> by the master's port number (3306 by default).
  219. #
  220. #    Example:
  221. #
  222. #    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
  223. #    MASTER_USER='joe', MASTER_PASSWORD='secret';
  224. #
  225. # OR
  226. #
  227. # 2) Set the variables below. However, in case you choose this method, then
  228. #    start replication for the first time (even unsuccessfully, for example
  229. #    if you mistyped the password in master-password and the slave fails to
  230. #    connect), the slave will create a master.info file, and any later
  231. #    changes in this file to the variable values below will be ignored and
  232. #    overridden by the content of the master.info file, unless you shutdown
  233. #    the slave server, delete master.info and restart the slaver server.
  234. #    For that reason, you may want to leave the lines below untouched
  235. #    (commented) and instead use CHANGE MASTER TO (see above)
  236. #
  237. # required unique id between 2 and 2^32 - 1
  238. # (and different from the master)
  239. # defaults to 2 if master-host is set
  240. # but will not function as a slave if omitted
  241. #server-id = 2
  242. #
  243. # The replication master for this slave - required
  244. #master-host = <hostname>
  245. #
  246. # The username the slave will use for authentication when connecting
  247. # to the master - required
  248. #master-user = <username>
  249. #
  250. # The password the slave will authenticate with when connecting to
  251. # the master - required
  252. #master-password = <password>
  253. #
  254. # The port the master is listening on.
  255. # optional - defaults to 3306
  256. #master-port = <port>
  257. # Make the slave read-only. Only users with the SUPER privilege and the
  258. # replication slave thread will be able to modify data on it. You can
  259. # use this to ensure that no applications will accidently modify data on
  260. # the slave instead of the master
  261. #read_only
  262. #*** MyISAM Specific options
  263. # Size of the Key Buffer, used to cache index blocks for MyISAM tables.
  264. # Do not set it larger than 30% of your available memory, as some memory
  265. # is also required by the OS to cache rows. Even if you're not using
  266. # MyISAM tables, you should still set it to 8-64M as it will also be
  267. # used for internal temporary disk tables.
  268. key_buffer_size = 32M
  269. # Size of the buffer used for doing full table scans of MyISAM tables.
  270. # Allocated per thread, if a full scan is needed.
  271. read_buffer_size = 2M
  272. # When reading rows in sorted order after a sort, the rows are read
  273. # through this buffer to avoid disk seeks. You can improve ORDER BY
  274. # performance a lot, if set this to a high value.
  275. # Allocated per thread, when needed.
  276. read_rnd_buffer_size = 16M
  277. # MyISAM uses special tree-like cache to make bulk inserts (that is,
  278. # INSERT ... SELECT, INSERT ... VALUES (...), (...), ..., and LOAD DATA
  279. # INFILE) faster. This variable limits the size of the cache tree in
  280. # bytes per thread. Setting it to 0 will disable this optimisation.  Do
  281. # not set it larger than "key_buffer_size" for optimal performance.
  282. # This buffer is allocated when a bulk insert is detected.
  283. bulk_insert_buffer_size = 64M
  284. # This buffer is allocated when MySQL needs to rebuild the index in
  285. # REPAIR, OPTIMIZE, ALTER table statements as well as in LOAD DATA INFILE
  286. # into an empty table. It is allocated per thread so be careful with
  287. # large settings.
  288. myisam_sort_buffer_size = 128M
  289. # The maximum size of the temporary file MySQL is allowed to use while
  290. # recreating the index (during REPAIR, ALTER TABLE or LOAD DATA INFILE.
  291. # If the file-size would be bigger than this, the index will be created
  292. # through the key cache (which is slower).
  293. myisam_max_sort_file_size = 10G
  294. # If the temporary file used for fast index creation would be bigger
  295. # than using the key cache by the amount specified here, then prefer the
  296. # key cache method.  This is mainly used to force long character keys in
  297. # large tables to use the slower key cache method to create the index.
  298. myisam_max_extra_sort_file_size = 10G
  299. # If a table has more than one index, MyISAM can use more than one
  300. # thread to repair them by sorting in parallel. This makes sense if you
  301. # have multiple CPUs and plenty of memory.
  302. myisam_repair_threads = 1
  303. # Automatically check and repair not properly closed MyISAM tables.
  304. myisam_recover
  305. # *** BDB Specific options ***
  306. # Use this option if you run a MySQL server with BDB support enabled but
  307. # you do not plan to use it. This will save memory and may speed up some
  308. # things.
  309. skip-bdb
  310. # *** INNODB Specific options ***
  311. # Use this option if you have a MySQL server with InnoDB support enabled
  312. # but you do not plan to use it. This will save memory and disk space
  313. # and speed up some things.
  314. #skip-innodb
  315. # Additional memory pool that is used by InnoDB to store metadata
  316. # information.  If InnoDB requires more memory for this purpose it will
  317. # start to allocate it from the OS.  As this is fast enough on most
  318. # recent operating systems, you normally do not need to change this
  319. # value. SHOW INNODB STATUS will display the current amount used.
  320. innodb_additional_mem_pool_size = 16M
  321. # InnoDB, unlike MyISAM, uses a buffer pool to cache both indexes and
  322. # row data. The bigger you set this the less disk I/O is needed to
  323. # access data in tables. On a dedicated database server you may set this
  324. # parameter up to 80% of the machine physical memory size. Do not set it
  325. # too large, though, because competition of the physical memory may
  326. # cause paging in the operating system.  Note that on 32bit systems you
  327. # might be limited to 2-3.5G of user level memory per process, so do not
  328. # set it too high.
  329. innodb_buffer_pool_size = 2G
  330. # InnoDB stores data in one or more data files forming the tablespace.
  331. # If you have a single logical drive for your data, a single
  332. # autoextending file would be good enough. In other cases, a single file
  333. # per device is often a good choice. You can configure InnoDB to use raw
  334. # disk partitions as well - please refer to the manual for more info
  335. # about this.
  336. innodb_data_file_path = ibdata1:10M:autoextend
  337. # Set this option if you would like the InnoDB tablespace files to be
  338. # stored in another location. By default this is the MySQL datadir.
  339. #innodb_data_home_dir = <directory>
  340. # Number of IO threads to use for async IO operations. This value is
  341. # hardcoded to 4 on Unix, but on Windows disk I/O may benefit from a
  342. # larger number.
  343. innodb_file_io_threads = 4
  344. # If you run into InnoDB tablespace corruption, setting this to a nonzero
  345. # value will likely help you to dump your tables. Start from value 1 and
  346. # increase it until you're able to dump the table successfully.
  347. #innodb_force_recovery=1
  348. # Number of threads allowed inside the InnoDB kernel. The optimal value
  349. # depends highly on the application, hardware as well as the OS
  350. # scheduler properties. A too high value may lead to thread thrashing.
  351. innodb_thread_concurrency = 16
  352. # If set to 1, InnoDB will flush (fsync) the transaction logs to the
  353. # disk at each commit, which offers full ACID behavior. If you are
  354. # willing to compromise this safety, and you are running small
  355. # transactions, you may set this to 0 or 2 to reduce disk I/O to the
  356. # logs. Value 0 means that the log is only written to the log file and
  357. # the log file flushed to disk approximately once per second. Value 2
  358. # means the log is written to the log file at each commit, but the log
  359. # file is only flushed to disk approximately once per second.
  360. innodb_flush_log_at_trx_commit = 1
  361. # Speed up InnoDB shutdown. This will disable InnoDB to do a full purge
  362. # and insert buffer merge on shutdown. It may increase shutdown time a
  363. # lot, but InnoDB will have to do it on the next startup instead.
  364. #innodb_fast_shutdown
  365. # The size of the buffer InnoDB uses for buffering log data. As soon as
  366. # it is full, InnoDB will have to flush it to disk. As it is flushed
  367. # once per second anyway, it does not make sense to have it very large
  368. # (even with long transactions). 
  369. innodb_log_buffer_size = 8M
  370. # Size of each log file in a log group. You should set the combined size
  371. # of log files to about 25%-100% of your buffer pool size to avoid
  372. # unneeded buffer pool flush activity on log file overwrite. However,
  373. # note that a larger logfile size will increase the time needed for the
  374. # recovery process.
  375. innodb_log_file_size = 256M
  376. # Total number of files in the log group. A value of 2-3 is usually good
  377. # enough.
  378. innodb_log_files_in_group = 3
  379. # Location of the InnoDB log files. Default is the MySQL datadir. You
  380. # may wish to point it to a dedicated hard drive or a RAID1 volume for
  381. # improved performance
  382. #innodb_log_group_home_dir
  383. # Maximum allowed percentage of dirty pages in the InnoDB buffer pool.
  384. # If it is reached, InnoDB will start flushing them out agressively to
  385. # not run out of clean pages at all. This is a soft limit, not
  386. # guaranteed to be held.
  387. innodb_max_dirty_pages_pct = 90
  388. # The flush method InnoDB will use for Log. The tablespace always uses
  389. # doublewrite flush logic. The default value is "fdatasync", another
  390. # option is "O_DSYNC".
  391. #innodb_flush_method=O_DSYNC
  392. # How long an InnoDB transaction should wait for a lock to be granted
  393. # before being rolled back. InnoDB automatically detects transaction
  394. # deadlocks in its own lock table and rolls back the transaction. If you
  395. # use the LOCK TABLES command, or other transaction-safe storage engines
  396. # than InnoDB in the same transaction, then a deadlock may arise which
  397. # InnoDB cannot notice. In cases like this the timeout is useful to
  398. # resolve the situation.
  399. innodb_lock_wait_timeout = 120
  400. [mysqldump]
  401. # Do not buffer the whole result set in memory before writing it to
  402. # file. Required for dumping very large tables
  403. quick
  404. max_allowed_packet = 16M
  405. [mysql]
  406. no-auto-rehash
  407. # Only allow UPDATEs and DELETEs that use keys.
  408. #safe-updates
  409. [isamchk]
  410. key_buffer = 512M
  411. sort_buffer_size = 512M
  412. read_buffer = 8M
  413. write_buffer = 8M
  414. [myisamchk]
  415. key_buffer = 512M
  416. sort_buffer_size = 512M
  417. read_buffer = 8M
  418. write_buffer = 8M
  419. [mysqlhotcopy]
  420. interactive-timeout
  421. [mysqld_safe]
  422. # Increase the amount of open files allowed per process. Warning: Make
  423. # sure you have set the global system limit high enough! The high value
  424. # is required for a large number of opened tables
  425. open-files-limit = 8192