Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[mariadb] Change default binary log format from MIXED to ROW #7818

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions common/mariadb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.16.0 - 2025/02/04
- default binary log format changed from MIXED to ROW
- chart version bumped

## v0.15.3 - 2025/01/14
- fixed service selector: added `app.kubernetes.io/instance` label to make service target specific service instance
- chart version bumped
Expand Down
2 changes: 1 addition & 1 deletion common/mariadb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
apiVersion: v1
description: A Helm chart for Kubernetes
name: mariadb
version: 0.15.3
version: 0.16.0
2 changes: 1 addition & 1 deletion common/mariadb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ query_cache_size: "0"
query_cache_type: "0"
join_buffer_size: "4M"
long_query_time: 5
binlog_format: "MIXED"
binlog_format: "ROW"
expire_logs_days: 10
character_set_server: "utf8" # Should be utf8mb4, but we started with this
collation_server: "utf8_general_ci"
Expand Down