summaryrefslogtreecommitdiff
path: root/mysql-test/suite/wsrep/r/variables.result
Commit message (Collapse)AuthorAgeFilesLines
* MDEV-27246 Implement a method to add IPs to allowlist for Galera Cluster ↵mkaruza2022-08-021-0/+1
| | | | | | node addresses that can make SST/IST requests Reviewed-by: Jan Lindström <jan.lindstrom@mariadb.com>
* MDEV-26971: JSON file interface to wsrep node state.Alexey Yurchenko2022-03-181-0/+1
| | | | | | | | | | | | | | | | | | | Integration with status reporter in wsrep-lib. Status reporter reports changes in wsrep state and logged errors/ warnings to a json file which then can be read and interpreted by an external monitoring tool. Rationale: until the server is fully initialized it is unaccessible by client and the only source of information is an error log which is not machine-friendly. Since wsrep node can spend a very long time in initialization phase (state transfer), it may be a very long time that automatic tools can't easily monitor its liveness and progression. New variable: wsrep_status_file specifies the output file name. If not set, no file is created and no reporting is done. Reviewed-by: Jan Lindström <jan.lindstrom@mariadb.com>
* MDEV-24947 : Remove parameter wsrep_replicate_myisamJan Lindström2021-08-071-1/+0
|
* MDEV-24843 : Remove parameter wsrep_strict_ddlJan Lindström2021-08-071-3/+0
| | | | | | | | | | | | | | | | | | Changes to be committed: modified: mysql-test/include/galera_variables_ok.inc modified: mysql-test/include/galera_variables_ok_debug.inc modified: mysql-test/suite/galera/r/galera_defaults.result deleted: mysql-test/suite/galera/r/galera_var_wsrep_strict_ddl.result modified: mysql-test/suite/galera/t/galera_defaults.test deleted: mysql-test/suite/galera/t/galera_var_wsrep_strict_ddl.test modified: mysql-test/suite/sys_vars/r/sysvars_wsrep.result modified: mysql-test/suite/wsrep/r/variables.result modified: mysql-test/suite/wsrep/r/variables_debug.result modified: sql/sys_vars.cc modified: sql/wsrep_mysqld.cc modified: sql/wsrep_mysqld.h modified: sql/wsrep_var.cc modified: sql/wsrep_var.h
* Merge branch '10.5' into 10.6Oleksandr Byelkin2021-08-021-0/+1
|\
| * Merge branch '10.4' into 10.5Oleksandr Byelkin2021-07-311-0/+1
| |\
| | * Update result files for Galera library 26.4.9Jan Lindström2021-07-271-0/+1
| | |
| * | Merge remote-tracking branch 10.4 into 10.5Jan Lindström2021-05-041-137/+0
| |\ \ | | |/
| | * MDEV-25591 : Test case cleanupsJan Lindström2021-05-041-136/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | galera_var_wsrep_on_off : Add wait conditions to make sure DDL is replicated before continuing. wsrep.[variables|variables_debug] : Remove unnecessary parts and add check to correct number of variables or skip galera_ssl_reload: Add version check and SSL checks.
* | | MDEV-25591 : Test case cleanupsJan Lindström2021-05-051-136/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | galera_var_wsrep_on_off : Add wait conditions to make sure DDL is replicated before continuing. wsrep.[variables|variables_debug] : Remove unnecessary parts and add check to correct number of variables or skip galera_ssl_reload: Add version check and SSL checks.
* | | Merge 10.5 into 10.6Marko Mäkelä2021-05-041-2/+7
|\ \ \ | |/ / | | / | |/ |/|
| * Updated wsrep.variables after wsrep lib updateMonty2021-05-011-2/+5
|/
* Fix MTR test wsrep.variables_debugDaniele Sciascia2021-04-261-113/+249
| | | | | | | The test was changing variable wsrep_provider dynamically, but wsrep_provider was recently made read-only. followup for ce3a2a688db556d8
* Merge branch 'bb-10.2-release' into 10.2Sergei Golubchik2021-02-221-8/+5
|\
| * make @@wsrep_provider and @@wsrep_notify_cmd read-onlymariadb-10.2.37Sergei Golubchik2021-02-181-8/+4
| | | | | | | | this should simplify run-time cluster management
* | MDEV-24867 : wsrep.variables MTR failed: Result length mismatchJan Lindström2021-02-171-10/+0
|/ | | | Stabilize test case.
* Fix wsrep.variablesJan Lindström2021-01-261-1/+1
|
* Clean up wsrep.variablesJan Lindström2020-11-031-60/+0
|
* MDEV-17585 : wsrep.variables failed in buildbot with deadlock on CREATE USERJan Lindström2020-10-101-19/+15
| | | | | Stabilize test by using correct galera library and restore original galera cluster at end.
* MDEV-13569: wsrep_info.plugin failed in buildbot with "no nodes coming from ↵Jan Lindström2020-01-071-0/+9
| | | | | | | | | prim view Modify configuration so that all nodes are part of galera cluster i.e. wsrep_on=ON. Add missing wait conditions. test changes only.
* MDEV-19746: Galera test failures because of wsrep_slave_threads identificationJan Lindström2019-07-151-5/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem was that tests select INFORMATION_SCHEMA.PROCESSLIST processes from user system user and empty state. Thus, there is not clear state for slave threads. Changes: - Added new status variables that store current amount of applier threads (wsrep_applier_thread_count) and rollbacker threads (wsrep_rollbacker_thread_count). This will make clear how many slave threads of certain type there is. - Added THD state "wsrep applier idle" when applier slave thread is waiting for work. This makes finding slave/applier threads easier. - Added force-restart option for mtr to always restart servers between tests to avoid race on start of the test - Added wait_condition_with_debug to wait until the passed statement returns true, or the operation times out. If operation times out, the additional error statement will be executed Changes to be committed: new file: mysql-test/include/force_restart.inc new file: mysql-test/include/wait_condition_with_debug.inc modified: mysql-test/mysql-test-run.pl modified: mysql-test/suite/galera/disabled.def modified: mysql-test/suite/galera/r/MW-336.result modified: mysql-test/suite/galera/r/galera_kill_applier.result modified: mysql-test/suite/galera/r/galera_var_slave_threads.result new file: mysql-test/suite/galera/t/MW-336.cnf modified: mysql-test/suite/galera/t/MW-336.test modified: mysql-test/suite/galera/t/galera_kill_applier.test modified: mysql-test/suite/galera/t/galera_parallel_autoinc_largetrx.test modified: mysql-test/suite/galera/t/galera_parallel_autoinc_manytrx.test modified: mysql-test/suite/galera/t/galera_var_slave_threads.test modified: mysql-test/suite/wsrep/disabled.def modified: mysql-test/suite/wsrep/r/variables.result modified: mysql-test/suite/wsrep/t/variables.test modified: sql/mysqld.cc modified: sql/wsrep_mysqld.cc modified: sql/wsrep_mysqld.h modified: sql/wsrep_thd.cc modified: sql/wsrep_var.cc
* Merge branch '10.1' into 10.2Sergei Golubchik2018-09-241-0/+2
|\
| * MDEV-17276: Adjust Galera tests after Galera library 25.3.24Jan Lindström2018-09-231-0/+2
| |
* | Merge branch '10.1' into 10.2Oleksandr Byelkin2018-09-141-55/+1
|\ \ | |/
| * Fix result file for wsrep.variables, for some reason had too newJan Lindström2018-09-071-59/+1
| | | | | | | | galera library used.
| * MDEV-17062: Test failure on galera.MW-336Jan Lindström2018-09-061-0/+4
| | | | | | | | | | | | | | | | | | | | | | MDEV-17058: Test failure on wsrep.variables MDEV-17060: Test failure on galera.galera_var_slave_threads Fix incorrect calculation of increased applier (slave) threads. Note that increase change takes effect "immediately" but we should use proper wait condition to wait it. Reducing the number of slave threads is not immediate as thread will only exit after a replication event.
* | Merge branch '10.1' into 10.2Sergei Golubchik2018-06-211-0/+10
|\ \ | |/
| * Merge branch '10.0-galera' into 10.1Vicențiu Ciorbaru2018-06-121-0/+7
| |\
| | * Merge remote-tracking branch 'origin/5.5-galera' into 10.0-galeraJan Lindström2018-05-071-0/+7
| | |\
| | | * only allow SUPER user to modify wsrep_onSergei Golubchik2018-03-011-0/+7
| | | |
| | | * Test changes (backported from 10.1).Nirbhay Choubey2015-01-161-4/+5
| | | |
| | | * MDEV-6832: ER_LOCK_WAIT_TIMEOUT on SHOW STATUSmariadb-galera-5.5.41Nirbhay Choubey2014-12-311-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | Synchronous read view should not be needed for SHOW commands.
| | | * MDEV#6411 - Setting set @@global_wsrep_sst_auth=NULLNirbhay Choubey2014-07-091-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | causes crash Fixed by properly handling the NULL values.
| | | * Fixed a warning in mtr script.Nirbhay Choubey2014-06-101-6/+6
| | | | | | | | | | | | | | | | | | | | Updated wsrep.variables test.
| | | * MDEV#6206: wsrep_slave_threads subtracts from max_connectionsNirbhay Choubey2014-05-081-0/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Decoupled wsrep thread count from connection count. By doing so, the number of wsrep threads (applier/rollbacker) would no longer affect the threads_connected status variable and thus maximum allowable user connections limit would be @@max_connections. Also introduced a new status variable 'wsrep_thread_count' to hold the number of wsrep applier/rollbacker threads. Added a test case.
| | | * MDEV#5534: mysql_tzinfo_to_sql generates wrong queryNirbhay Choubey2014-02-141-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mysql_tzinfo_to_sql tries to set wsrep_replicate_myisam as SESSION variable, while its a GLOBAL-only system variable, and thus the resulting sql would fail to load. Fixed by changing the scope to GLOBAL in the SET command. Also added following include files to facilitate testing : * include/have_wsrep.inc * include/not_wsrep.inc * include/have_wsrep_enabled.inc
| | * Record wsrep.variables test result (with non-debug galera library).mariadb-galera-10.0.27Nirbhay Choubey2016-08-251-2/+0
| | |
| | * Update galera version-dependent tests.Nirbhay Choubey2016-08-211-0/+2
| | |
| | * Merge galera tests from github.com/codership/mysql-wsrepNirbhay Choubey2015-05-081-0/+8
| | |
* | | Merge branch '10.1' into 10.2Sergei Golubchik2016-09-091-2/+2
|/ /
* | Merge branch '10.0-galera' into 10.1Nirbhay Choubey2015-07-141-0/+8
| |
* | Merge 10.0-galera into 10.1Sergei Golubchik2015-02-061-4/+44
|\ \ | |/
| * Test changes (backported from 10.1).Nirbhay Choubey2015-01-161-4/+8
| |
| * MDEV-6832: ER_LOCK_WAIT_TIMEOUT on SHOW STATUSNirbhay Choubey2014-12-311-1/+0
| | | | | | | | | | | | Synchronous read view should not be needed for SHOW commands.
| * MDEV-6656: Test wsrep.variables hangsmariadb-galera-10.0.13Jan Lindström2014-08-291-3/+0
| | | | | | | | | | | | | | Analysis: wsrep_applier_thread shutdown signaling does not always work correctly causing a timing problem where main thread is waiting in a condition variable a signal that all worker threads to end.
| * Merge of patch for MDEV-6411 from maria-5.5-galera.Nirbhay Choubey2014-07-091-3/+21
| |
| * Merging changes from maria-5.5-galera andNirbhay Choubey2014-05-221-1/+70
| | | | | | | | | | | | | | some test fixes. bzr merge -r3479..3493 maria-5.5-galera
| * Updated wsrep.variables result.Nirbhay Choubey2014-05-211-0/+2
| |
| * MDEV#6079: xtrabackup SST failing with maria-10.0-galeraNirbhay Choubey2014-04-161-73/+107
| | | | | | | | | | | | Added logic to skip changing of case for wsrep status variable names.
| * Fixes for some test failures.Nirbhay Choubey2014-04-091-0/+2
| |