File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121* Completed [ ARCHITECTURE.md] ( ./docs/ARCHITECTURE.md ) (#93 )
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 )
24+ * Enabled parallel replication applier threads on secondary MySQL nodes. (#75 )
2425* Clean up temporary ` .pyc ` files on remote nodes after execution. (#51 )
2526* Set ` innodb_flush_method=O_DIRECT ` to eliminate double caching in containers. (#74 )
2627* Reduced InnoDB change buffer size for read-heavy BI workload. (#72 )
Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ ssl-key = "/etc/mysql/ssl/mysql_server_key.pem"
1414require_secure_transport = "ON"
1515max_connections = "50"
1616max_connect_errors = "50"
17+ replica_parallel_workers = "4"
18+ replica_parallel_type = "LOGICAL_CLOCK"
19+ replica_preserve_commit_order = "ON"
1720innodb_flush_method = "O_DIRECT"
1821innodb_change_buffer_max_size = "10"
1922innodb_buffer_pool_size = "1G"
You can’t perform that action at this time.
0 commit comments