2ba7e63e7e
Merge branch '2.3' into develop
2019-03-21 09:26:06 +02:00
76ac63096c
MXS-2396 Add check_user_variables configuration parameter
...
The masking filter should check for things like
set @ssn = (SELECT ssn FROM users WHERE id = 1);
so that
select @ssn;
is not possible.
2019-03-20 15:11:58 +02:00
9ddd186550
MXS-2313: Update rank documentation
...
Updated the value types, added a simpler example and created a separate
section in readwritesplit documentation on the behavior of ranked servers.
2019-03-18 13:12:59 +02:00
b2bf4d125b
MXS-2313: Document rank
...
Added documentation along with a few examples of how the parameter behaves
and how it can be used.
2019-03-18 13:12:58 +02:00
667a9f1c6f
Merge branch '2.3' into develop
2019-03-15 12:31:08 +02:00
14890cb232
Merge branch '2.2' into 2.3
2019-03-15 12:26:59 +02:00
4400876b46
Update release date
2019-03-15 11:41:13 +02:00
0df7228e5e
Add 2.2.20 release notes
2019-03-13 13:57:16 +02:00
f05a2317d9
Merge branch '2.3' into develop
2019-03-12 11:22:34 +02:00
b07c53d532
Remove multi-master monitor
...
Was deprecated in 2.3. Similar features are in MariaDB-Monitor.
One system test was modified to use MariaDB-Monitor instead. Some parts
of the test are disabled for now to make it pass.
2019-03-11 17:50:15 +02:00
b4c5500fa1
MXS-2362 Document SchemaRouter table-sharding limitations
2019-03-11 17:39:07 +02:00
8abe1c8448
Merge branch '2.3' into develop
2019-03-11 15:46:18 +02:00
f76ae381c0
MXS-2325 Update documentation with the new behavior
2019-03-11 13:07:53 +02:00
24ea222ed6
MXS-2350: Allow lazy connection creation
...
The lazy connection creation reduces the burden that short sessions place
on the backend servers. This also prevents the problems caused by early
disconnections that happen when only one server is used but multiple
connections are created. This does not solve the problem (MXS-619) but it
does mitigate it to acceptable levels.
This commit also adds a change to the weighting algorithm that prefers
existing connections over unopened ones. This helps avoid the
flip-flopping that happens when the absolute scores are very similar. The
hard-coded value might need to be tuned once testing is done.
2019-03-08 08:20:44 +02:00
95317725ce
Merge branch '2.3' into develop
2019-03-07 16:21:03 +02:00
48d2f3bd84
Correct REST-API-Tutorial
2019-03-07 15:59:27 +02:00
9572ff84ea
Merge branch '2.3' into develop
2019-03-05 10:37:56 +02:00
83fc3b1bc2
Merge branch '2.3' into develop
2019-03-04 17:43:53 +02:00
42b3f970c5
MXS-2260: Add REST API tutorial
...
The tutorial shows how to configure the MaxScale REST API and communicate
with it using the `curl` command line client.
2019-03-04 16:46:29 +02:00
019c8fc2e1
MXS-2333 Correct typo in Clustrix monitor tutorial
2019-03-04 10:43:39 +02:00
ab7c19e1a4
MXS-2294 Update PAM authenticator documentation
...
Updated with new functionality. Also explains the account mapping more.
2019-02-22 15:31:40 +02:00
afe41c38ed
Merge branch '2.3' into develop
2019-02-20 10:33:14 +02:00
c1d96d79f0
Document server port
default value
...
The value has a default in 2.3.
2019-02-19 18:48:00 +02:00
bd3d5bb010
MXS-2329 Use durations in throttle filter
2019-02-19 10:11:57 +02:00
f3acf77a9f
MXS-2329 Use durations in ccrfilter
...
The time window of the ccrfilter is now specified as a duration.
Internally, the time window is still always handled as seconds.
2019-02-19 10:11:57 +02:00
daf5c6b29c
MXS-2332 When server is drained, report it as such
...
When the SERVER_BEING_DRAINED bit is on, if the number of connections
to the server is 0, the state is reported as "Drained", otherwise as
"Being Drained".
2019-02-19 10:06:37 +02:00
1fd4ad64f6
MXS-2333 Add Clustrix monitor tutorial
2019-02-15 09:30:06 +02:00
2528c5fa4d
MXS-2253 Make Cache use the new duration config type
...
Internally the Cache used seconds, so some changes were needed.
2019-02-14 10:57:55 +02:00
a0d715a39f
MXS-2253 Update general documentation regarding durations
2019-02-14 10:57:55 +02:00
12c22f0ba8
Merge branch '2.3' into develop
2019-02-13 13:37:50 +02:00
d44193bc9e
Merge branch '2.2' into 2.3
2019-02-13 13:37:42 +02:00
79fd01d4dd
Add hintfilter to documentation contents
2019-02-13 13:37:02 +02:00
9a12ae53f2
Merge branch '2.3' into develop
2019-02-13 13:35:07 +02:00
19143e04e1
Fix nested lists
...
Adding some spaces should fix rendering issues in KB.
2019-02-13 10:50:53 +02:00
eac478876d
Merge branch '2.3' into develop
2019-02-13 10:24:24 +02:00
e9667dd051
Update 2.3.4 release date
2019-02-13 10:14:41 +02:00
661f1dd4e4
Merge branch '2.3' into develop
2019-02-11 13:14:52 +02:00
f271c5cea1
MXS-2314 Add 'cluster' parameter to service
...
Using the cluster parameter, the servers of a service can be
defined using a monitor.
This change basically only introduces the parameter.
2019-02-11 13:03:18 +02:00
a65bf3e766
Update 2.3.4 release notes
2019-02-11 10:15:09 +02:00
6f2475b5fa
MXS-2302: Document hintfilter behavior
...
Moved hintfilter documentation to the correct place and cleaned it
up. Added a note at the start of the syntax documentation about the
behavior of the hint parsing to warn users of possible unexpected
behavior. The hint parsing could really use some refactoring to make it
more manageable which is why the preliminary fix version of the bug will
be 2.4.
2019-02-11 03:18:38 +02:00
2e270ce1ac
Merge branch '2.3' into develop
2019-02-08 10:39:33 +02:00
c0593936b8
Update change log and release notes for 2.3
2019-02-08 10:38:22 +02:00
8e563bd0b6
MXS-2237 Update configuration guide with 2.4 changes
...
- New server state: 'Being Drained'
- New monitor: clustrixmon
2019-02-06 12:27:10 +02:00
b8be905b08
Merge branch '2.3' into develop
2019-02-06 12:24:09 +02:00
3a40faf77d
MXS-2288: Document source
parameter behavior
2019-02-06 12:11:06 +02:00
01bb267aa0
MXS-2237 Replace manual TOC with [TOC]
2019-02-06 11:17:02 +02:00
85bbcd4332
MXS-2237 Document server states
...
Also introduce longer introductions to the various objects of
MaxScale.
2019-02-06 11:16:07 +02:00
8e74a1ac6b
Add example to lower_case_table_names documentation
...
The syntax isn't super obvious so having an example helps.
2019-02-04 11:15:39 +02:00
6295732bee
MXS-2310: Document and install cdc_one_schema.py
...
Added documentation for the script and installed it as a part of the
default package.
2019-02-04 11:15:38 +02:00
6038f1f386
Merge branch '2.3' into develop
2019-02-01 13:55:54 +02:00