Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
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
Léo-Paul Géneau
slapos
Commits
776411e0
Commit
776411e0
authored
Oct 10, 2023
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5/test/benchmarks: support running on NEO
parent
9718ecf0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
22 deletions
+26
-22
software/erp5/test/test/benchmarks.py
software/erp5/test/test/benchmarks.py
+26
-22
No files found.
software/erp5/test/test/benchmarks.py
View file @
776411e0
...
...
@@ -162,19 +162,22 @@ class TestOrderBuildPackingListSimulation(
zope_count
=
len
(
zope_memory_info_list
)
# Database size
root_fs
=
pathlib
.
Path
(
self
.
getComputerPartitionPath
(
'zodb'
))
/
'srv'
/
'zodb'
/
'root.fs'
root_fs_size
=
root_fs
.
stat
().
st_size
if
self
.
isNEO
():
root_fs_size
=
zeo_root_stats
=
'N/A'
else
:
root_fs
=
pathlib
.
Path
(
self
.
getComputerPartitionPath
(
'zodb'
))
/
'srv'
/
'zodb'
/
'root.fs'
root_fs_size
=
root_fs
.
stat
().
st_size
# ZEO stats ( using ruok protocol https://github.com/zopefoundation/ZEO/commit/d5082536 )
with
contextlib
.
closing
(
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
))
as
s
:
s
.
connect
((
self
.
_ipv4_address
,
2100
))
s
.
sendall
(
b'
\
x00
\
x00
\
x00
\
x04
ruok'
)
_
=
s
.
recv
(
struct
.
unpack
(
">I"
,
s
.
recv
(
4
))[
0
])
zeo_stats
=
json
.
loads
(
s
.
recv
(
struct
.
unpack
(
">I"
,
s
.
recv
(
4
))[
0
]))
# we are supposed to have only one storage with name "root"
zeo_root_stats
=
zeo_stats
.
pop
(
'root'
)
assert
not
zeo_stats
# ZEO stats ( using ruok protocol https://github.com/zopefoundation/ZEO/commit/d5082536 )
with
contextlib
.
closing
(
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
))
as
s
:
s
.
connect
((
self
.
_ipv4_address
,
2100
))
s
.
sendall
(
b'
\
x00
\
x00
\
x00
\
x04
ruok'
)
_
=
s
.
recv
(
struct
.
unpack
(
">I"
,
s
.
recv
(
4
))[
0
])
zeo_stats
=
json
.
loads
(
s
.
recv
(
struct
.
unpack
(
">I"
,
s
.
recv
(
4
))[
0
]))
# we are supposed to have only one storage with name "root"
zeo_root_stats
=
zeo_stats
.
pop
(
'root'
)
assert
not
zeo_stats
self
.
logger
.
info
(
"Measurements for %s (after %s): "
...
...
@@ -255,16 +258,17 @@ class TestOrderBuildPackingListSimulation(
self
.
take_measurements
(
f"iteration_
{
i
+
1
:
03
}
"
)
# final measurements, take a "zodb analyze" snapshot
zodb_cmd
=
pathlib
.
Path
(
self
.
computer_partition_root_path
)
/
'software_release'
/
'bin'
/
'zodb'
root_fs
=
pathlib
.
Path
(
self
.
getComputerPartitionPath
(
'zodb'
))
/
'srv'
/
'zodb'
/
'root.fs'
self
.
write_measurement
(
{
'zodb analyze'
:
subprocess
.
check_output
((
zodb_cmd
,
'analyze'
,
root_fs
),
text
=
True
)
})
if
not
self
.
isNEO
():
zodb_cmd
=
pathlib
.
Path
(
self
.
computer_partition_root_path
)
/
'software_release'
/
'bin'
/
'zodb'
root_fs
=
pathlib
.
Path
(
self
.
getComputerPartitionPath
(
'zodb'
))
/
'srv'
/
'zodb'
/
'root.fs'
self
.
write_measurement
(
{
'zodb analyze'
:
subprocess
.
check_output
((
zodb_cmd
,
'analyze'
,
root_fs
),
text
=
True
)
})
# and a pt-query-digest for slow log
pt_query_digest
=
pathlib
.
Path
(
...
...
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