-
-
Notifications
You must be signed in to change notification settings - Fork 514
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7497 from dolthub/db/workflow
[no-release-notes] /go/performance/continuous_integration: update dockerfile to install go/benchmark/comparison_config.go
- Loading branch information
Showing
7 changed files
with
150 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
** | ||
|
||
# Except for the following | ||
!mysqld.cnf | ||
!go | ||
!config.json | ||
!tpcc-config.json | ||
!sysbench-runner-tests-entrypoint.sh |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# | ||
# The MySQL database server configuration file. | ||
# | ||
# One can use all long options that the program supports. | ||
# Run program with --help to get a list of available options and with | ||
# --print-defaults to see which it would actually understand and use. | ||
# | ||
# For explanations see | ||
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html | ||
|
||
# Here is entries for some specific programs | ||
# The following values assume you have at least 32M ram | ||
|
||
[mysqld] | ||
# | ||
# * Basic Settings | ||
# | ||
user = tester | ||
pid-file = /home/tester/.mysql/mysqld.pid | ||
socket = /home/tester/.mysql/mysqld.sock | ||
# port = 3306 | ||
# datadir = /var/lib/mysql | ||
|
||
|
||
# If MySQL is running as a replication slave, this should be | ||
# changed. Ref https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_tmpdir | ||
# tmpdir = /tmp | ||
# | ||
# Instead of skip-networking the default is now to listen only on | ||
# localhost which is more compatible and is not less secure. | ||
bind-address = 127.0.0.1 | ||
mysqlx-bind-address = 127.0.0.1 | ||
# | ||
# * Fine Tuning | ||
# | ||
key_buffer_size = 16M | ||
# max_allowed_packet = 64M | ||
# thread_stack = 256K | ||
|
||
# thread_cache_size = -1 | ||
|
||
# This replaces the startup script and checks MyISAM tables if needed | ||
# the first time they are touched | ||
myisam-recover-options = BACKUP | ||
|
||
# max_connections = 151 | ||
|
||
# table_open_cache = 4000 | ||
|
||
# | ||
# * Logging and Replication | ||
# | ||
# Both location gets rotated by the cronjob. | ||
# | ||
# Log all queries | ||
# Be aware that this log type is a performance killer. | ||
general_log_file = /home/tester/.mysql/log/query.log | ||
# general_log = 1 | ||
# | ||
# Error log - should be very few entries. | ||
# | ||
log_error = /home/tester/.mysql/log/error.log | ||
# | ||
# Here you can see queries with especially long duration | ||
# slow_query_log = 1 | ||
slow_query_log_file = /home/tester/.mysql/log/mysql-slow.log | ||
# long_query_time = 2 | ||
# log-queries-not-using-indexes | ||
# | ||
# The following can be used as easy to replay backup logs or for replication. | ||
# note: if you are setting up a replication slave, see README.Debian about | ||
# other settings you may need to change. | ||
# server-id = 1 | ||
log_bin = /home/tester/.mysql/log/mysql-bin.log | ||
# binlog_expire_logs_seconds = 2592000 | ||
max_binlog_size = 100M | ||
# binlog_do_db = include_database_name | ||
# binlog_ignore_db = include_database_name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters