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
e9b9fd90
Commit
e9b9fd90
authored
Feb 24, 2014
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#188 keep track of and cleanup last_lock_timeout memory
parent
b77c0add
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
65 additions
and
7 deletions
+65
-7
storage/tokudb/hatoku_defines.h
storage/tokudb/hatoku_defines.h
+9
-4
storage/tokudb/hatoku_hton.cc
storage/tokudb/hatoku_hton.cc
+56
-3
No files found.
storage/tokudb/hatoku_defines.h
View file @
e9b9fd90
...
@@ -146,12 +146,17 @@ PATENT RIGHTS GRANT:
...
@@ -146,12 +146,17 @@ PATENT RIGHTS GRANT:
#endif
#endif
#ifdef MARIADB_BASE_VERSION
// In MariaDB 5.3, thread progress reporting was introduced.
// In MariaDB 5.3, thread progress reporting was introduced.
// Only include that functionality if we're using maria 5.3 +
// Only include that functionality if we're using maria 5.3 +
#ifdef MARIADB_BASE_VERSION
#define HA_TOKUDB_HAS_THD_PROGRESS 1
#if MYSQL_VERSION_ID >= 50300
#define HA_TOKUDB_HAS_THD_PROGRESS
// MariaDB supports thdvar memalloc correctly
#endif
#define TOKU_THDVAR_MEMALLOC_BUG 0
#else
// MySQL does not support thdvar memalloc correctly
// see http://bugs.mysql.com/bug.php?id=71759
#define TOKU_THDVAR_MEMALLOC_BUG 1
#endif
#endif
#if !defined(HA_CLUSTERING)
#if !defined(HA_CLUSTERING)
...
...
storage/tokudb/hatoku_hton.cc
View file @
e9b9fd90
...
@@ -173,6 +173,29 @@ DB_ENV *db_env;
...
@@ -173,6 +173,29 @@ DB_ENV *db_env;
HASH
tokudb_open_tables
;
HASH
tokudb_open_tables
;
pthread_mutex_t
tokudb_mutex
;
pthread_mutex_t
tokudb_mutex
;
#if TOKU_THDVAR_MEMALLOC_BUG
static
pthread_mutex_t
tokudb_map_mutex
;
static
TREE
tokudb_map
;
struct
tokudb_map_pair
{
THD
*
thd
;
char
*
last_lock_timeout
;
};
#if 50500 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 50599
static
int
tokudb_map_pair_cmp
(
void
*
custom_arg
,
const
void
*
a
,
const
void
*
b
)
{
#else
static
int
tokudb_map_pair_cmp
(
const
void
*
custom_arg
,
const
void
*
a
,
const
void
*
b
)
{
#endif
const
struct
tokudb_map_pair
*
a_key
=
(
const
struct
tokudb_map_pair
*
)
a
;
const
struct
tokudb_map_pair
*
b_key
=
(
const
struct
tokudb_map_pair
*
)
b
;
if
(
a_key
->
thd
<
b_key
->
thd
)
return
-
1
;
else
if
(
a_key
->
thd
>
b_key
->
thd
)
return
+
1
;
else
return
0
;
};
#endif
#if TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL
#if TOKU_INCLUDE_HANDLERTON_HANDLE_FATAL_SIGNAL
static
my_bool
tokudb_gdb_on_fatal
;
static
my_bool
tokudb_gdb_on_fatal
;
static
char
*
tokudb_gdb_path
;
static
char
*
tokudb_gdb_path
;
...
@@ -507,6 +530,11 @@ static int tokudb_init_func(void *p) {
...
@@ -507,6 +530,11 @@ static int tokudb_init_func(void *p) {
tokudb_primary_key_bytes_inserted
=
create_partitioned_counter
();
tokudb_primary_key_bytes_inserted
=
create_partitioned_counter
();
#if TOKU_THDVAR_MEMALLOC_BUG
tokudb_pthread_mutex_init
(
&
tokudb_map_mutex
,
MY_MUTEX_INIT_FAST
);
init_tree
(
&
tokudb_map
,
0
,
0
,
0
,
tokudb_map_pair_cmp
,
true
,
NULL
,
NULL
);
#endif
//3938: succeeded, set the init status flag and unlock
//3938: succeeded, set the init status flag and unlock
tokudb_hton_initialized
=
1
;
tokudb_hton_initialized
=
1
;
rw_unlock
(
&
tokudb_hton_initialized_lock
);
rw_unlock
(
&
tokudb_hton_initialized_lock
);
...
@@ -567,6 +595,11 @@ int tokudb_end(handlerton * hton, ha_panic_function type) {
...
@@ -567,6 +595,11 @@ int tokudb_end(handlerton * hton, ha_panic_function type) {
tokudb_primary_key_bytes_inserted
=
NULL
;
tokudb_primary_key_bytes_inserted
=
NULL
;
}
}
#if TOKU_THDVAR_MEMALLOC_BUG
tokudb_pthread_mutex_destroy
(
&
tokudb_map_mutex
);
delete_tree
(
&
tokudb_map
);
#endif
// 3938: drop the initialized flag and unlock
// 3938: drop the initialized flag and unlock
tokudb_hton_initialized
=
0
;
tokudb_hton_initialized
=
0
;
rw_unlock
(
&
tokudb_hton_initialized_lock
);
rw_unlock
(
&
tokudb_hton_initialized_lock
);
...
@@ -585,6 +618,17 @@ static int tokudb_close_connection(handlerton * hton, THD * thd) {
...
@@ -585,6 +618,17 @@ static int tokudb_close_connection(handlerton * hton, THD * thd) {
error
=
db_env
->
checkpointing_resume
(
db_env
);
error
=
db_env
->
checkpointing_resume
(
db_env
);
}
}
tokudb_my_free
(
trx
);
tokudb_my_free
(
trx
);
#if TOKU_THDVAR_MEMALLOC_BUG
tokudb_pthread_mutex_lock
(
&
tokudb_map_mutex
);
struct
tokudb_map_pair
key
=
{
thd
,
NULL
};
struct
tokudb_map_pair
*
found_key
=
(
struct
tokudb_map_pair
*
)
tree_search
(
&
tokudb_map
,
&
key
,
NULL
);
if
(
found_key
)
{
if
(
0
)
TOKUDB_TRACE
(
"thd %p %p"
,
thd
,
found_key
->
last_lock_timeout
);
tokudb_my_free
(
found_key
->
last_lock_timeout
);
tree_delete
(
&
tokudb_map
,
found_key
,
sizeof
*
found_key
,
NULL
);
}
tokudb_pthread_mutex_unlock
(
&
tokudb_map_mutex
);
#endif
return
error
;
return
error
;
}
}
...
@@ -989,10 +1033,10 @@ static bool tokudb_show_engine_status(THD * thd, stat_print_fn * stat_print) {
...
@@ -989,10 +1033,10 @@ static bool tokudb_show_engine_status(THD * thd, stat_print_fn * stat_print) {
for
(
uint64_t
row
=
0
;
row
<
num_rows
;
row
++
)
{
for
(
uint64_t
row
=
0
;
row
<
num_rows
;
row
++
)
{
switch
(
mystat
[
row
].
type
)
{
switch
(
mystat
[
row
].
type
)
{
case
FS_STATE
:
case
FS_STATE
:
snprintf
(
buf
,
bufsiz
,
"%"
PRIu64
""
,
mystat
[
row
].
value
.
num
);
snprintf
(
buf
,
bufsiz
,
"%"
PRIu64
""
,
mystat
[
row
].
value
.
num
);
break
;
break
;
case
UINT64
:
case
UINT64
:
snprintf
(
buf
,
bufsiz
,
"%"
PRIu64
""
,
mystat
[
row
].
value
.
num
);
snprintf
(
buf
,
bufsiz
,
"%"
PRIu64
""
,
mystat
[
row
].
value
.
num
);
break
;
break
;
case
CHARSTR
:
case
CHARSTR
:
snprintf
(
buf
,
bufsiz
,
"%s"
,
mystat
[
row
].
value
.
str
);
snprintf
(
buf
,
bufsiz
,
"%s"
,
mystat
[
row
].
value
.
str
);
...
@@ -1849,10 +1893,19 @@ static void tokudb_lock_timeout_callback(DB *db, uint64_t requesting_txnid, cons
...
@@ -1849,10 +1893,19 @@ static void tokudb_lock_timeout_callback(DB *db, uint64_t requesting_txnid, cons
char
*
new_lock_timeout
=
tokudb_my_strdup
(
log_str
.
c_ptr
(),
MY_FAE
);
char
*
new_lock_timeout
=
tokudb_my_strdup
(
log_str
.
c_ptr
(),
MY_FAE
);
THDVAR
(
thd
,
last_lock_timeout
)
=
new_lock_timeout
;
THDVAR
(
thd
,
last_lock_timeout
)
=
new_lock_timeout
;
tokudb_my_free
(
old_lock_timeout
);
tokudb_my_free
(
old_lock_timeout
);
#if TOKU_THDVAR_MEMALLOC_BUG
if
(
0
)
TOKUDB_TRACE
(
"thd %p %p %p"
,
thd
,
old_lock_timeout
,
new_lock_timeout
);
tokudb_pthread_mutex_lock
(
&
tokudb_map_mutex
);
struct
tokudb_map_pair
old_key
=
{
thd
,
old_lock_timeout
};
tree_delete
(
&
tokudb_map
,
&
old_key
,
sizeof
old_key
,
NULL
);
struct
tokudb_map_pair
new_key
=
{
thd
,
new_lock_timeout
};
tree_insert
(
&
tokudb_map
,
&
new_key
,
sizeof
new_key
,
NULL
);
tokudb_pthread_mutex_unlock
(
&
tokudb_map_mutex
);
#endif
}
}
// dump to stderr
// dump to stderr
if
(
lock_timeout_debug
&
2
)
{
if
(
lock_timeout_debug
&
2
)
{
fprintf
(
stderr
,
"tokudb_lock_timeout:
%s"
,
log_str
.
c_ptr
());
TOKUDB_TRACE
(
"
%s"
,
log_str
.
c_ptr
());
}
}
}
}
}
}
...
...
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