Skip to content

Commit a6d1013

Browse files
committed
Merge branch 'mysql-5.5-cluster-7.2' into mysql-5.6-cluster-7.3
2 parents 1c9987b + fd26e58 commit a6d1013

File tree

2 files changed

+39
-5
lines changed

2 files changed

+39
-5
lines changed

storage/ndb/test/run-test/autotest-run.sh

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
##############
2727

2828
save_args=$*
29-
VERSION="autotest-run.sh version 1.14"
29+
VERSION="autotest-run.sh version 1.15"
3030

3131
DATE=`date '+%Y-%m-%d'`
3232
if [ `uname -s` != "SunOS" ]
@@ -85,6 +85,9 @@ do
8585
--baseport=*) baseport_arg="$1";;
8686
--base-dir=*) base_dir=`echo $1 | sed s/--base-dir=//`;;
8787
--clusters=*) clusters_arg="$1";;
88+
--atrt-defaults-group-suffix=*)
89+
atrt_defaults_group_suffix_arg="${1/#--atrt-/--}"
90+
;;
8891
--site=*) site_arg="$1";;
8992
esac
9093
shift
@@ -361,11 +364,11 @@ if [ ${verbose} -gt 0 ] ; then
361364
fi
362365

363366
# Setup configuration
364-
$atrt Cdq ${site_arg} ${clusters_arg} ${verbose_arg} $prefix my.cnf
367+
$atrt ${atrt_defaults_group_suffix_arg} Cdq ${site_arg} ${clusters_arg} ${verbose_arg} $prefix my.cnf
365368

366369
# Start...
367-
args=""
368-
args="--report-file=report.txt"
370+
args="${atrt_defaults_group_suffix_arg}"
371+
args="$args --report-file=report.txt"
369372
args="$args --log-file=log.txt"
370373
args="$args --testcase-file=$test_dir/$RUN-tests.txt"
371374
args="$args ${baseport_arg}"

storage/ndb/test/run-test/conf-vigdis05.cnf

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,44 @@ basedir = CHOOSE_dir
1818
fix-nodeid = 1
1919
mt = 2
2020

21+
[atrt.2ndbd]
22+
mt = 0
23+
2124
[ndb_mgmd]
2225

2326
[client]
2427
protocol=tcp
2528

2629
#
27-
# .2node
30+
# .2ndbd - two ndbd nodes
31+
#
32+
33+
[cluster_config.2ndbd]
34+
ndb_mgmd = CHOOSE_host1
35+
ndbd = CHOOSE_host2,CHOOSE_host3
36+
ndbapi= CHOOSE_host1,CHOOSE_host4,CHOOSE_host5
37+
38+
NoOfReplicas = 2
39+
DataMemory = 400M
40+
BackupMemory = 64M
41+
MaxNoOfConcurrentScans = 100
42+
MaxNoOfSavedMessages= 5
43+
SendBufferMemory = 2M
44+
NoOfFragmentLogFiles = 4
45+
FragmentLogFileSize = 128M
46+
CompressedLCP=1
47+
CompressedBackup=1
48+
ODirect=1
49+
MaxNoOfAttributes=2000
50+
Checksum=1
51+
52+
SharedGlobalMemory=256M
53+
InitialLogfileGroup=undo_buffer_size=64M;undofile01.dat:512M;undofile02.dat:512M
54+
InitialTablespace=datafile01.dat:128M;datafile02.dat:64M
55+
TimeBetweenWatchDogCheckInitial=60000
56+
57+
#
58+
# .2node - two ndbmtd nodes
2859
#
2960

3061
[cluster_config.2node]

0 commit comments

Comments
 (0)