aboutsummaryrefslogtreecommitdiffstats
path: root/extra/docker
diff options
context:
space:
mode:
authorDeterme, Sebastien (sd378r) <sd378r@intl.att.com>2018-02-13 17:25:12 +0100
committerDeterme, Sebastien (sd378r) <sd378r@intl.att.com>2018-02-13 17:25:12 +0100
commitb588fbcdc8f25f8fdc0a68c2c64dfbbc6d6fd3d7 (patch)
tree4cbfeb01915fb47e596c0fde28fad55c6726e435 /extra/docker
parent7e44fa716640f855fa066c7b0d8f7dca767837b0 (diff)
Update the Mariadb config
Change the mariadb config for integration tests so that it requires less resources Issue-ID: CLAMP-129 Change-Id: Ifc071c02a00813a68ba79d0902d7e11da45605fe Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
Diffstat (limited to 'extra/docker')
-rw-r--r--extra/docker/mariadb/conf1/my.cnf8
1 files changed, 4 insertions, 4 deletions
diff --git a/extra/docker/mariadb/conf1/my.cnf b/extra/docker/mariadb/conf1/my.cnf
index 0be1bd7a..c6631fb4 100644
--- a/extra/docker/mariadb/conf1/my.cnf
+++ b/extra/docker/mariadb/conf1/my.cnf
@@ -141,10 +141,10 @@ binlog_format=row
##innodb_log_group_home_dir = //opt/app/mysql/iblogs
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
-innodb_buffer_pool_size = 6380M
+innodb_buffer_pool_size = 128M
#innodb_additional_mem_pool_size = 2M
# Set .._log_file_size to 25 % of buffer pool size
-innodb_log_file_size = 150M
+innodb_log_file_size = 10M
innodb_log_files_in_group = 3
innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
@@ -156,7 +156,7 @@ transaction-isolation=READ-COMMITTED
####### Galera parameters #######
## Galera Provider configuration
wsrep_provider=/usr/lib/galera/libgalera_smm.so
-wsrep_provider_options="gcache.size=2G; gcache.page_size=1G"
+wsrep_provider_options="gcache.size=128M; gcache.page_size=10M"
## Galera Cluster configuration
wsrep_cluster_name="MSO-automated-tests-cluster"
wsrep_cluster_address="gcomm://"
@@ -169,7 +169,7 @@ wsrep_sst_method=rsync
## Galera Node configuration
wsrep_node_name="mariadb1"
##wsrep_node_address="192.169.3.184"
-wsrep_on=ON
+wsrep_on=OFF
## Status notification
#wsrep_notify_cmd=/opt/app/mysql/bin/wsrep_notify
#######