(travis) Multiple CI improvements lifted from blead
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / configs / minimal_mysql_travis.cnf
1 [mysqld]
2
3 # the DBIC test suite does hold up to 3 concurrent connections
4 # (t/94versioning.t), otherwise this could conceivably go lower (~50MB vsize
5 # per connection)
6 max_connections = 3
7
8 thread_cache_size = 0
9 thread_stack = 128K
10
11 # mysql >= 5.5.16
12 #thread_pool_size = 1
13
14 net_buffer_length = 4K
15 read_buffer_size = 32K
16 join_buffer_size = 128K
17 sort_buffer_size = 128K
18 bulk_insert_buffer_size = 0
19
20 table_definition_cache = 256
21 performance_schema = 0
22
23 query_cache_type = 0
24 query_cache_size = 0
25 query_cache_limit = 16K
26
27 myisam_sort_buffer_size = 16K
28 tmp_table_size = 1M
29 key_buffer_size = 64K
30
31 innodb_data_file_path           = ibdata1:10M:autoextend
32 innodb_autoextend_increment     = 1
33 innodb_buffer_pool_size         = 512K
34
35 innodb_stats_on_metadata        = 0
36 innodb_file_per_table           = 0
37
38 innodb_log_file_size            = 1M
39 innodb_log_buffer_size          = 512K
40 innodb_buffer_pool_size         = 512K
41
42 innodb_use_sys_malloc           = 0
43 innodb_additional_mem_pool_size = 256K
44 innodb_flush_method             = O_DIRECT
45
46 innodb_read_io_threads          = 1
47 innodb_write_io_threads         = 1