We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4d2ff1 commit c5ca69dCopy full SHA for c5ca69d
1 file changed
.github/workflows/benchmark.yml
@@ -110,15 +110,13 @@ jobs:
110
[mysqld]
111
# Skip per-commit fsync on the redo log (fsync once/sec instead)
112
innodb_flush_log_at_trx_commit = 2
113
- # Disable binlog entirely (no replication needed for CI)
114
- skip-log-bin
+ # Skip per-commit fsync on the binlog
+ sync_binlog = 0
115
# Skip the double-write buffer (halves write IO)
116
innodb_doublewrite = OFF
117
# Default 128MB pool is undersized; CI runners have 16GB RAM
118
innodb_buffer_pool_size = 2G
119
- # Default 100MB redo log fills fast under sustained writes
120
- innodb_redo_log_capacity = 2G
121
- EOF
+ EOF
122
- name: Set up MySQL (local)
123
run: |
124
sudo systemctl start mysql
0 commit comments