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
2606bb1c
Commit
2606bb1c
authored
Jun 12, 2007
by
tomas@whalegate.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#29044 - memory buddy allocator "unoptimal" memory handling
- add config param to have better behavior with large tables
parent
a09ef976
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
0 deletions
+26
-0
storage/ndb/include/mgmapi/mgmapi_config_parameters.h
storage/ndb/include/mgmapi/mgmapi_config_parameters.h
+2
-0
storage/ndb/src/kernel/blocks/dbtup/Dbtup.hpp
storage/ndb/src/kernel/blocks/dbtup/Dbtup.hpp
+1
-0
storage/ndb/src/kernel/blocks/dbtup/DbtupGen.cpp
storage/ndb/src/kernel/blocks/dbtup/DbtupGen.cpp
+6
-0
storage/ndb/src/kernel/blocks/dbtup/DbtupPageMap.cpp
storage/ndb/src/kernel/blocks/dbtup/DbtupPageMap.cpp
+5
-0
storage/ndb/src/mgmsrv/ConfigInfo.cpp
storage/ndb/src/mgmsrv/ConfigInfo.cpp
+12
-0
No files found.
storage/ndb/include/mgmapi/mgmapi_config_parameters.h
View file @
2606bb1c
...
@@ -118,6 +118,8 @@
...
@@ -118,6 +118,8 @@
#define CFG_DB_O_DIRECT 168
#define CFG_DB_O_DIRECT 168
#define CFG_DB_MAX_ALLOCATE 169
#define CFG_DB_SGA 198
/* super pool mem */
#define CFG_DB_SGA 198
/* super pool mem */
#define CFG_DB_DATA_MEM_2 199
/* used in special build in 5.1 */
#define CFG_DB_DATA_MEM_2 199
/* used in special build in 5.1 */
...
...
storage/ndb/src/kernel/blocks/dbtup/Dbtup.hpp
View file @
2606bb1c
...
@@ -2618,6 +2618,7 @@ private:
...
@@ -2618,6 +2618,7 @@ private:
ArrayPool
<
Page
>
c_page_pool
;
ArrayPool
<
Page
>
c_page_pool
;
Uint32
cnoOfAllocatedPages
;
Uint32
cnoOfAllocatedPages
;
Uint32
m_max_allocate_pages
;
Tablerec
*
tablerec
;
Tablerec
*
tablerec
;
Uint32
cnoOfTablerec
;
Uint32
cnoOfTablerec
;
...
...
storage/ndb/src/kernel/blocks/dbtup/DbtupGen.cpp
View file @
2606bb1c
...
@@ -308,6 +308,12 @@ void Dbtup::execREAD_CONFIG_REQ(Signal* signal)
...
@@ -308,6 +308,12 @@ void Dbtup::execREAD_CONFIG_REQ(Signal* signal)
Uint32
noOfTriggers
=
0
;
Uint32
noOfTriggers
=
0
;
Uint32
tmp
=
0
;
Uint32
tmp
=
0
;
if
(
ndb_mgm_get_int_parameter
(
p
,
CFG_DB_MAX_ALLOCATE
,
&
tmp
))
tmp
=
32
*
1024
*
1024
;
m_max_allocate_pages
=
(
tmp
+
GLOBAL_PAGE_SIZE
-
1
)
/
GLOBAL_PAGE_SIZE
;
tmp
=
0
;
ndbrequire
(
!
ndb_mgm_get_int_parameter
(
p
,
CFG_TUP_PAGE_RANGE
,
&
tmp
));
ndbrequire
(
!
ndb_mgm_get_int_parameter
(
p
,
CFG_TUP_PAGE_RANGE
,
&
tmp
));
initPageRangeSize
(
tmp
);
initPageRangeSize
(
tmp
);
ndbrequire
(
!
ndb_mgm_get_int_parameter
(
p
,
CFG_TUP_TABLE
,
&
cnoOfTablerec
));
ndbrequire
(
!
ndb_mgm_get_int_parameter
(
p
,
CFG_TUP_TABLE
,
&
cnoOfTablerec
));
...
...
storage/ndb/src/kernel/blocks/dbtup/DbtupPageMap.cpp
View file @
2606bb1c
...
@@ -434,6 +434,11 @@ void Dbtup::allocMoreFragPages(Fragrecord* const regFragPtr)
...
@@ -434,6 +434,11 @@ void Dbtup::allocMoreFragPages(Fragrecord* const regFragPtr)
// We will grow by 18.75% plus two more additional pages to grow
// We will grow by 18.75% plus two more additional pages to grow
// a little bit quicker in the beginning.
// a little bit quicker in the beginning.
/* -----------------------------------------------------------------*/
/* -----------------------------------------------------------------*/
if
(
noAllocPages
>
m_max_allocate_pages
)
{
noAllocPages
=
m_max_allocate_pages
;
}
Uint32
allocated
=
allocFragPages
(
regFragPtr
,
noAllocPages
);
Uint32
allocated
=
allocFragPages
(
regFragPtr
,
noAllocPages
);
regFragPtr
->
noOfPagesToGrow
+=
allocated
;
regFragPtr
->
noOfPagesToGrow
+=
allocated
;
}
//Dbtup::allocMoreFragPages()
}
//Dbtup::allocMoreFragPages()
...
...
storage/ndb/src/mgmsrv/ConfigInfo.cpp
View file @
2606bb1c
...
@@ -1313,6 +1313,18 @@ const ConfigInfo::ParamInfo ConfigInfo::m_ParamInfo[] = {
...
@@ -1313,6 +1313,18 @@ const ConfigInfo::ParamInfo ConfigInfo::m_ParamInfo[] = {
"0"
,
"0"
,
STR_VALUE
(
MAX_INT_RNIL
)
},
STR_VALUE
(
MAX_INT_RNIL
)
},
{
CFG_DB_MAX_ALLOCATE
,
"MaxAllocate"
,
DB_TOKEN
,
"Maximum size of allocation to use when allocating memory for tables"
,
ConfigInfo
::
CI_USED
,
false
,
ConfigInfo
::
CI_INT
,
"32M"
,
"1M"
,
"1G"
},
{
{
CFG_DB_MEMREPORT_FREQUENCY
,
CFG_DB_MEMREPORT_FREQUENCY
,
"MemReportFrequency"
,
"MemReportFrequency"
,
...
...
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