Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
dd2a184f
Commit
dd2a184f
authored
Oct 05, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set the small configuration a little bit larger for 4.1
parent
b56d31eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
5 deletions
+16
-5
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+16
-5
No files found.
mysql-test/mysql-test-run.pl
View file @
dd2a184f
...
...
@@ -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
";
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment