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
Levin Zimmermann
zodbtools
Commits
1e506a81
Commit
1e506a81
authored
Nov 17, 2016
by
Kazuhiko Shiozaki
Committed by
Kirill Smelkov
Nov 17, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zodbanalyze: now supports both FileStorage and repozo deltafs
/reviewed-on
nexedi/zodbtools!1
/see-also
nexedi/slapos!116
parent
ab17cf2d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
140 additions
and
62 deletions
+140
-62
README.rst
README.rst
+1
-0
setup.py
setup.py
+3
-2
zodbtool/zodbanalyze.py
zodbtool/zodbanalyze.py
+136
-60
No files found.
README.rst
View file @
1e506a81
...
@@ -8,5 +8,6 @@ scripts anymore. So we are here:
...
@@ -8,5 +8,6 @@ scripts anymore. So we are here:
__ https://github.com/zopefoundation/ZODB/pull/128#issuecomment-260970932
__ https://github.com/zopefoundation/ZODB/pull/128#issuecomment-260970932
- `zodbanalyze` - analyze FileStorage or repozo deltafs usage.
- `zodbcmp` - compare content of two ZODB databases bit-to-bit.
- `zodbcmp` - compare content of two ZODB databases bit-to-bit.
- `zodbdump` - dump content of a ZODB database.
- `zodbdump` - dump content of a ZODB database.
setup.py
View file @
1e506a81
...
@@ -26,6 +26,7 @@ setup(
...
@@ -26,6 +26,7 @@ setup(
# zodb cmd ...
# zodb cmd ...
# zodb dump ...
# zodb dump ...
entry_points
=
{
'console_scripts'
:
[
entry_points
=
{
'console_scripts'
:
[
'zodbanalyze = zodbtool.zodbanalyze:main'
,
'zodbcmp = zodbtool.zodbcmp:main'
,
'zodbcmp = zodbtool.zodbcmp:main'
,
'zodbdump = zodbtool.zodbdump:main'
,
'zodbdump = zodbtool.zodbdump:main'
,
]
]
...
...
zodbtool/zodbanalyze.py
View file @
1e506a81
#!/usr/bin/env python
2.4
#!/usr/bin/env python
# Based on a transaction analyzer by Matt Kromer.
# Based on a transaction analyzer by Matt Kromer.
...
@@ -8,12 +8,43 @@ import getopt
...
@@ -8,12 +8,43 @@ import getopt
import
anydbm
as
dbm
import
anydbm
as
dbm
import
tempfile
import
tempfile
import
shutil
import
shutil
from
ZODB.FileStorage
import
FileStorage
from
ZODB.FileStorage
import
FileIterator
,
FileStorage
,
packed_version
from
ZODB.FileStorage.format
import
FileStorageFormatter
from
ZODB.utils
import
get_pickle_metadata
from
ZODB.utils
import
get_pickle_metadata
class
DeltaFileStorage
(
FileStorageFormatter
,
):
def
__init__
(
self
,
file_name
,
**
kw
):
self
.
_file_name
=
file_name
def
iterator
(
self
,
start
=
None
,
stop
=
None
):
return
DeltaFileIterator
(
self
.
_file_name
,
start
,
stop
)
class
DeltaFileIterator
(
FileIterator
):
def
__init__
(
self
,
filename
,
start
=
None
,
stop
=
None
,
pos
=
0L
):
assert
isinstance
(
filename
,
str
)
file
=
open
(
filename
,
'rb'
)
self
.
_file
=
file
file
.
seek
(
0
,
2
)
self
.
_file_size
=
file
.
tell
()
if
pos
>
self
.
_file_size
:
raise
ValueError
(
"Given position is greater than the file size"
,
pos
,
self
.
_file_size
)
self
.
_pos
=
pos
assert
start
is
None
or
isinstance
(
start
,
str
)
assert
stop
is
None
or
isinstance
(
stop
,
str
)
self
.
_start
=
start
self
.
_stop
=
stop
if
start
:
if
self
.
_file_size
<=
4
:
return
self
.
_skip_to_start
(
start
)
class
Report
:
class
Report
:
def
__init__
(
self
,
use_dbm
=
False
):
def
__init__
(
self
,
use_dbm
=
False
,
delta_fs
=
False
):
self
.
use_dbm
=
use_dbm
self
.
use_dbm
=
use_dbm
self
.
delta_fs
=
delta_fs
if
use_dbm
:
if
use_dbm
:
self
.
temp_dir
=
tempfile
.
mkdtemp
()
self
.
temp_dir
=
tempfile
.
mkdtemp
()
self
.
OIDMAP
=
dbm
.
open
(
os
.
path
.
join
(
self
.
temp_dir
,
'oidmap.db'
),
self
.
OIDMAP
=
dbm
.
open
(
os
.
path
.
join
(
self
.
temp_dir
,
'oidmap.db'
),
...
@@ -52,6 +83,7 @@ def shorten(s, n):
...
@@ -52,6 +83,7 @@ def shorten(s, n):
return
"..."
+
s
return
"..."
+
s
def
report
(
rep
,
csv
=
False
):
def
report
(
rep
,
csv
=
False
):
delta_fs
=
rep
.
delta_fs
if
not
csv
:
if
not
csv
:
print
"Processed %d records in %d transactions"
%
(
rep
.
OIDS
,
rep
.
TIDS
)
print
"Processed %d records in %d transactions"
%
(
rep
.
OIDS
,
rep
.
TIDS
)
print
"Average record size is %7.2f bytes"
%
(
rep
.
DBYTES
*
1.0
/
rep
.
OIDS
)
print
"Average record size is %7.2f bytes"
%
(
rep
.
DBYTES
*
1.0
/
rep
.
OIDS
)
...
@@ -59,17 +91,28 @@ def report(rep, csv=False):
...
@@ -59,17 +91,28 @@ def report(rep, csv=False):
(
rep
.
DBYTES
*
1.0
/
rep
.
TIDS
))
(
rep
.
DBYTES
*
1.0
/
rep
.
TIDS
))
print
"Types used:"
print
"Types used:"
if
delta_fs
:
if
csv
:
fmt
=
"%s,%s,%s,%s,%s"
fmtp
=
"%s,%d,%d,%f%%,%f"
# per-class format
else
:
fmt
=
"%-46s %7s %9s %6s %7s"
fmtp
=
"%-46s %7d %9d %5.1f%% %7.2f"
# per-class format
print
fmt
%
(
"Class Name"
,
"T.Count"
,
"T.Bytes"
,
"Pct"
,
"AvgSize"
)
if
not
csv
:
print
fmt
%
(
'-'
*
46
,
'-'
*
7
,
'-'
*
9
,
'-'
*
5
,
'-'
*
7
)
else
:
if
csv
:
if
csv
:
fmt
=
"%s,%s,%s,%s,%s,%s,%s,%s,%s"
fmt
=
"%s,%s,%s,%s,%s,%s,%s,%s,%s"
fmtp
=
"%s,%d,%d,%f%%,%f,%d,%d,%d,%d"
# per-class format
fmtp
=
"%s,%d,%d,%f%%,%f,%d,%d,%d,%d"
# per-class format
else
:
else
:
fmt
=
"%-46s %7s %9s %6s %7s %7s %9s %7s %9s"
fmt
=
"%-46s %7s %9s %6s %7s %7s %9s %7s %9s"
fmtp
=
"%-46s %7d %9d %5.1f%% %7.2f %7d %9d %7d %9d"
# per-class format
fmtp
=
"%-46s %7d %9d %5.1f%% %7.2f %7d %9d %7d %9d"
# per-class format
fmts
=
"%46s %7d %8dk %5.1f%% %7.2f"
# summary format
print
fmt
%
(
"Class Name"
,
"T.Count"
,
"T.Bytes"
,
"Pct"
,
"AvgSize"
,
print
fmt
%
(
"Class Name"
,
"T.Count"
,
"T.Bytes"
,
"Pct"
,
"AvgSize"
,
"C.Count"
,
"C.Bytes"
,
"O.Count"
,
"O.Bytes"
)
"C.Count"
,
"C.Bytes"
,
"O.Count"
,
"O.Bytes"
)
if
not
csv
:
if
not
csv
:
print
fmt
%
(
'-'
*
46
,
'-'
*
7
,
'-'
*
9
,
'-'
*
5
,
'-'
*
7
,
'-'
*
7
,
'-'
*
9
,
'-'
*
7
,
'-'
*
9
)
print
fmt
%
(
'-'
*
46
,
'-'
*
7
,
'-'
*
9
,
'-'
*
5
,
'-'
*
7
,
'-'
*
7
,
'-'
*
9
,
'-'
*
7
,
'-'
*
9
)
fmts
=
"%46s %7d %8dk %5.1f%% %7.2f"
# summary format
typemap
=
rep
.
TYPEMAP
.
keys
()
typemap
=
rep
.
TYPEMAP
.
keys
()
typemap
.
sort
(
key
=
lambda
a
:
rep
.
TYPESIZE
[
a
])
typemap
.
sort
(
key
=
lambda
a
:
rep
.
TYPESIZE
[
a
])
cumpct
=
0.0
cumpct
=
0.0
...
@@ -80,6 +123,10 @@ def report(rep, csv=False):
...
@@ -80,6 +123,10 @@ def report(rep, csv=False):
t_display
=
t
t_display
=
t
else
:
else
:
t_display
=
shorten
(
t
,
46
)
t_display
=
shorten
(
t
,
46
)
if
delta_fs
:
print
fmtp
%
(
t_display
,
rep
.
TYPEMAP
[
t
],
rep
.
TYPESIZE
[
t
],
pct
,
rep
.
TYPESIZE
[
t
]
*
1.0
/
rep
.
TYPEMAP
[
t
])
else
:
print
fmtp
%
(
t_display
,
rep
.
TYPEMAP
[
t
],
rep
.
TYPESIZE
[
t
],
print
fmtp
%
(
t_display
,
rep
.
TYPEMAP
[
t
],
rep
.
TYPESIZE
[
t
],
pct
,
rep
.
TYPESIZE
[
t
]
*
1.0
/
rep
.
TYPEMAP
[
t
],
pct
,
rep
.
TYPESIZE
[
t
]
*
1.0
/
rep
.
TYPEMAP
[
t
],
rep
.
COIDSMAP
[
t
],
rep
.
CBYTESMAP
[
t
],
rep
.
COIDSMAP
[
t
],
rep
.
CBYTESMAP
[
t
],
...
@@ -88,6 +135,13 @@ def report(rep, csv=False):
...
@@ -88,6 +135,13 @@ def report(rep, csv=False):
if
csv
:
if
csv
:
return
return
if
delta_fs
:
print
fmt
%
(
'='
*
46
,
'='
*
7
,
'='
*
9
,
'='
*
5
,
'='
*
7
)
print
"%46s %7d %9s %6s %6.2f"
%
(
'Total Transactions'
,
rep
.
TIDS
,
' '
,
' '
,
rep
.
DBYTES
*
1.0
/
rep
.
TIDS
)
print
fmts
%
(
'Total Records'
,
rep
.
OIDS
,
rep
.
DBYTES
,
cumpct
,
rep
.
DBYTES
*
1.0
/
rep
.
OIDS
)
else
:
print
fmt
%
(
'='
*
46
,
'='
*
7
,
'='
*
9
,
'='
*
5
,
'='
*
7
,
'='
*
7
,
'='
*
9
,
'='
*
7
,
'='
*
9
)
print
fmt
%
(
'='
*
46
,
'='
*
7
,
'='
*
9
,
'='
*
5
,
'='
*
7
,
'='
*
7
,
'='
*
9
,
'='
*
7
,
'='
*
9
)
print
"%46s %7d %9s %6s %6.2fk"
%
(
'Total Transactions'
,
rep
.
TIDS
,
' '
,
print
"%46s %7d %9s %6s %6.2fk"
%
(
'Total Transactions'
,
rep
.
TIDS
,
' '
,
' '
,
rep
.
DBYTES
*
1.0
/
rep
.
TIDS
/
1024.0
)
' '
,
rep
.
DBYTES
*
1.0
/
rep
.
TIDS
/
1024.0
)
...
@@ -102,10 +156,13 @@ def report(rep, csv=False):
...
@@ -102,10 +156,13 @@ def report(rep, csv=False):
rep
.
FBYTES
*
100.0
/
rep
.
DBYTES
,
rep
.
FBYTES
*
100.0
/
rep
.
DBYTES
,
rep
.
FBYTES
*
1.0
/
rep
.
FOIDS
)
rep
.
FBYTES
*
1.0
/
rep
.
FOIDS
)
def
analyze
(
path
,
use_dbm
):
def
analyze
(
path
,
use_dbm
,
delta_fs
):
if
delta_fs
:
fs
=
DeltaFileStorage
(
path
,
read_only
=
1
)
else
:
fs
=
FileStorage
(
path
,
read_only
=
1
)
fs
=
FileStorage
(
path
,
read_only
=
1
)
fsi
=
fs
.
iterator
()
fsi
=
fs
.
iterator
()
report
=
Report
(
use_dbm
)
report
=
Report
(
use_dbm
,
delta_fs
)
for
txn
in
fsi
:
for
txn
in
fsi
:
analyze_trans
(
report
,
txn
)
analyze_trans
(
report
,
txn
)
if
use_dbm
:
if
use_dbm
:
...
@@ -130,6 +187,11 @@ def analyze_rec(report, record):
...
@@ -130,6 +187,11 @@ def analyze_rec(report, record):
try
:
try
:
size
=
len
(
record
.
data
)
# Ignores various overhead
size
=
len
(
record
.
data
)
# Ignores various overhead
report
.
DBYTES
+=
size
report
.
DBYTES
+=
size
if
report
.
delta_fs
:
type
=
get_type
(
record
)
report
.
TYPEMAP
[
type
]
=
report
.
TYPEMAP
.
get
(
type
,
0
)
+
1
report
.
TYPESIZE
[
type
]
=
report
.
TYPESIZE
.
get
(
type
,
0
)
+
size
else
:
if
oid
not
in
report
.
OIDMAP
:
if
oid
not
in
report
.
OIDMAP
:
type
=
get_type
(
record
)
type
=
get_type
(
record
)
report
.
OIDMAP
[
oid
]
=
type
report
.
OIDMAP
[
oid
]
=
type
...
@@ -160,14 +222,17 @@ def analyze_rec(report, record):
...
@@ -160,14 +222,17 @@ def analyze_rec(report, record):
except
Exception
,
err
:
except
Exception
,
err
:
print
err
print
err
__doc__
=
"""%(program)s:
Data.fs analyzer
__doc__
=
"""%(program)s:
Analyzer for FileStorage data or repozo deltafs
usage: %(program)s [options] /path/to/Data.fs
usage: %(program)s [options] /path/to/Data.fs
(or /path/to/file.deltafs)
Options:
Options:
-h, --help this help screen
-h, --help this help screen
-c, --csv output CSV
-c, --csv output CSV
-d, --dbm use DBM as temporary storage to limit memory usage
-d, --dbm use DBM as temporary storage to limit memory usage
(no meaning for deltafs case)
Note:
Input deltafs file should be uncompressed.
"""
"""
def
usage
(
stream
,
msg
=
None
):
def
usage
(
stream
,
msg
=
None
):
...
@@ -196,7 +261,18 @@ def main():
...
@@ -196,7 +261,18 @@ def main():
if
opt
in
(
'-h'
,
'--help'
):
if
opt
in
(
'-h'
,
'--help'
):
usage
(
sys
.
stdout
)
usage
(
sys
.
stdout
)
sys
.
exit
()
sys
.
exit
()
report
(
analyze
(
path
,
use_dbm
),
csv
)
header
=
open
(
path
,
'rb'
).
read
(
4
)
if
header
==
packed_version
:
delta_fs
=
False
else
:
delta_fs
=
True
_orig_read_data_header
=
FileStorageFormatter
.
_read_data_header
def
_read_data_header
(
self
,
pos
,
oid
=
None
):
h
=
_orig_read_data_header
(
self
,
pos
,
oid
=
oid
)
h
.
tloc
=
self
.
_tpos
return
h
FileStorageFormatter
.
_read_data_header
=
_read_data_header
report
(
analyze
(
path
,
use_dbm
,
delta_fs
),
csv
)
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
main
()
main
()
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