TokuDB引擎笔记

[client]
port        = 3306
socket      = /tmp/mysql.sock

[MysqLd]
port        = 3306
socket      = /tmp/MysqL.sock
skip-external-locking
max_allowed_packet = 1M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size= 16M
open_files_limit = 8192
max_connect_errors = 100000
table_open_cache = 2048
table_deFinition_cache = 2048
max_heap_table_size = 96M
sort_buffer_size = 2M
join_buffer_size = 2M
tmp_table_size = 96M
key_buffer_size = 8M
read_buffer_size = 2M
read_rnd_buffer_size = 16M
bulk_insert_buffer_size = 32M
thread_concurrency = 8
datadir = /data/MysqL
basedir = /usr/local/MysqL

##############tokudb##########################
plugin-load = ha_tokudb
tokudb_cache_size = 4G
tokudb_data_dir = /data/MysqL/tokudb_data
tokudb_log_dir = /data/MysqL/logs
tokudb_tmp_dir = /data/MysqL/tmp
tokudb_pk_insert_mode = 2
tokudb_commit_sync = 0
tokudb_directio = 1
tokudb_read_block_size = 128K
tokudb_read_buf_size = 128K
tokudb_row_format = tokudb_fast
###############innodb######################
innodb_buffer_pool_size = 1G
innodb_buffer_pool_instances = 1
#innodb_data_file_path = ibdata1:1G:autoextend
innodb_flush_log_at_trx_commit = 1
innodb_log_buffer_size = 64M
innodb_log_file_size = 256M
innodb_log_files_in_group = 2
innodb_file_per_table = 1
innodb_status_file = 1
transaction_isolation = READ-COMMITTED
innodb_flush_method = O_DIRECT

log-bin=MysqL-bin
binlog_format=mixed
server-id   = 1

[MysqLdump]
quick
max_allowed_packet = 16M

[MysqL]
no-auto-rehash

[myisamchk]
key_buffer_size = 128M
sort_buffer_size = 128M
read_buffer = 2M
write_buffer = 2M

[MysqLhotcopy]
interactive-timeout

各参数说明:
tokudb_cache_size
认情况下,TokuDB分配50%的系统物理内存。
tokudb_data_dir
指定TokuDB数据的存储位置。认为空,使用datadir定义的路径。
tokudb_log_dir
指定TokuDB日志的存储位置。认为空,使用datadir定义的路径。
tokudb_tmp_dir
TokuDB批量导入数据时,临时文件的存储位置。TokuDB在使用LOAD DATA导入数据的时候会通过临时表(可能会很大)来完成。
认为空,使用datadir定义的路径。
tokudb_pk_insert_mode
主键写入的模式,只有值为2时,才支持RBR。

相关文章

这篇文章主要介绍“hive和mysql的区别是什么”,在日常操作中...
这篇“MySQL数据库如何改名”文章的知识点大部分人都不太理解...
这篇文章主要介绍“mysql版本查询命令是什么”的相关知识,小...
本篇内容介绍了“mysql怎么修改字段的内容”的有关知识,在实...
这篇文章主要讲解了“mysql怎么删除unique约束”,文中的讲解...
今天小编给大家分享一下mysql怎么查询不为空的字段的相关知识...