たぶん本当にメモ。
caching_sha2_password, it is now the preferred authentication plugin
innodb_undo_log_truncate is enabled by default.
- やりたくなったら手でONにしてまたOFFに戻したい
- innodb_undo_log_truncate
The default innodb_autoinc_lock_mode setting is now 2 (interleaved).
- 悩ましい。 binlog_format がROWの場合はこれでいいんだけど、SATEMENTやMIXEDだと1にしないといけない。
- ウチはまだMIXED使いたいので1かな…
- innodb_autoinc_lock_mode
The default character set has changed from latin1 to utf8mb4.
- もともとutf8mb4, utf8mb4_binで指定してたからインパクトは少ないけれども
- character_set_server
- collation_server
Added support in MySQL 8.0.2 for partial, in-place updates of JSON column values
- 地雷を踏みたい気分の時は設定する
- binlog_row_value_options
The TempTable storage engine replaces the MEMORY storage engine as the default engine for in-memory internal temporary tables.
- それはいいにしても、temptable_max_ram のデフォルト1Gってでかすぎないかい?
- ↑あとでためす
- internal_tmp_mem_storage_engine
- temptable_max_ram
[mysqld]
default_authentication_plugin= mysql_native_password ### For client compatibility
innodb_undo_log_truncate= OFF
innodb_autoinc_lock_mode= 1 ### For binlog_format != ROW
character_set_server= utf8mb4 ### Default.
collation_server = utf8mb4_bin ### or utf8mb4_ja_0900_as_cs
##binlog_row_value_options= PARTIAL_JSON ### When stepping into mine-field
## internal_tmp_mem_storage_engine = MEMORY ### 5.7 style
## max_heap_table_size= 128M ### 128M is an example, 5.7 style
internal_tmp_mem_storage_engine = TempTable ### 8.0 style, default
temptable_max_ram= 128M ### is default 1G too large?
【2018/03/20 17:18】
ナッツシェルには書いてないけど、X Pluginを無効化するための設定。
mysqlx= OFF
0 件のコメント :
コメントを投稿