Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
c713192c
Commit
c713192c
authored
8 years ago
by
Vladimir Davydov
Committed by
Roman Tsisyk
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
xctl: don't remove log left from prev checkpoint
It will be used for backups.
parent
96cdc943
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/box/xctl.c
+17
-5
17 additions, 5 deletions
src/box/xctl.c
with
17 additions
and
5 deletions
src/box/xctl.c
+
17
−
5
View file @
c713192c
...
...
@@ -138,6 +138,8 @@ struct xctl {
char
vinyl_dir
[
PATH_MAX
];
/** Last checkpoint vclock. */
struct
vclock
last_checkpoint
;
/** Next to last checkpoint vclock. */
struct
vclock
prev_checkpoint
;
/** Recovery context. */
struct
xctl_recovery
*
recovery
;
/** Latch protecting the log buffer. */
...
...
@@ -817,10 +819,10 @@ xctl_end_recovery(void)
* from a backup we need to rotate the log to keep checkpoint
* and xctl signatures in sync.
*/
struct
vclock
xctl_vclock
;
if
(
xdir_last_vclock
(
&
xctl
.
dir
,
&
xctl_vclock
)
<
0
||
vclock_compare
(
&
xctl_
vclock
,
&
xctl
.
last_checkpoint
)
!=
0
)
{
struct
vclock
*
vclock
=
malloc
(
sizeof
(
*
vclock
));
struct
vclock
*
vclock
=
vclockset_last
(
&
xctl
.
dir
.
index
)
;
if
(
vclock
==
NULL
||
vclock_compare
(
vclock
,
&
xctl
.
last_checkpoint
)
!=
0
)
{
vclock
=
malloc
(
sizeof
(
*
vclock
));
if
(
vclock
==
NULL
)
{
diag_set
(
OutOfMemory
,
sizeof
(
*
vclock
),
"malloc"
,
"struct vclock"
);
...
...
@@ -832,6 +834,10 @@ xctl_end_recovery(void)
return
-
1
;
}
vclock
=
vclockset_prev
(
&
xctl
.
dir
.
index
,
vclock
);
if
(
vclock
!=
NULL
)
vclock_copy
(
&
xctl
.
prev_checkpoint
,
vclock
);
/*
* If the instance is shut down while a dump/compaction task
* is in progress, we'll get an unfinished run file on disk,
...
...
@@ -989,6 +995,7 @@ xctl_rotate(const struct vclock *vclock)
* automatically on the first write (see wal_write_xctl()).
*/
wal_rotate_xctl
();
vclock_copy
(
&
xctl
.
prev_checkpoint
,
&
xctl
.
last_checkpoint
);
vclock_copy
(
&
xctl
.
last_checkpoint
,
vclock
);
/* Add the new vclock to the xdir so that we can track it. */
...
...
@@ -1051,7 +1058,12 @@ xctl_collect_garbage(int64_t signature)
diag_last_error
(
diag_get
())
->
errmsg
);
}
/* Delete old log files. */
/*
* Delete old log files.
* Always keep the previous file, because
* it is still needed for backups.
*/
signature
=
MIN
(
signature
,
vclock_sum
(
&
xctl
.
prev_checkpoint
));
coio_call
(
xctl_collect_garbage_f
,
signature
);
say_debug
(
"%s: done"
,
__func__
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment