mirror of https://github.com/milvus-io/milvus.git
28 lines
771 B
Plaintext
28 lines
771 B
Plaintext
[mysqld]
|
|
pid-file = /var/run/mysqld/mysqld.pid
|
|
socket = /var/run/mysqld/mysqld.sock
|
|
datadir = /var/lib/mysql
|
|
log-error = /var/log/mysql/error.log
|
|
bind-address = 0.0.0.0
|
|
symbolic-links=0
|
|
character-set-server = utf8mb4
|
|
collation-server = utf8mb4_unicode_ci
|
|
init_connect='SET NAMES utf8mb4'
|
|
skip-character-set-client-handshake = true
|
|
max_connections = 1000
|
|
wait_timeout = 31536000
|
|
table_open_cache = 128
|
|
external-locking = FALSE
|
|
binlog_cache_size = 1M
|
|
max_heap_table_size = 8M
|
|
tmp_table_size = 16M
|
|
read_rnd_buffer_size = 8M
|
|
sort_buffer_size = 8M
|
|
join_buffer_size = 8M
|
|
thread_cache_size = 32
|
|
query_cache_size = 64M
|
|
innodb_buffer_pool_size = 64M
|
|
innodb_flush_log_at_trx_commit = 0
|
|
innodb_log_buffer_size = 2M
|
|
max_allowed_packet=64M
|
|
explicit_defaults_for_timestamp=true |