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
3a4b8879
Commit
3a4b8879
authored
Mar 04, 2014
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set index page page compression on by default and remove innodb_trim_pct
as it is not used/implemented.
parent
d64fa1d6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
8 deletions
+12
-8
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+5
-3
storage/innobase/srv/srv0srv.cc
storage/innobase/srv/srv0srv.cc
+1
-1
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+5
-3
storage/xtradb/srv/srv0srv.cc
storage/xtradb/srv/srv0srv.cc
+1
-1
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
3a4b8879
...
...
@@ -16786,15 +16786,17 @@ static MYSQL_SYSVAR_BOOL(trx_purge_view_update_only_debug,
NULL
,
NULL
,
FALSE
);
#endif
/* UNIV_DEBUG */
/*
static MYSQL_SYSVAR_LONG(trim_pct, srv_trim_pct,
PLUGIN_VAR_OPCMDARG ,
"How many percent of compressed pages should be trimmed",
NULL, NULL, 100, 0, 100, 0);
*/
static
MYSQL_SYSVAR_BOOL
(
compress_index_pages
,
srv_page_compress_index_pages
,
PLUGIN_VAR_OPCMDARG
,
"Use page compression for only index pages."
,
NULL
,
NULL
,
FALS
E
);
"Use page compression for only index pages.
Default TRUE.
"
,
NULL
,
NULL
,
TRU
E
);
static
MYSQL_SYSVAR_BOOL
(
use_trim
,
srv_use_trim
,
PLUGIN_VAR_OPCMDARG
,
...
...
@@ -16974,7 +16976,7 @@ static struct st_mysql_sys_var* innobase_system_variables[]= {
MYSQL_SYSVAR
(
limit_optimistic_insert_debug
),
MYSQL_SYSVAR
(
trx_purge_view_update_only_debug
),
#endif
/* UNIV_DEBUG */
MYSQL_SYSVAR
(
trim_pct
),
//
MYSQL_SYSVAR(trim_pct),
MYSQL_SYSVAR
(
compress_index_pages
),
MYSQL_SYSVAR
(
use_trim
),
#ifdef HAVE_LZ4
...
...
storage/innobase/srv/srv0srv.cc
View file @
3a4b8879
...
...
@@ -148,7 +148,7 @@ UNIV_INTERN my_bool srv_use_native_aio = TRUE;
/* If this flag is TRUE, then we will use page compression
only for index pages */
UNIV_INTERN
my_bool
srv_page_compress_index_pages
=
FALS
E
;
UNIV_INTERN
my_bool
srv_page_compress_index_pages
=
TRU
E
;
UNIV_INTERN
long
srv_trim_pct
=
100
;
/* If this flag is TRUE, then we will use fallocate(PUCH_HOLE)
to the pages */
...
...
storage/xtradb/handler/ha_innodb.cc
View file @
3a4b8879
...
...
@@ -17934,10 +17934,12 @@ static MYSQL_SYSVAR_BOOL(use_stacktrace, srv_use_stacktrace,
"Print stacktrace on long semaphore wait (off by default supported only on linux)"
,
NULL
,
NULL
,
FALSE
);
/*
static MYSQL_SYSVAR_LONG(trim_pct, srv_trim_pct,
PLUGIN_VAR_OPCMDARG ,
"How many percent of compressed pages should be trimmed",
NULL, NULL, 100, 0, 100, 0);
*/
static
MYSQL_SYSVAR_UINT
(
compression_level
,
page_zip_level
,
PLUGIN_VAR_RQCMDARG
,
...
...
@@ -17947,8 +17949,8 @@ static MYSQL_SYSVAR_UINT(compression_level, page_zip_level,
static
MYSQL_SYSVAR_BOOL
(
compress_index_pages
,
srv_page_compress_index_pages
,
PLUGIN_VAR_OPCMDARG
,
"Use page compression for only index pages."
,
NULL
,
NULL
,
FALS
E
);
"Use page compression for only index pages.
Default TRUE.
"
,
NULL
,
NULL
,
TRU
E
);
static
MYSQL_SYSVAR_BOOL
(
use_trim
,
srv_use_trim
,
PLUGIN_VAR_OPCMDARG
,
...
...
@@ -18166,7 +18168,7 @@ static struct st_mysql_sys_var* innobase_system_variables[]= {
MYSQL_SYSVAR
(
fake_changes
),
MYSQL_SYSVAR
(
locking_fake_changes
),
MYSQL_SYSVAR
(
use_stacktrace
),
MYSQL_SYSVAR
(
trim_pct
),
//
MYSQL_SYSVAR(trim_pct),
MYSQL_SYSVAR
(
compress_index_pages
),
MYSQL_SYSVAR
(
use_trim
),
#ifdef HAVE_LZ4
...
...
storage/xtradb/srv/srv0srv.cc
View file @
3a4b8879
...
...
@@ -163,7 +163,7 @@ UNIV_INTERN my_bool srv_use_native_aio = TRUE;
/* If this flag is TRUE, then we will use page compression
only for index pages */
UNIV_INTERN
my_bool
srv_page_compress_index_pages
=
FALS
E
;
UNIV_INTERN
my_bool
srv_page_compress_index_pages
=
TRU
E
;
UNIV_INTERN
long
srv_trim_pct
=
100
;
/* Default compression level if page compression is used and no compression
level is set for the table*/
...
...
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