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
4a5f9b47
Commit
4a5f9b47
authored
Apr 12, 2006
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb:
freeing non freed objects on server shutdown corrected timeout handling on schema events
parent
7c911106
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
87 additions
and
54 deletions
+87
-54
sql/ha_ndbcluster_binlog.cc
sql/ha_ndbcluster_binlog.cc
+87
-54
No files found.
sql/ha_ndbcluster_binlog.cc
View file @
4a5f9b47
...
...
@@ -1228,7 +1228,7 @@ end:
struct
timespec
abstime
;
int
i
;
set_timespec
(
abstime
,
1
);
(
void
)
pthread_cond_timedwait
(
&
injector_cond
,
int
ret
=
pthread_cond_timedwait
(
&
injector_cond
,
&
ndb_schema_object
->
mutex
,
&
abstime
);
...
...
@@ -1252,6 +1252,8 @@ end:
if
(
bitmap_is_clear_all
(
&
ndb_schema_object
->
slock_bitmap
))
break
;
if
(
ret
)
{
max_timeout
--
;
if
(
max_timeout
==
0
)
{
...
...
@@ -1263,6 +1265,7 @@ end:
ndb_report_waiting
(
type_str
,
max_timeout
,
"distributing"
,
ndb_schema_object
->
key
);
}
}
(
void
)
pthread_mutex_unlock
(
&
ndb_schema_object
->
mutex
);
}
...
...
@@ -2445,7 +2448,6 @@ ndbcluster_create_event_ops(NDB_SHARE *share, const NDBTAB *ndbtab,
}
if
(
!
op
)
{
pthread_mutex_unlock
(
&
injector_mutex
);
sql_print_error
(
"NDB Binlog: Creating NdbEventOperation failed for"
" %s"
,
event_name
);
push_warning_printf
(
current_thd
,
MYSQL_ERROR
::
WARN_LEVEL_ERROR
,
...
...
@@ -2453,6 +2455,7 @@ ndbcluster_create_event_ops(NDB_SHARE *share, const NDBTAB *ndbtab,
ndb
->
getNdbError
().
code
,
ndb
->
getNdbError
().
message
,
"NDB"
);
pthread_mutex_unlock
(
&
injector_mutex
);
DBUG_RETURN
(
-
1
);
}
...
...
@@ -2635,21 +2638,24 @@ ndbcluster_handle_drop_table(Ndb *ndb, const char *event_name,
{
struct
timespec
abstime
;
set_timespec
(
abstime
,
1
);
(
void
)
pthread_cond_timedwait
(
&
injector_cond
,
int
ret
=
pthread_cond_timedwait
(
&
injector_cond
,
&
share
->
mutex
,
&
abstime
);
max_timeout
--
;
if
(
share
->
op
==
0
)
break
;
if
(
ret
)
{
max_timeout
--
;
if
(
max_timeout
==
0
)
{
sql_print_error
(
"NDB delete table: timed out. Ignoring..."
);
sql_print_error
(
"NDB %s: timed out. Ignoring..."
,
type_str
);
break
;
}
if
(
ndb_extra_logging
)
ndb_report_waiting
(
type_str
,
max_timeout
,
type_str
,
share
->
key
);
}
}
(
void
)
pthread_mutex_unlock
(
&
share
->
mutex
);
#else
(
void
)
pthread_mutex_lock
(
&
share
->
mutex
);
...
...
@@ -2711,7 +2717,8 @@ static int ndb_binlog_thread_handle_error(Ndb *ndb, NdbEventOperation *pOp,
}
static
int
ndb_binlog_thread_handle_non_data_event
(
Ndb
*
ndb
,
NdbEventOperation
*
pOp
,
ndb_binlog_thread_handle_non_data_event
(
THD
*
thd
,
Ndb
*
ndb
,
NdbEventOperation
*
pOp
,
Binlog_index_row
&
row
)
{
NDB_SHARE
*
share
=
(
NDB_SHARE
*
)
pOp
->
getCustomData
();
...
...
@@ -2720,7 +2727,7 @@ ndb_binlog_thread_handle_non_data_event(Ndb *ndb, NdbEventOperation *pOp,
/* make sure to flush any pending events as they can be dependent
on one of the tables being changed below
*/
injector_
thd
->
binlog_flush_pending_rows_event
(
true
);
thd
->
binlog_flush_pending_rows_event
(
true
);
switch
(
type
)
{
...
...
@@ -2777,7 +2784,7 @@ ndb_binlog_thread_handle_non_data_event(Ndb *ndb, NdbEventOperation *pOp,
return
0
;
}
ndb_handle_schema_change
(
injector_
thd
,
ndb
,
pOp
,
share
);
ndb_handle_schema_change
(
thd
,
ndb
,
pOp
,
share
);
return
0
;
}
...
...
@@ -3057,7 +3064,8 @@ static void ndb_free_schema_object(NDB_SCHEMA_OBJECT **ndb_schema_object,
pthread_handler_t
ndb_binlog_thread_func
(
void
*
arg
)
{
THD
*
thd
;
/* needs to be first for thread_stack */
Ndb
*
ndb
=
0
;
Ndb
*
i_ndb
=
0
;
Ndb
*
s_ndb
=
0
;
Thd_ndb
*
thd_ndb
=
0
;
int
ndb_update_binlog_index
=
1
;
injector
*
inj
=
injector
::
instance
();
...
...
@@ -3109,16 +3117,16 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
pthread_mutex_unlock
(
&
LOCK_thread_count
);
thd
->
lex
->
start_transaction_opt
=
0
;
if
(
!
(
s
chema
_ndb
=
new
Ndb
(
g_ndb_cluster_connection
,
""
))
||
s
chema
_ndb
->
init
())
if
(
!
(
s_ndb
=
new
Ndb
(
g_ndb_cluster_connection
,
""
))
||
s_ndb
->
init
())
{
sql_print_error
(
"NDB Binlog: Getting Schema Ndb object failed"
);
goto
err
;
}
// empty database
if
(
!
(
ndb
=
new
Ndb
(
g_ndb_cluster_connection
,
""
))
||
ndb
->
init
())
if
(
!
(
i_
ndb
=
new
Ndb
(
g_ndb_cluster_connection
,
""
))
||
i_
ndb
->
init
())
{
sql_print_error
(
"NDB Binlog: Getting Ndb object failed"
);
ndb_binlog_thread_running
=
-
1
;
...
...
@@ -3139,7 +3147,8 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
pthread_mutex_lock(&injector_mutex);
*/
injector_thd
=
thd
;
injector_ndb
=
ndb
;
injector_ndb
=
i_ndb
;
schema_ndb
=
s_ndb
;
ndb_binlog_thread_running
=
1
;
if
(
opt_bin_log
)
{
...
...
@@ -3221,14 +3230,14 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
int
res
=
0
,
tot_poll_wait
=
1000
;
if
(
ndb_binlog_running
)
{
res
=
ndb
->
pollEvents
(
tot_poll_wait
,
&
gci
);
res
=
i_
ndb
->
pollEvents
(
tot_poll_wait
,
&
gci
);
tot_poll_wait
=
0
;
}
int
schema_res
=
s
chema
_ndb
->
pollEvents
(
tot_poll_wait
,
&
schema_gci
);
int
schema_res
=
s_ndb
->
pollEvents
(
tot_poll_wait
,
&
schema_gci
);
ndb_latest_received_binlog_epoch
=
gci
;
while
(
gci
>
schema_gci
&&
schema_res
>=
0
)
schema_res
=
s
chema
_ndb
->
pollEvents
(
10
,
&
schema_gci
);
schema_res
=
s_ndb
->
pollEvents
(
10
,
&
schema_gci
);
if
((
abort_loop
||
do_ndbcluster_binlog_close_connection
)
&&
(
ndb_latest_handled_binlog_epoch
>=
g_latest_trans_gci
||
...
...
@@ -3256,11 +3265,11 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
if
(
unlikely
(
schema_res
>
0
))
{
thd
->
proc_info
=
"Processing events from schema table"
;
s
chema
_ndb
->
s_ndb
->
setReportThreshEventGCISlip
(
ndb_report_thresh_binlog_epoch_slip
);
s
chema
_ndb
->
s_ndb
->
setReportThreshEventFreeMem
(
ndb_report_thresh_binlog_mem_usage
);
NdbEventOperation
*
pOp
=
s
chema
_ndb
->
nextEvent
();
NdbEventOperation
*
pOp
=
s_ndb
->
nextEvent
();
while
(
pOp
!=
NULL
)
{
if
(
!
pOp
->
hasError
())
...
...
@@ -3273,7 +3282,7 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
"binlog schema event"
,
(
ulong
)
pOp
->
getNdbError
().
code
,
pOp
->
getNdbError
().
message
);
pOp
=
s
chema
_ndb
->
nextEvent
();
pOp
=
s_ndb
->
nextEvent
();
}
}
...
...
@@ -3285,7 +3294,7 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
int
event_count
=
0
;
#endif
thd
->
proc_info
=
"Processing events"
;
NdbEventOperation
*
pOp
=
ndb
->
nextEvent
();
NdbEventOperation
*
pOp
=
i_
ndb
->
nextEvent
();
Binlog_index_row
row
;
while
(
pOp
!=
NULL
)
{
...
...
@@ -3296,9 +3305,9 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
!
IS_NDB_BLOB_PREFIX
(
pOp
->
getEvent
()
->
getTable
()
->
getName
()));
DBUG_ASSERT
(
gci
<=
ndb_latest_received_binlog_epoch
);
ndb
->
i_
ndb
->
setReportThreshEventGCISlip
(
ndb_report_thresh_binlog_epoch_slip
);
ndb
->
setReportThreshEventFreeMem
(
ndb_report_thresh_binlog_mem_usage
);
i_
ndb
->
setReportThreshEventFreeMem
(
ndb_report_thresh_binlog_mem_usage
);
bzero
((
char
*
)
&
row
,
sizeof
(
row
));
injector
::
transaction
trans
;
...
...
@@ -3307,7 +3316,7 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
Uint32
iter
=
0
;
const
NdbEventOperation
*
gci_op
;
Uint32
event_types
;
while
((
gci_op
=
ndb
->
getGCIEventOperations
(
&
iter
,
&
event_types
))
while
((
gci_op
=
i_
ndb
->
getGCIEventOperations
(
&
iter
,
&
event_types
))
!=
NULL
)
{
NDB_SHARE
*
share
=
(
NDB_SHARE
*
)
gci_op
->
getCustomData
();
...
...
@@ -3393,7 +3402,7 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
event_count
++
;
#endif
if
(
pOp
->
hasError
()
&&
ndb_binlog_thread_handle_error
(
ndb
,
pOp
,
row
)
<
0
)
ndb_binlog_thread_handle_error
(
i_
ndb
,
pOp
,
row
)
<
0
)
goto
err
;
#ifndef DBUG_OFF
...
...
@@ -3413,7 +3422,7 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
Uint32
iter
=
0
;
const
NdbEventOperation
*
gci_op
;
Uint32
event_types
;
while
((
gci_op
=
ndb
->
getGCIEventOperations
(
&
iter
,
&
event_types
))
while
((
gci_op
=
i_
ndb
->
getGCIEventOperations
(
&
iter
,
&
event_types
))
!=
NULL
)
{
if
(
gci_op
==
pOp
)
...
...
@@ -3425,19 +3434,19 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
#endif
if
((
unsigned
)
pOp
->
getEventType
()
<
(
unsigned
)
NDBEVENT
::
TE_FIRST_NON_DATA_EVENT
)
ndb_binlog_thread_handle_data_event
(
ndb
,
pOp
,
row
,
trans
);
ndb_binlog_thread_handle_data_event
(
i_
ndb
,
pOp
,
row
,
trans
);
else
{
// set injector_ndb database/schema from table internal name
int
ret
=
ndb
->
setDatabaseAndSchemaName
(
pOp
->
getEvent
()
->
getTable
());
i_
ndb
->
setDatabaseAndSchemaName
(
pOp
->
getEvent
()
->
getTable
());
DBUG_ASSERT
(
ret
==
0
);
ndb_binlog_thread_handle_non_data_event
(
ndb
,
pOp
,
row
);
ndb_binlog_thread_handle_non_data_event
(
thd
,
i_
ndb
,
pOp
,
row
);
// reset to catch errors
ndb
->
setDatabaseName
(
""
);
i_
ndb
->
setDatabaseName
(
""
);
}
pOp
=
ndb
->
nextEvent
();
pOp
=
i_
ndb
->
nextEvent
();
}
while
(
pOp
&&
pOp
->
getGCI
()
==
gci
);
/*
...
...
@@ -3495,7 +3504,9 @@ err:
close_thread_tables
(
thd
);
pthread_mutex_lock
(
&
injector_mutex
);
/* don't mess with the injector_ndb anymore from other threads */
injector_thd
=
0
;
injector_ndb
=
0
;
schema_ndb
=
0
;
pthread_mutex_unlock
(
&
injector_mutex
);
thd
->
db
=
0
;
// as not to try to free memory
sql_print_information
(
"Stopping Cluster Binlog"
);
...
...
@@ -3512,21 +3523,43 @@ err:
}
/* remove all event operations */
if
(
ndb
)
if
(
s_
ndb
)
{
NdbEventOperation
*
op
;
DBUG_PRINT
(
"info"
,(
"removing all event operations"
));
while
((
op
=
ndb
->
getEventOperation
()))
while
((
op
=
s_
ndb
->
getEventOperation
()))
{
DBUG_ASSERT
(
!
IS_NDB_BLOB_PREFIX
(
op
->
getEvent
()
->
getTable
()
->
getName
()));
DBUG_PRINT
(
"info"
,(
"removing event operation on %s"
,
op
->
getEvent
()
->
getName
()));
NDB_SHARE
*
share
=
(
NDB_SHARE
*
)
op
->
getCustomData
();
DBUG_ASSERT
(
share
->
op
==
op
||
share
->
op_old
==
op
);
share
->
op
=
share
->
op_old
=
0
;
free_share
(
&
share
);
ndb
->
dropEventOperation
(
op
);
s_ndb
->
dropEventOperation
(
op
);
}
delete
s_ndb
;
s_ndb
=
0
;
}
if
(
i_ndb
)
{
NdbEventOperation
*
op
;
DBUG_PRINT
(
"info"
,(
"removing all event operations"
));
while
((
op
=
i_ndb
->
getEventOperation
()))
{
DBUG_ASSERT
(
!
IS_NDB_BLOB_PREFIX
(
op
->
getEvent
()
->
getTable
()
->
getName
()));
DBUG_PRINT
(
"info"
,(
"removing event operation on %s"
,
op
->
getEvent
()
->
getName
()));
NDB_SHARE
*
share
=
(
NDB_SHARE
*
)
op
->
getCustomData
();
DBUG_ASSERT
(
share
->
op
==
op
||
share
->
op_old
==
op
);
share
->
op
=
share
->
op_old
=
0
;
free_share
(
&
share
);
i_ndb
->
dropEventOperation
(
op
);
}
delete
ndb
;
ndb
=
0
;
delete
i_
ndb
;
i_
ndb
=
0
;
}
hash_free
(
&
ndb_schema_objects
);
...
...
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