Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions addons/mysql/config/mysql8-config-constraint.cue
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,9 @@
// Controls encryption of redo log data for tables encrypted using the InnoDB tablespace encryption feature.
innodb_redo_log_encrypt: string & "OFF" | "ON" | *"OFF"

// The total capacity in bytes of the redo log.
innodb_redo_log_capacity: int & >= 8388608

// The replication thread delay (in ms) on a slave server if innodb_thread_concurrency is reached.
innodb_replication_delay?: int & >=0 & <=4294967295

Expand Down
Loading