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
2fc4a103
Commit
2fc4a103
authored
Mar 12, 2014
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update the help text for --slave-parallel-threads, to clarify the
meaning of the count, and to remove the alpha warning.
parent
8b9b7ec3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
sql/sys_vars.cc
sql/sys_vars.cc
+3
-2
No files found.
sql/sys_vars.cc
View file @
2fc4a103
...
@@ -1758,10 +1758,11 @@ fix_slave_parallel_threads(sys_var *self, THD *thd, enum_var_type type)
...
@@ -1758,10 +1758,11 @@ fix_slave_parallel_threads(sys_var *self, THD *thd, enum_var_type type)
static
Sys_var_ulong
Sys_slave_parallel_threads
(
static
Sys_var_ulong
Sys_slave_parallel_threads
(
"slave_parallel_threads"
,
"slave_parallel_threads"
,
"Alpha feature, to only be used by developers doing testing! "
"If non-zero, number of threads to spawn to apply in parallel events "
"If non-zero, number of threads to spawn to apply in parallel events "
"on the slave that were group-committed on the master or were logged "
"on the slave that were group-committed on the master or were logged "
"with GTID in different replication domains."
,
"with GTID in different replication domains. Note that these threads "
"are in addition to the IO and SQL threads, which are always created "
"by a replication slave"
,
GLOBAL_VAR
(
opt_slave_parallel_threads
),
CMD_LINE
(
REQUIRED_ARG
),
GLOBAL_VAR
(
opt_slave_parallel_threads
),
CMD_LINE
(
REQUIRED_ARG
),
VALID_RANGE
(
0
,
16383
),
DEFAULT
(
0
),
BLOCK_SIZE
(
1
),
NO_MUTEX_GUARD
,
VALID_RANGE
(
0
,
16383
),
DEFAULT
(
0
),
BLOCK_SIZE
(
1
),
NO_MUTEX_GUARD
,
NOT_IN_BINLOG
,
ON_CHECK
(
check_slave_parallel_threads
),
NOT_IN_BINLOG
,
ON_CHECK
(
check_slave_parallel_threads
),
...
...
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