Skip to content

Commit 014b655

Browse files
author
Wiktor Maj
authored
Merge branch 'master' into fix/51-cleanup-pyc-files
2 parents bcded89 + d1f6a48 commit 014b655

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222
* Migrated CI from self-hosted to GitHub-hosted runners with Docker-in-Docker test infrastructure. (#94)
2323
* Test workflow always builds service images locally for reproducibility. (#97)
2424
* Clean up temporary `.pyc` files on remote nodes after execution. (#51)
25+
* Set `innodb_flush_method=O_DIRECT` to eliminate double caching in containers. (#74)
26+
* Reduced InnoDB change buffer size for read-heavy BI workload. (#72)
27+
* Set InnoDB buffer pool size to 1G for improved query performance. (#71)
2528
* Relaxed Terraform version constraint to accept any 1.x release. (#40)
2629

30+
### Removed
31+
32+
* Removed personal contact section from README. (#159)
33+
2734
### Fixed
2835

2936
* Fixed `run_mysql_server()` not instantiating `MySQLServer` class. (#94)

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,6 @@ If you notice anything missing, spot a bug, or have an enhancement proposal,
104104
feel free to open an issue with the appropriate label.
105105
Pull requests are welcome. Please ensure that the tests are updated as necessary.
106106

107-
## Personal contact information
108-
109-
In case of any inquiries, please write an email to: _wjmaj98@gmail.com_
110-
111107
## Additional resources
112108

113109
* [What is Apache Superset?](https://superset.apache.org/docs/intro)

services/mysql-server/mysql_config.cnf.tpl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@ ssl-key = "/etc/mysql/ssl/mysql_server_key.pem"
1414
require_secure_transport = "ON"
1515
max_connections = "50"
1616
max_connect_errors = "50"
17+
innodb_flush_method = "O_DIRECT"
18+
innodb_change_buffer_max_size = "10"
19+
innodb_buffer_pool_size = "1G"
20+
innodb_buffer_pool_instances = "1"

0 commit comments

Comments
 (0)