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
f90661e4
Commit
f90661e4
authored
Feb 01, 2006
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug 16996 ndbd nodes crash at api heartbeat failure if event/replication is used
parent
cdf145c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
storage/ndb/src/kernel/blocks/suma/Suma.cpp
storage/ndb/src/kernel/blocks/suma/Suma.cpp
+9
-1
No files found.
storage/ndb/src/kernel/blocks/suma/Suma.cpp
View file @
f90661e4
...
...
@@ -181,7 +181,15 @@ Suma::execREAD_CONFIG_REQ(Signal* signal)
c_subscriptionPool
.
setSize
(
noTables
);
c_syncPool
.
setSize
(
2
);
c_dataBufferPool
.
setSize
(
noAttrs
);
c_gcp_pool
.
setSize
(
10
);
// Calculate needed gcp pool as 10 records + the ones needed
// during a possible api timeout
Uint32
dbApiHbInterval
,
gcpInterval
;
ndb_mgm_get_int_parameter
(
p
,
CFG_DB_API_HEARTBEAT_INTERVAL
,
&
dbApiHbInterval
);
ndb_mgm_get_int_parameter
(
p
,
CFG_DB_GCP_INTERVAL
,
&
gcpInterval
);
c_gcp_pool
.
setSize
(
10
+
(
4
*
dbApiHbInterval
)
/
gcpInterval
);
c_page_chunk_pool
.
setSize
(
50
);
...
...
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