Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
vaintroub committed Sep 6, 2023
1 parent f489a2a commit ce35692
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ninja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,19 @@ jobs:
run: |
mysql -uroot -e "set global innodb_flush_log_at_trx_commit=1"
sysbench oltp_update_index --mysql-user=root --mysql-socket=/tmp/mysql.sock --time=60 --table-size=100000 --threads=1 --report-interval=1 --histogram run
- name: set global innodb_log_file_buffering=1
if: matrix.mysql-distribution == 'mariadb'
run: |
mysql -uroot -e "set global innodb_log_file_buffering=1"
- name: sysbench oltp_update_index run single thread innodb_flush_log_at_trx_commit=2
run: |
mysql -uroot -e "set global innodb_flush_log_at_trx_commit=2"
sysbench oltp_update_index --mysql-user=root --mysql-socket=/tmp/mysql.sock --time=60 --table-size=100000 --threads=1 --report-interval=1 --histogram run
mysql -uroot -e "set global innodb_flush_log_at_trx_commit=1"
- name: set global innodb_log_file_buffering=0
if: matrix.mysql-distribution == 'mariadb'
run: |
mysql -uroot -e "set global innodb_log_file_buffering=0"
- name: sysbench oltp_update_index run 40 threads
run: sysbench oltp_update_index --mysql-user=root --mysql-socket=/tmp/mysql.sock --time=60 --table-size=100000 --threads=40 --report-interval=1 --histogram run
- name: sysbench oltp cleanup
Expand Down

0 comments on commit ce35692

Please sign in to comment.