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
0831ce1c
Commit
0831ce1c
authored
Dec 04, 2001
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
myisam_bulk_insert_tree_size clarification
parent
1d55c88e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
Docs/manual.texi
Docs/manual.texi
+7
-5
No files found.
Docs/manual.texi
View file @
0831ce1c
...
@@ -18413,7 +18413,9 @@ After this many write locks, allow some read locks to run in between.
...
@@ -18413,7 +18413,9 @@ After this many write locks, allow some read locks to run in between.
MySQL uses special tree-like cache to make bulk inserts (that is,
MySQL uses special tree-like cache to make bulk inserts (that is,
@code{INSERT ... SELECT}, @code{INSERT ... VALUES (...), (...), ...}, and
@code{INSERT ... SELECT}, @code{INSERT ... VALUES (...), (...), ...}, and
@code{LOAD DATA INFILE}) faster. This variable limits
@code{LOAD DATA INFILE}) faster. This variable limits
the size of the cache tree in bytes per thread. Default value is 8 MB.
the size of the cache tree in bytes per thread.
@strong{Note:} This cache is only used when adding data to non-empty table.
Default value is 8 MB.
@item @code{myisam_recover_options}
@item @code{myisam_recover_options}
The value of the @code{--myisam-recover} option.
The value of the @code{--myisam-recover} option.
...
@@ -24116,10 +24118,10 @@ Some ways to speed up inserts:
...
@@ -24116,10 +24118,10 @@ Some ways to speed up inserts:
@itemize @bullet
@itemize @bullet
@item
@item
If you are inserting many rows from the same client at the same time, use
If you are inserting many rows from the same client at the same time, use
multiple value lists @code{INSERT} statements. This is much faster (many
multiple value lists @code{INSERT} statements. This is much faster (many
times
times in some cases) than using separate @code{INSERT} statements.
in some cases) than using separate @code{INSERT} statements. If you are adding
Tune up @code{myisam_bulk_insert_tree_size} variable to make it even
data to non-empty table, you may tune up @code{myisam_bulk_insert_tree_size}
faster. @xref{SHOW VARIABLES}.
variable to make it even
faster. @xref{SHOW VARIABLES}.
@item
@item
If you are inserting a lot of rows from different clients, you can get
If you are inserting a lot of rows from different clients, you can get
higher speed by using the @code{INSERT DELAYED} statement. @xref{INSERT,
higher speed by using the @code{INSERT DELAYED} statement. @xref{INSERT,
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