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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
df32920b
Commit
df32920b
authored
Aug 26, 2015
by
Eric Herman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add eviction count for table cache lru cleanup (xtradb)
parent
4f4373fe
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
storage/xtradb/include/srv0mon.h
storage/xtradb/include/srv0mon.h
+1
-0
storage/xtradb/srv/srv0mon.cc
storage/xtradb/srv/srv0mon.cc
+5
-0
storage/xtradb/srv/srv0srv.cc
storage/xtradb/srv/srv0srv.cc
+4
-1
No files found.
storage/xtradb/include/srv0mon.h
View file @
df32920b
...
...
@@ -379,6 +379,7 @@ enum monitor_id_t {
MONITOR_SRV_MEM_VALIDATE_MICROSECOND
,
MONITOR_SRV_PURGE_MICROSECOND
,
MONITOR_SRV_DICT_LRU_MICROSECOND
,
MONITOR_SRV_DICT_LRU_EVICT_COUNT
,
MONITOR_SRV_CHECKPOINT_MICROSECOND
,
MONITOR_OVLD_SRV_DBLWR_WRITES
,
MONITOR_OVLD_SRV_DBLWR_PAGES_WRITTEN
,
...
...
storage/xtradb/srv/srv0mon.cc
View file @
df32920b
...
...
@@ -1196,6 +1196,11 @@ static monitor_info_t innodb_counter_info[] =
MONITOR_NONE
,
MONITOR_DEFAULT_START
,
MONITOR_SRV_DICT_LRU_MICROSECOND
},
{
"innodb_dict_lru_count"
,
"server"
,
"Number of tables evicted from DICT LRU list"
,
MONITOR_NONE
,
MONITOR_DEFAULT_START
,
MONITOR_SRV_DICT_LRU_EVICT_COUNT
},
{
"innodb_checkpoint_usec"
,
"server"
,
"Time (in microseconds) spent by master thread to do checkpoint"
,
MONITOR_NONE
,
...
...
storage/xtradb/srv/srv0srv.cc
View file @
df32920b
...
...
@@ -2881,6 +2881,7 @@ srv_master_do_active_tasks(void)
{
ib_time_t
cur_time
=
ut_time
();
ullint
counter_time
=
ut_time_us
(
NULL
);
ulint
n_evicted
=
0
;
/* First do the tasks that we are suppose to do at each
invocation of this function. */
...
...
@@ -2941,7 +2942,9 @@ srv_master_do_active_tasks(void)
if
(
cur_time
%
SRV_MASTER_DICT_LRU_INTERVAL
==
0
)
{
srv_main_thread_op_info
=
"enforcing dict cache limit"
;
srv_master_evict_from_table_cache
(
50
);
n_evicted
=
srv_master_evict_from_table_cache
(
50
);
MONITOR_INC_VALUE
(
MONITOR_SRV_DICT_LRU_EVICT_COUNT
,
n_evicted
);
MONITOR_INC_TIME_IN_MICRO_SECS
(
MONITOR_SRV_DICT_LRU_MICROSECOND
,
counter_time
);
}
...
...
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