mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
Merge neptunus.(none):/home/msvensson/mysql/same_tools/my41-same_tools
into neptunus.(none):/home/msvensson/mysql/same_tools/my50-same_tools
This commit is contained in:
commit
b0e0040dcb
1 changed files with 16 additions and 5 deletions
|
@ -1959,11 +1959,22 @@ sub ndbcluster_start_install ($) {
|
|||
if (!$opt_bench)
|
||||
{
|
||||
# Use a smaller configuration
|
||||
$ndb_no_ord=32;
|
||||
$ndb_con_op=5000;
|
||||
$ndb_dmem="20M";
|
||||
$ndb_imem="1M";
|
||||
$ndb_pbmem="4M";
|
||||
if ( $mysql_version_id < 50000 )
|
||||
{
|
||||
# 4.1 is using a "larger" --small configuration
|
||||
$ndb_no_ord=128;
|
||||
$ndb_con_op=10000;
|
||||
$ndb_dmem="40M";
|
||||
$ndb_imem="12M";
|
||||
}
|
||||
else
|
||||
{
|
||||
$ndb_no_ord=32;
|
||||
$ndb_con_op=5000;
|
||||
$ndb_dmem="20M";
|
||||
$ndb_imem="1M";
|
||||
$ndb_pbmem="4M";
|
||||
}
|
||||
}
|
||||
|
||||
my $config_file_template= "ndb/ndb_config_${nodes}_node.ini";
|
||||
|
|
Loading…
Reference in a new issue