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
a4220ddc
Commit
a4220ddc
authored
Feb 26, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/my/mysql-5.0
parents
6e4c3dfe
e9643353
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
175 additions
and
183 deletions
+175
-183
innobase/include/trx0trx.h
innobase/include/trx0trx.h
+1
-5
innobase/include/trx0undo.h
innobase/include/trx0undo.h
+16
-24
innobase/trx/trx0roll.c
innobase/trx/trx0roll.c
+1
-1
innobase/trx/trx0trx.c
innobase/trx/trx0trx.c
+30
-51
innobase/trx/trx0undo.c
innobase/trx/trx0undo.c
+127
-102
No files found.
innobase/include/trx0trx.h
View file @
a4220ddc
...
...
@@ -157,7 +157,6 @@ trx_commit_for_mysql(
/*=================*/
/* out: 0 or error number */
trx_t
*
trx
);
/* in: trx handle */
/**************************************************************************
Does the transaction prepare for MySQL. */
...
...
@@ -166,7 +165,6 @@ trx_prepare_for_mysql(
/*=================*/
/* out: 0 or error number */
trx_t
*
trx
);
/* in: trx handle */
/**************************************************************************
This function is used to find number of prepared transactions and
their transaction objects for a recovery. */
...
...
@@ -177,7 +175,6 @@ trx_recover_for_mysql(
/* out: number of prepared transactions */
XID
*
xid_list
,
/* in/out: prepared transactions */
ulint
len
);
/* in: number of slots in xid_list */
/***********************************************************************
This function is used to commit one X/Open XA distributed transaction
which is in the prepared state */
...
...
@@ -185,8 +182,7 @@ trx_t *
trx_get_trx_by_xid
(
/*===============*/
/* out: trx or NULL */
XID
*
xid
);
/* in: X/Open XA Transaction Idenfication */
XID
*
xid
);
/* in: X/Open XA transaction identification */
/**************************************************************************
If required, flushes the log to disk if we called trx_commit_for_mysql()
with trx->flush_log_later == TRUE. */
...
...
innobase/include/trx0undo.h
View file @
a4220ddc
...
...
@@ -307,23 +307,6 @@ trx_undo_parse_discard_latest(
byte
*
end_ptr
,
/* in: buffer end */
page_t
*
page
,
/* in: page or NULL */
mtr_t
*
mtr
);
/* in: mtr or NULL */
/************************************************************************
Write X/Open XA Transaction Identification (XID) to undo log header */
void
trx_undo_write_xid
(
/*===============*/
trx_ulogf_t
*
log_hdr
,
/* in: undo log header */
XID
*
xid
);
/* in: X/Open XA Transaction Identification */
/************************************************************************
Read X/Open XA Transaction Identification (XID) from undo log header */
void
trx_undo_read_xid
(
/*==============*/
trx_ulogf_t
*
log_hdr
,
/* in: undo log header */
XID
*
xid
);
/* out: X/Open XA Transaction Identification */
/* Types of an undo log segment */
#define TRX_UNDO_INSERT 1
/* contains undo entries for inserts */
...
...
@@ -419,7 +402,8 @@ struct trx_undo_struct{
#define TRX_UNDO_PAGE_HDR_SIZE (6 + FLST_NODE_SIZE)
/* An update undo segment with just one page can be reused if it has
< this number bytes used */
< this number bytes used; we must leave space at least for one new undo
log header on the page */
#define TRX_UNDO_PAGE_REUSE_LIMIT (3 * UNIV_PAGE_SIZE / 4)
...
...
@@ -488,17 +472,25 @@ page of an update undo log segment. */
#define TRX_UNDO_HISTORY_NODE 34
/* If the log is put to the history
list, the file list node is here */
/*-------------------------------------------------------------*/
#define TRX_UNDO_LOG_OLD_HDR_SIZE (34 + FLST_NODE_SIZE)
/* Note: the writing of the undo log old header is coded by a log record
MLOG_UNDO_HDR_CREATE or MLOG_UNDO_HDR_REUSE. The appending of an XID to the
header is logged separately. In this sense, the XID is not really a member
of the undo log header. TODO: do not append the XID to the log header if XA
is not needed by the user. The XID wastes about 150 bytes of space in every
undo log. In the history list we may have millions of undo logs, which means
quite a large overhead. */
/* X/Open XA Transaction Identification (XID) */
#define TRX_UNDO_XA_FORMAT (
34 + FLST_NODE
_SIZE)
#define TRX_UNDO_XA_FORMAT (
TRX_UNDO_LOG_OLD_HDR
_SIZE)
#define TRX_UNDO_XA_TRID_LEN (TRX_UNDO_XA_FORMAT + 4)
#define TRX_UNDO_XA_BQUAL_LEN (TRX_UNDO_XA_TRID_LEN + 4)
#define TRX_UNDO_XA_XID (TRX_UNDO_XA_BQUAL_LEN + 4)
#define TRX_UNDO_XA_LEN (TRX_UNDO_XA_XID + XIDDATASIZE)
/*-------------------------------------------------------------*/
#define TRX_UNDO_LOG_HDR_SIZE (TRX_UNDO_XA_LEN)
/*-------------------------------------------------------------*/
/*--------------------------------------------------------------*/
#define TRX_UNDO_LOG_XA_HDR_SIZE (TRX_UNDO_XA_XID + XIDDATASIZE)
/* Total size of the header with the XA XID */
#ifndef UNIV_NONINL
#include "trx0undo.ic"
...
...
innobase/trx/trx0roll.c
View file @
a4220ddc
...
...
@@ -950,7 +950,7 @@ trx_roll_pop_top_rec_of_trx(
if
(
progress_pct
!=
trx_roll_progress_printed_pct
)
{
if
(
trx_roll_progress_printed_pct
==
0
)
{
fprintf
(
stderr
,
"
\n
InnoDB: Progress in percents: %lu
\n
"
,
(
ulong
)
progress_pct
);
"
\n
InnoDB: Progress in percents: %lu"
,
(
ulong
)
progress_pct
);
}
else
{
fprintf
(
stderr
,
" %lu"
,
(
ulong
)
progress_pct
);
...
...
innobase/trx/trx0trx.c
View file @
a4220ddc
...
...
@@ -162,7 +162,7 @@ trx_create(
trx
->
read_view
=
NULL
;
/* Set X/Open XA transaction identification to NULL */
memset
(
&
trx
->
xid
,
0
,
sizeof
(
trx
->
xid
));
memset
(
&
trx
->
xid
,
0
,
sizeof
(
trx
->
xid
));
trx
->
xid
.
formatID
=
-
1
;
return
(
trx
);
...
...
@@ -436,16 +436,12 @@ trx_lists_init_at_db_start(void)
if
(
undo
->
state
==
TRX_UNDO_PREPARED
)
{
fprintf
(
stderr
,
"InnoDB: Transaction %lu %lu was in the XA prepared state. We change it to
\n
"
"InnoDB: the 'active' state, so that InnoDB's true-and-tested crash
\n
"
"InnoDB: recovery will roll it back. If mysqld refuses to start after
\n
"
"InnoDB: this, you may be able to resolve the problem by moving the binlog
\n
"
"InnoDB: files to a safe place, and deleting all binlog files and the binlog
\n
"
"InnoDB: .index file from the datadir.
\n
"
,
ut_dulint_get_high
(
trx
->
id
),
ut_dulint_get_low
(
trx
->
id
));
"InnoDB: Transaction %lu %lu was in the XA prepared state.
\n
"
,
ut_dulint_get_high
(
trx
->
id
),
ut_dulint_get_low
(
trx
->
id
));
/*
trx->conc_state = TRX_PREPARED; */
trx
->
conc_state
=
/*
trx->conc_state = TRX_PREPARED; */
trx
->
conc_state
=
TRX_ACTIVE
;
}
else
{
trx
->
conc_state
=
...
...
@@ -504,13 +500,9 @@ trx_lists_init_at_db_start(void)
if
(
undo
->
state
==
TRX_UNDO_PREPARED
)
{
fprintf
(
stderr
,
"InnoDB: Transaction %lu %lu was in the XA prepared state. We change it to
\n
"
"InnoDB: the 'active' state, so that InnoDB's true-and-tested crash
\n
"
"InnoDB: recovery will roll it back. If mysqld refuses to start after
\n
"
"InnoDB: this, you may be able to resolve the problem by moving the binlog
\n
"
"InnoDB: files to a safe place, and deleting all binlog files and the binlog
\n
"
"InnoDB: .index file from the datadir.
\n
"
,
ut_dulint_get_high
(
trx
->
id
),
ut_dulint_get_low
(
trx
->
id
));
"InnoDB: Transaction %lu %lu was in the XA prepared state.
\n
"
,
ut_dulint_get_high
(
trx
->
id
),
ut_dulint_get_low
(
trx
->
id
));
/* trx->conc_state = TRX_PREPARED; */
trx
->
conc_state
=
...
...
@@ -786,8 +778,8 @@ trx_commit_off_kernel(
mutex_enter
(
&
kernel_mutex
);
}
ut_ad
(
trx
->
conc_state
==
TRX_ACTIVE
||
trx
->
conc_state
==
TRX_PREPARED
);
ut_ad
(
trx
->
conc_state
==
TRX_ACTIVE
||
trx
->
conc_state
==
TRX_PREPARED
);
#ifdef UNIV_SYNC_DEBUG
ut_ad
(
mutex_own
(
&
kernel_mutex
));
#endif
/* UNIV_SYNC_DEBUG */
...
...
@@ -1744,10 +1736,10 @@ trx_prepare_off_kernel(
trx_t
*
trx
)
/* in: transaction */
{
page_t
*
update_hdr_page
;
dulint
lsn
;
trx_rseg_t
*
rseg
;
trx_undo_t
*
undo
;
ibool
must_flush_log
=
FALSE
;
dulint
lsn
;
mtr_t
mtr
;
#ifdef UNIV_SYNC_DEBUG
...
...
@@ -1765,35 +1757,36 @@ trx_prepare_off_kernel(
must_flush_log
=
TRUE
;
/* Change the undo log segment states from TRX_UNDO_ACTIVE
to some other state: these modifications to the file data
structure define the transaction as prepared in the file
based world, at the serialization point of the log sequence
number lsn obtained below. */
to TRX_UNDO_PREPARED: these modifications to the file data
structure define the transaction as prepared in the
file-based world, at the serialization point of lsn. */
mutex_enter
(
&
(
rseg
->
mutex
));
if
(
trx
->
insert_undo
!=
NULL
)
{
trx_undo_set_state_at_prepare
(
trx
,
trx
->
insert_undo
,
&
mtr
);
&
mtr
);
}
undo
=
trx
->
update_undo
;
if
(
undo
)
{
/* It is not necessary to obtain trx->undo_mutex here
because only a single OS thread is allowed to do the
transaction prepare for this transaction. */
update_hdr_page
=
trx_undo_set_state_at_prepare
(
trx
,
undo
,
&
mtr
);
update_hdr_page
=
trx_undo_set_state_at_prepare
(
trx
,
undo
,
&
mtr
);
}
mutex_exit
(
&
(
rseg
->
mutex
));
/*--------------*/
mtr_commit
(
&
mtr
);
mtr_commit
(
&
mtr
);
/* This mtr commit makes the
transaction prepared in the file-based
world */
/*--------------*/
lsn
=
mtr
.
end_lsn
;
lsn
=
mtr
.
end_lsn
;
mutex_enter
(
&
kernel_mutex
);
}
...
...
@@ -1806,13 +1799,6 @@ trx_prepare_off_kernel(
trx
->
conc_state
=
TRX_PREPARED
;
/*--------------------------------------*/
if
(
trx
->
read_view
)
{
read_view_close
(
trx
->
read_view
);
mem_heap_empty
(
trx
->
read_view_heap
);
trx
->
read_view
=
NULL
;
}
if
(
must_flush_log
)
{
mutex_exit
(
&
kernel_mutex
);
...
...
@@ -1834,7 +1820,7 @@ Does the transaction prepare for MySQL. */
ulint
trx_prepare_for_mysql
(
/*=================*/
/*====
-
=============*/
/* out: 0 or error number */
trx_t
*
trx
)
/* in: trx handle */
{
...
...
@@ -1881,9 +1867,8 @@ trx_recover_for_mysql(
fprintf
(
stderr
,
" InnoDB: Starting recovery for XA transactions...
\n
"
);
/* We should set those transactions which are in
the prepared state to the xid_list */
/* We should set those transactions which are in the prepared state
to the xid_list */
mutex_enter
(
&
kernel_mutex
);
...
...
@@ -1891,14 +1876,7 @@ trx_recover_for_mysql(
while
(
trx
)
{
if
(
trx
->
conc_state
==
TRX_PREPARED
)
{
xid_list
[
count
].
formatID
=
trx
->
xid
.
formatID
;
xid_list
[
count
].
gtrid_length
=
trx
->
xid
.
gtrid_length
;
xid_list
[
count
].
bqual_length
=
trx
->
xid
.
bqual_length
;
memcpy
(
xid_list
[
count
].
data
,
trx
->
xid
.
data
,
trx
->
xid
.
gtrid_length
+
trx
->
xid
.
bqual_length
);
xid_list
[
count
]
=
trx
->
xid
;
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
...
...
@@ -1935,15 +1913,16 @@ trx_recover_for_mysql(
This function is used to find one X/Open XA distributed transaction
which is in the prepared state */
trx_t
*
trx_t
*
trx_get_trx_by_xid
(
/*===============*/
/* out: trx or NULL */
XID
*
xid
)
/*
in: X/Open XA Transaction Iden
fication */
XID
*
xid
)
/*
in: X/Open XA transaction identi
fication */
{
trx_t
*
trx
;
if
(
xid
==
NULL
)
{
return
(
NULL
);
}
...
...
@@ -1972,6 +1951,7 @@ trx_get_trx_by_xid(
if
(
trx
)
{
if
(
trx
->
conc_state
!=
TRX_PREPARED
)
{
return
(
NULL
);
}
...
...
@@ -1980,4 +1960,3 @@ trx_get_trx_by_xid(
return
(
NULL
);
}
}
innobase/trx/trx0undo.c
View file @
a4220ddc
This diff is collapsed.
Click to expand it.
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