Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. mysql]
  2. prompt='mysql [\h] {\u} (\d) > '
  3. #
  4.  
  5. [client]
  6. user = skysql
  7. password = skyvodka
  8. port = 5054
  9. socket = /tmp/mysql_sandbox5054.sock
  10.  
  11. [mysqld]
  12. #read_only=on
  13. sync_binlog = 1
  14. #thread_handling=pool-of-threads
  15. extra-port=5154
  16. extra-max-connections=10
  17.  
  18. # semisync
  19. plugin-load="semisync_master.so;semisync_slave.so;spider=ha_spider.so;spider_alloc_mem=ha_spider.so"
  20. rpl_semi_sync_master=ON
  21. rpl_semi_sync_slave=ON
  22. loose_rpl_semi_sync_master_enabled=ON
  23. loose_rpl_semi_sync_slave_enabled=ON
  24. slave-parallel-threads = 6
  25. slave-parallel-mode=optimistic
  26. log_slave_updates
  27. skip-slave-start
  28. log_bin
  29. binlog_format=ROW
  30. collation-server = utf8_general_ci
  31. init_connect='SET NAMES utf8'
  32. character-set-server = utf8
  33.  
  34.  
  35. user = root
  36. port = 5054
  37. socket = /tmp/mysql_sandbox5054.sock
  38. basedir = /usr/local/skysql/mariadb
  39. datadir = /var/lib/skysql/db-78b9ef7a/data
  40. tmpdir = /var/lib/skysql/db-78b9ef7a/tmp
  41. pid-file = /var/lib/skysql/db-78b9ef7a/data/mysql_sandbox5054.pid
  42. #log-slow-queries = /var/lib/skysql/db-78b9ef7a/data/msandbox-slow.log
  43. #log = /var/lib/skysql/db-78b9ef7a/data/msandbox.log
  44. #
  45. # additional options passed through 'my_clause'
  46. #
  47. server-id=5054
  48. #
  49. # additional options from /usr/local/skysql/ncc/etc/maria.template
  50. #
  51. #performance_schema =1
  52. #thread_handling=pool-of-threads
  53. #spider_dry_access=1
  54.  
  55.  
  56.  
  57. #loose_spider_conn_recycle_mode=2
  58. skip_name_resolv
  59. local-infile=1
  60. skip_name_resolv
  61. back_log=128
  62. max_connections = 1024
  63. table_open_cache = 2048
  64. table_definition_cache = 2048
  65. max_allowed_packet = 16M
  66. # binlog_cache_size = 1M
  67. max_heap_table_size = 64M
  68. thread_cache_size = 128
  69. query_cache_size = 0
  70. query_cache_limit = 2M
  71. ft_min_word_len = 4
  72. #default_table_type = InnoDB
  73. thread_stack = 192K
  74. #transaction_isolation = READ-COMMITTED
  75. tmp_table_size = 64M
  76. expire_logs_days=7
  77.  
  78. sort_buffer_size = 512K
  79. join_buffer_size = 1M
  80.  
  81. innodb_autoinc_lock_mode = 2
  82. innodb_stats_on_metadata = 0
  83. innodb_buffer_pool_instances = 1
  84. innodb_flush_method = O_DIRECT
  85. innodb_log_file_size = 256M
  86. innodb_log_files_in_group=8
  87. innodb_buffer_pool_size = 1G
  88. innodb_additional_mem_pool_size = 16M
  89. innodb_log_buffer_size = 512M
  90. innodb_max_dirty_pages_pct = 30
  91. innodb_file_per_table
  92. innodb_doublewrite = 1
  93. innodb_flush_log_at_trx_commit = 1
  94. innodb_adaptive_hash_index = 0
  95. innodb_write_io_threads = 16
  96. innodb_flush_neighbors = 0
  97. innodb_thread_concurrency = 0
  98. innodb_defragment = 1
  99. innodb_open_files = 16384
  100. innodb_purge_threads = 8
  101. innodb_buffer_pool_populate=0
  102. innodb_change_buffering=none
  103. innodb_concurrency_tickets =5000
  104. innodb_io_capacity=20000
  105. innodb_io_capacity_max=40000
  106. innodb_old_blocks_time=2
  107. innodb_file_per_table
  108.  
  109. #plugin-load=handlersocket=handlersocket.so
  110. #handlersocket_address=127.0.0.1
  111. #handlersocket_port=20500
  112. #handlersocket_port_wr=20501
  113.  
  114. #key_cache_segments=
  115. key_buffer_size = 16M
  116. key_cache_block_size=4K
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement