Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
lmagyar committed Jun 27, 2024
2 parents 0153168 + b468537 commit d50fbe8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
5 changes: 5 additions & 0 deletions mariadb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ necessary). **You can execute in the command line the**
`/share/bin/update-mariadb-inmemory-while-ha-core-restarted` **script to do it
automatically.**

## 2.7.1.3 (forked)

- Increase innodb_buffer_pool_size (to aovid high CPU load and slow responses)
- Update Add-on base image to v16.1.0

## 2.7.1.2 (forked)

- Fix HEALTHCHECK support for IPv6 ::1
Expand Down
2 changes: 1 addition & 1 deletion mariadb/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:16.0.1
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:16.1.0
# hadolint ignore=DL3006
FROM ${BUILD_FROM}

Expand Down
6 changes: 3 additions & 3 deletions mariadb/build.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
build_from:
aarch64: ghcr.io/hassio-addons/base/aarch64:16.0.1
amd64: ghcr.io/hassio-addons/base/amd64:16.0.1
armv7: ghcr.io/hassio-addons/base/armv7:16.0.1
aarch64: ghcr.io/hassio-addons/base/aarch64:16.1.0
amd64: ghcr.io/hassio-addons/base/amd64:16.1.0
armv7: ghcr.io/hassio-addons/base/armv7:16.1.0
2 changes: 1 addition & 1 deletion mariadb/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 2.7.1.2
version: 2.7.1.3
homeassistant: 2023.4.0
slug: mariadb
name: In-memory MariaDB
Expand Down
3 changes: 1 addition & 2 deletions mariadb/rootfs/etc/my.cnf.d/mariadb-server.cnf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ default_storage_engine = InnoDB
ignore_builtin_innodb = OFF

# InnoDB Tweaks
innodb_buffer_pool_size = 5M
innodb_buffer_pool_size = 16M
innodb_log_buffer_size = 2M
innodb_log_file_size = 4M
innodb_doublewrite = OFF
Expand All @@ -51,7 +51,6 @@ innodb_page_size = 4096
innodb_max_undo_log_size = 10485760
innodb_autoextend_increment = 1
innodb_undo_tablespaces = 2
innodb_purge_rseg_truncate_frequency = 1
innodb_flush_method = fsync

# Aria Tweaks
Expand Down

0 comments on commit d50fbe8

Please sign in to comment.