This repository has been archived by the owner on Dec 16, 2022. It is now read-only.
forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 9
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 #136 from tinyspeck/bramos_force_upstream_f93c96c
[upstream] Get us back to upstream master(f93c96c)
- Loading branch information
Showing
521 changed files
with
27,740 additions
and
8,893 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ _test | |
java/*/target | ||
java/*/bin | ||
php/vendor | ||
|
||
releases |
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
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
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,21 @@ | ||
pr: | ||
- master | ||
|
||
pool: | ||
vmImage: 'ubuntu-latest' | ||
|
||
variables: | ||
flags: "-docker -use_docker_cache -timeout=8m -print-log" | ||
shards: [0, 1, 2, 3, 4] | ||
flavors: ["mysql56", "mysql57", "mysql80", "mariadb", "mariadb103", "percona57", "percona80"] | ||
jobs: | ||
- job: tests | ||
strategy: | ||
matrix: | ||
${{ each flavor in variables.flavors }}: | ||
${{ each shard in variables.shards }}: | ||
${{ format('{0}{1}', flavor, shard) }}: | ||
flavor: ${{ flavor }} | ||
shard: ${{ shard }} | ||
steps: | ||
- script: go run test.go -shard $(shard) -flavor $(flavor) $(flags) |
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
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
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,38 @@ | ||
# Options for enabling GTID | ||
# https://dev.mysql.com/doc/refman/5.6/en/replication-gtids-howto.html | ||
gtid_mode = ON | ||
log_bin | ||
log_slave_updates | ||
enforce_gtid_consistency | ||
|
||
# Crash-safe replication settings. | ||
master_info_repository = TABLE | ||
relay_log_info_repository = TABLE | ||
relay_log_purge = 1 | ||
relay_log_recovery = 1 | ||
|
||
# Native AIO tends to run into aio-max-nr limit during test startup. | ||
innodb_use_native_aio = 0 | ||
|
||
# Semi-sync replication is required for automated unplanned failover | ||
# (when the master goes away). Here we just load the plugin so it's | ||
# available if desired, but it's disabled at startup. | ||
# | ||
# If the -enable_semi_sync flag is used, VTTablet will enable semi-sync | ||
# at the proper time when replication is set up, or when masters are | ||
# promoted or demoted. | ||
plugin-load = rpl_semi_sync_master=semisync_master.so;rpl_semi_sync_slave=semisync_slave.so | ||
|
||
# When semi-sync is enabled, don't allow fallback to async | ||
# if you get no ack, or have no slaves. This is necessary to | ||
# prevent alternate futures when doing a failover in response to | ||
# a master that becomes unresponsive. | ||
rpl_semi_sync_master_timeout = 1000000000000000000 | ||
rpl_semi_sync_master_wait_no_slave = 1 | ||
|
||
# disable mysqlx | ||
mysqlx = 0 | ||
|
||
# 8.0 changes the default auth-plugin to caching_sha2_password | ||
default_authentication_plugin = mysql_native_password | ||
secure_file_priv = NULL |
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
Oops, something went wrong.