Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zodbtools
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
Jérome Perrin
zodbtools
Commits
cdfd5a52
Commit
cdfd5a52
authored
Apr 15, 2023
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zodbsync: new command to replicate storage
parent
7ae5ff82
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
133 additions
and
2 deletions
+133
-2
README.rst
README.rst
+3
-1
zodbtools/zodb.py
zodbtools/zodb.py
+1
-1
zodbtools/zodbsync.py
zodbtools/zodbsync.py
+129
-0
No files found.
README.rst
View file @
cdfd5a52
...
...
@@ -12,5 +12,7 @@ __ https://github.com/zopefoundation/ZODB/pull/128#issuecomment-260970932
- `zodb cmp` - compare content of two ZODB databases bit-to-bit.
- `zodb commit` - commit new transaction into a ZODB database.
- `zodb dump` - dump content of a ZODB database.
- `zodb restore` - restore content of a ZODB database.
- `zodb info` - print general information about a ZODB database.
- `zodb restore` - restore content of a ZODB database.
- `zodb sync` - copy transactions from one ZODB database to another one (
a high level interface to `zodb dump` and `zodb restore`)
zodbtools/zodb.py
View file @
cdfd5a52
...
...
@@ -37,7 +37,7 @@ def register_command(cmdname):
command_module
=
importlib
.
import_module
(
'zodbtools.zodb'
+
cmdname
)
command_dict
[
cmdname
]
=
command_module
for
_
in
(
'analyze'
,
'cmp'
,
'commit'
,
'dump'
,
'info'
,
'restore'
):
for
_
in
(
'analyze'
,
'cmp'
,
'commit'
,
'dump'
,
'info'
,
'restore'
,
'sync'
):
register_command
(
_
)
...
...
zodbtools/zodbsync.py
0 → 100644
View file @
cdfd5a52
# coding: utf-8
# Copyright (C) 2023 Nexedi SA and Contributors.
# Jérome Perrin <jerome@nexedi.com>
#
# This program is free software: you can Use, Study, Modify and Redistribute
# it under the terms of the GNU General Public License version 3, or (at your
# option) any later version, as published by the Free Software Foundation.
#
# You can also Link and Combine this program with other software covered by
# the terms of any of the Free Software licenses or any of the Open Source
# Initiative approved licenses and Convey the resulting work. Corresponding
# source of such a combination shall include the source code for all other
# software used.
#
# This program is distributed WITHOUT ANY WARRANTY; without even the implied
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# See COPYING file for full licensing terms.
# See https://www.nexedi.com/licensing for rationale and options.
"""Zodbsync - Replicate a primary ZODB storage into a secondary storage
"""
from
__future__
import
print_function
from
zodbtools.zodbcommit
import
zodbcommit
from
zodbtools.zodbdump
import
Transaction
,
ObjectCopy
,
ObjectData
,
ObjectDelete
from
zodbtools.util
import
ashex
,
parse_tid
,
storageFromURL
,
txnobjv
from
ZODB.interfaces
import
IStorageIteration
from
ZODB.utils
import
z64
,
readable_tid_repr
from
golang
import
func
,
defer
def
zodbsync
(
primary_store
,
secondary_store
,
until
,
verbosity
):
at
=
secondary_store
.
lastTransaction
()
if
verbosity
>
1
:
print
(
'primary at'
,
readable_tid_repr
(
primary_store
.
lastTransaction
()))
print
(
'secondary at'
,
readable_tid_repr
(
at
))
print
(
"replicating from"
,
readable_tid_repr
(
at
),
end
=
''
)
if
until
:
print
(
"until"
,
readable_tid_repr
(
until
),
end
=
''
)
print
()
for
t
in
primary_store
.
iterator
(
start
=
at
,
stop
=
until
):
if
t
.
tid
<=
at
and
at
!=
z64
:
if
verbosity
>
1
:
print
(
"skipping already present"
,
readable_tid_repr
(
at
))
continue
objv
=
[]
for
obj
in
txnobjv
(
t
):
if
obj
.
data
is
None
:
objv
.
append
(
ObjectDelete
(
obj
.
oid
))
elif
obj
.
data_txn
is
not
None
:
objv
.
append
(
ObjectCopy
(
obj
.
oid
,
obj
.
data_txn
))
else
:
objv
.
append
(
ObjectData
(
obj
.
oid
,
obj
.
data
,
'null'
,
None
))
txn
=
Transaction
(
t
.
tid
,
t
.
status
,
t
.
user
,
t
.
description
,
t
.
extension_bytes
,
objv
)
zodbcommit
(
secondary_store
,
at
,
txn
)
if
verbosity
>
1
:
print
(
readable_tid_repr
(
txn
.
tid
),
t
.
user
,
t
.
description
,
len
(
objv
))
elif
verbosity
>
0
:
print
(
readable_tid_repr
(
txn
.
tid
))
at
=
txn
.
tid
# ----------------------------------------
import
sys
,
getopt
summary
=
"Replicate a primary ZODB storage into a secondary storage"
def
usage
(
out
):
print
(
"""
\
Usage: zodb sync [OPTIONS] <primary-storage> <secondary-storage> [<until>]
Replicate transactions from a primary storage into a secondary storage.
<primary-storage> and <secondary-storage> are URLs (see 'zodb help zurl')
of ZODB-storages.
<until> is transaction ID until when transactions should be copied, this
equivalent to ..<until> tidrange, see 'zodb help tidrange'
Options:
-v --verbose increase verbosity (can be passed multiple times)
-h --help show this help
"""
,
file
=
out
)
@
func
def
main
(
argv
):
try
:
optv
,
argv
=
getopt
.
getopt
(
argv
[
1
:],
"hv"
,
[
"help"
,
"verbose"
])
except
getopt
.
GetoptError
as
e
:
print
(
e
,
file
=
sys
.
stderr
)
usage
(
sys
.
stderr
)
sys
.
exit
(
2
)
verbosity
=
0
for
opt
,
_
in
optv
:
if
opt
in
(
"-h"
,
"--help"
):
usage
(
sys
.
stdout
)
sys
.
exit
(
0
)
if
opt
in
(
"-v"
,
"--verbose"
):
verbosity
+=
1
if
len
(
argv
)
not
in
(
2
,
3
):
usage
(
sys
.
stderr
)
sys
.
exit
(
2
)
primary_store
=
storageFromURL
(
argv
[
0
],
read_only
=
True
)
defer
(
primary_store
.
close
)
secondary_store
=
storageFromURL
(
argv
[
1
])
defer
(
secondary_store
.
close
)
until
=
parse_tid
(
argv
[
2
])
if
len
(
argv
)
==
3
else
None
zodbsync
(
primary_store
,
secondary_store
,
until
,
verbosity
)
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