Merge branch '2.3' into 2.4
This commit is contained in:
@ -5,25 +5,26 @@
|
|||||||
|
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
cd ./MaxScale
|
cpus=$(grep -c processor /proc/cpuinfo)
|
||||||
|
|
||||||
|
cd ./MaxScale
|
||||||
|
|
||||||
mkdir _build
|
mkdir _build
|
||||||
cd _build
|
cd _build
|
||||||
cmake .. $cmake_flags
|
cmake .. $cmake_flags
|
||||||
export LD_LIBRARY_PATH=$PWD/log_manager:$PWD/query_classifier
|
export LD_LIBRARY_PATH=$PWD/log_manager:$PWD/query_classifier
|
||||||
make || exit 1
|
make -j $cpus || exit 1
|
||||||
|
|
||||||
if [[ "$cmake_flags" =~ "BUILD_TESTS=Y" ]]
|
if [[ "$cmake_flags" =~ "BUILD_TESTS=Y" ]]
|
||||||
then
|
then
|
||||||
# We don't care about memory leaks in the tests (e.g. servers are never freed)
|
# We don't care about memory leaks in the tests (e.g. servers are never freed)
|
||||||
export ASAN_OPTIONS=detect_leaks=0
|
export ASAN_OPTIONS=detect_leaks=0
|
||||||
# All tests must pass otherwise the build is considered a failure
|
# All tests must pass otherwise the build is considered a failure
|
||||||
ctest --output-on-failure || exit 1
|
ctest --output-on-failure -j 100 || exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export LD_LIBRARY_PATH=$(for i in `find $PWD/ -name '*.so*'`; do echo $(dirname $i); done|sort|uniq|xargs|sed -e 's/[[:space:]]/:/g')
|
export LD_LIBRARY_PATH=$(for i in `find $PWD/ -name '*.so*'`; do echo $(dirname $i); done|sort|uniq|xargs|sed -e 's/[[:space:]]/:/g')
|
||||||
make package
|
make package -j $cpus
|
||||||
res=$?
|
res=$?
|
||||||
if [ $res != 0 ] ; then
|
if [ $res != 0 ] ; then
|
||||||
echo "Make package failed"
|
echo "Make package failed"
|
||||||
@ -35,7 +36,7 @@ sudo rm CMakeCache.txt
|
|||||||
|
|
||||||
echo "Building tarball..."
|
echo "Building tarball..."
|
||||||
cmake .. $cmake_flags -DTARBALL=Y
|
cmake .. $cmake_flags -DTARBALL=Y
|
||||||
sudo make package
|
sudo make package -j $cpus
|
||||||
|
|
||||||
|
|
||||||
cp _CPack_Packages/Linux/DEB/*.deb ../
|
cp _CPack_Packages/Linux/DEB/*.deb ../
|
||||||
@ -57,7 +58,7 @@ then
|
|||||||
export LD_LIBRARY_PATH=""
|
export LD_LIBRARY_PATH=""
|
||||||
cmake .. $cmake_flags -DTARGET_COMPONENT=$component
|
cmake .. $cmake_flags -DTARGET_COMPONENT=$component
|
||||||
export LD_LIBRARY_PATH=$(for i in `find $PWD/ -name '*.so*'`; do echo $(dirname $i); done|sort|uniq|xargs|sed -e 's/[[:space:]]/:/g')
|
export LD_LIBRARY_PATH=$(for i in `find $PWD/ -name '*.so*'`; do echo $(dirname $i); done|sort|uniq|xargs|sed -e 's/[[:space:]]/:/g')
|
||||||
make package
|
make package -j $cpus
|
||||||
cp _CPack_Packages/Linux/DEB/*.deb ../
|
cp _CPack_Packages/Linux/DEB/*.deb ../
|
||||||
cd ..
|
cd ..
|
||||||
cp _build/*.deb .
|
cp _build/*.deb .
|
||||||
@ -68,7 +69,7 @@ fi
|
|||||||
|
|
||||||
if [ "$BUILD_RABBITMQ" == "yes" ] ; then
|
if [ "$BUILD_RABBITMQ" == "yes" ] ; then
|
||||||
cmake ../rabbitmq_consumer/ $cmake_flags
|
cmake ../rabbitmq_consumer/ $cmake_flags
|
||||||
sudo make package
|
sudo make package -j $cpus
|
||||||
res=$?
|
res=$?
|
||||||
if [ $res != 0 ] ; then
|
if [ $res != 0 ] ; then
|
||||||
exit $res
|
exit $res
|
||||||
|
@ -5,19 +5,21 @@
|
|||||||
|
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
|
cpus=$(grep -c processor /proc/cpuinfo)
|
||||||
|
|
||||||
cd ./MaxScale
|
cd ./MaxScale
|
||||||
|
|
||||||
mkdir _build
|
mkdir _build
|
||||||
cd _build
|
cd _build
|
||||||
cmake .. $cmake_flags
|
cmake .. $cmake_flags
|
||||||
make || exit 1
|
make -j $cpus || exit 1
|
||||||
|
|
||||||
if [[ "$cmake_flags" =~ "BUILD_TESTS=Y" ]]
|
if [[ "$cmake_flags" =~ "BUILD_TESTS=Y" ]]
|
||||||
then
|
then
|
||||||
# We don't care about memory leaks in the tests (e.g. servers are never freed)
|
# We don't care about memory leaks in the tests (e.g. servers are never freed)
|
||||||
export ASAN_OPTIONS=detect_leaks=0
|
export ASAN_OPTIONS=detect_leaks=0
|
||||||
# All tests must pass otherwise the build is considered a failure
|
# All tests must pass otherwise the build is considered a failure
|
||||||
ctest --output-on-failure || exit 1
|
ctest --output-on-failure -j 100 || exit 1
|
||||||
|
|
||||||
# See if docker is installed and run REST API and MaxCtrl tests if it is
|
# See if docker is installed and run REST API and MaxCtrl tests if it is
|
||||||
command -v docker
|
command -v docker
|
||||||
@ -41,7 +43,7 @@ sudo rm -rf /usr/bin/strip
|
|||||||
sudo touch /usr/bin/strip
|
sudo touch /usr/bin/strip
|
||||||
sudo chmod a+x /usr/bin/strip
|
sudo chmod a+x /usr/bin/strip
|
||||||
|
|
||||||
sudo make package
|
sudo make package -j $cpus
|
||||||
res=$?
|
res=$?
|
||||||
if [ $res != 0 ] ; then
|
if [ $res != 0 ] ; then
|
||||||
echo "Make package failed"
|
echo "Make package failed"
|
||||||
@ -53,7 +55,7 @@ sudo rm CMakeCache.txt
|
|||||||
|
|
||||||
echo "Building tarball..."
|
echo "Building tarball..."
|
||||||
cmake .. $cmake_flags -DTARBALL=Y
|
cmake .. $cmake_flags -DTARBALL=Y
|
||||||
sudo make package
|
sudo make package -j $cpus
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
cp _build/*.rpm .
|
cp _build/*.rpm .
|
||||||
@ -66,7 +68,7 @@ then
|
|||||||
cd _build
|
cd _build
|
||||||
rm CMakeCache.txt
|
rm CMakeCache.txt
|
||||||
cmake .. $cmake_flags -DTARGET_COMPONENT=$component
|
cmake .. $cmake_flags -DTARGET_COMPONENT=$component
|
||||||
sudo make package
|
sudo make package -j $cpus
|
||||||
cd ..
|
cd ..
|
||||||
cp _build/*.rpm .
|
cp _build/*.rpm .
|
||||||
cp _build/*.gz .
|
cp _build/*.gz .
|
||||||
@ -75,7 +77,7 @@ fi
|
|||||||
|
|
||||||
if [ "$BUILD_RABBITMQ" == "yes" ] ; then
|
if [ "$BUILD_RABBITMQ" == "yes" ] ; then
|
||||||
cmake ../rabbitmq_consumer/ $cmake_flags
|
cmake ../rabbitmq_consumer/ $cmake_flags
|
||||||
sudo make package
|
sudo make package -j $cpus
|
||||||
res=$?
|
res=$?
|
||||||
if [ $res != 0 ] ; then
|
if [ $res != 0 ] ; then
|
||||||
exit $res
|
exit $res
|
||||||
|
@ -6,6 +6,8 @@
|
|||||||
# Build in a temp directory so we don't pollute cwd
|
# Build in a temp directory so we don't pollute cwd
|
||||||
tmpdir=$(mktemp -d)
|
tmpdir=$(mktemp -d)
|
||||||
|
|
||||||
|
cpus=$(grep -c processor /proc/cpuinfo)
|
||||||
|
|
||||||
cd $tmpdir
|
cd $tmpdir
|
||||||
|
|
||||||
command -v apt-get
|
command -v apt-get
|
||||||
@ -129,7 +131,7 @@ if [ "`echo -e "3.7.1\n$cmake_version"|sort -V|head -n 1`" != "3.7.1" ] ; then
|
|||||||
cd cmake-3.7.1
|
cd cmake-3.7.1
|
||||||
|
|
||||||
./bootstrap
|
./bootstrap
|
||||||
gmake
|
make -j $cpus
|
||||||
sudo make install
|
sudo make install
|
||||||
cd ..
|
cd ..
|
||||||
fi
|
fi
|
||||||
@ -149,7 +151,7 @@ fi
|
|||||||
cd rabbitmq-c
|
cd rabbitmq-c
|
||||||
git checkout v0.7.1
|
git checkout v0.7.1
|
||||||
cmake . -DCMAKE_C_FLAGS=-fPIC -DBUILD_SHARED_LIBS=N -DCMAKE_INSTALL_PREFIX=/usr
|
cmake . -DCMAKE_C_FLAGS=-fPIC -DBUILD_SHARED_LIBS=N -DCMAKE_INSTALL_PREFIX=/usr
|
||||||
sudo make install
|
sudo make install -j $cpus
|
||||||
cd ../../
|
cd ../../
|
||||||
|
|
||||||
# TCL
|
# TCL
|
||||||
@ -178,7 +180,7 @@ then
|
|||||||
tar xzf tcl8.6.5-src.tar.gz
|
tar xzf tcl8.6.5-src.tar.gz
|
||||||
cd tcl8.6.5/unix
|
cd tcl8.6.5/unix
|
||||||
./configure
|
./configure
|
||||||
sudo make install
|
sudo make install -j $cpus
|
||||||
cd ../../..
|
cd ../../..
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -196,7 +198,7 @@ git checkout v2.9
|
|||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_C_FLAGS=-fPIC -DJANSSON_INSTALL_LIB_DIR=$install_libdir
|
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_C_FLAGS=-fPIC -DJANSSON_INSTALL_LIB_DIR=$install_libdir
|
||||||
make
|
make -j $cpus
|
||||||
sudo make install
|
sudo make install
|
||||||
cd ../../
|
cd ../../
|
||||||
|
|
||||||
@ -216,7 +218,7 @@ pushd $avro_dir/build
|
|||||||
# Make sure the library isn't linked against snappy
|
# Make sure the library isn't linked against snappy
|
||||||
sed -i 's/find_package(Snappy)//' ../lang/c/CMakeLists.txt
|
sed -i 's/find_package(Snappy)//' ../lang/c/CMakeLists.txt
|
||||||
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_C_FLAGS=-fPIC -DCMAKE_CXX_FLAGS=-fPIC
|
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_C_FLAGS=-fPIC -DCMAKE_CXX_FLAGS=-fPIC
|
||||||
make
|
make -j $cpus
|
||||||
sudo make install
|
sudo make install
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
@ -59,6 +59,7 @@ For more details, please refer to:
|
|||||||
|
|
||||||
For more details, please refer to:
|
For more details, please refer to:
|
||||||
|
|
||||||
|
* [MariaDB MaxScale 2.3.14 Release Notes](Release-Notes/MaxScale-2.3.14-Release-Notes.md)
|
||||||
* [MariaDB MaxScale 2.3.13 Release Notes](Release-Notes/MaxScale-2.3.13-Release-Notes.md)
|
* [MariaDB MaxScale 2.3.13 Release Notes](Release-Notes/MaxScale-2.3.13-Release-Notes.md)
|
||||||
* [MariaDB MaxScale 2.3.12 Release Notes](Release-Notes/MaxScale-2.3.12-Release-Notes.md)
|
* [MariaDB MaxScale 2.3.12 Release Notes](Release-Notes/MaxScale-2.3.12-Release-Notes.md)
|
||||||
* [MariaDB MaxScale 2.3.11 Release Notes](Release-Notes/MaxScale-2.3.11-Release-Notes.md)
|
* [MariaDB MaxScale 2.3.11 Release Notes](Release-Notes/MaxScale-2.3.11-Release-Notes.md)
|
||||||
|
34
Documentation/Release-Notes/MaxScale-2.3.14-Release-Notes.md
Normal file
34
Documentation/Release-Notes/MaxScale-2.3.14-Release-Notes.md
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# MariaDB MaxScale 2.3.14 Release Notes
|
||||||
|
|
||||||
|
Release 2.3.14 is a GA release.
|
||||||
|
|
||||||
|
This document describes the changes in release 2.3.14, when compared to the
|
||||||
|
previous release in the same series.
|
||||||
|
|
||||||
|
For any problems you encounter, please consider submitting a bug
|
||||||
|
report on [our Jira](https://jira.mariadb.org/projects/MXS).
|
||||||
|
|
||||||
|
## Bug fixes
|
||||||
|
|
||||||
|
* [MXS-2760](https://jira.mariadb.org/browse/MXS-2760) ssl_version value conversion is wrong
|
||||||
|
* [MXS-2732](https://jira.mariadb.org/browse/MXS-2732) Memory leak with QC
|
||||||
|
|
||||||
|
## Known Issues and Limitations
|
||||||
|
|
||||||
|
There are some limitations and known issues within this version of MaxScale.
|
||||||
|
For more information, please refer to the [Limitations](../About/Limitations.md) document.
|
||||||
|
|
||||||
|
## Packaging
|
||||||
|
|
||||||
|
RPM and Debian packages are provided for supported the Linux distributions.
|
||||||
|
|
||||||
|
Packages can be downloaded [here](https://mariadb.com/downloads/#mariadb_platform-mariadb_maxscale).
|
||||||
|
|
||||||
|
## Source Code
|
||||||
|
|
||||||
|
The source code of MaxScale is tagged at GitHub with a tag, which is identical
|
||||||
|
with the version of MaxScale. For instance, the tag of version X.Y.Z of MaxScale
|
||||||
|
is `maxscale-X.Y.Z`. Further, the default branch is always the latest GA version
|
||||||
|
of MaxScale.
|
||||||
|
|
||||||
|
The source code is available [here](https://github.com/mariadb-corporation/MaxScale).
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
set(MAXSCALE_VERSION_MAJOR "2" CACHE STRING "Major version")
|
set(MAXSCALE_VERSION_MAJOR "2" CACHE STRING "Major version")
|
||||||
set(MAXSCALE_VERSION_MINOR "3" CACHE STRING "Minor version")
|
set(MAXSCALE_VERSION_MINOR "3" CACHE STRING "Minor version")
|
||||||
set(MAXSCALE_VERSION_PATCH "14" CACHE STRING "Patch version")
|
set(MAXSCALE_VERSION_PATCH "15" CACHE STRING "Patch version")
|
||||||
|
|
||||||
# This should only be incremented if a package is rebuilt
|
# This should only be incremented if a package is rebuilt
|
||||||
set(MAXSCALE_BUILD_NUMBER 1 CACHE STRING "Release number")
|
set(MAXSCALE_BUILD_NUMBER 1 CACHE STRING "Release number")
|
||||||
|
Reference in New Issue
Block a user