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
Levin Zimmermann
slapos
Commits
c2ded157
Commit
c2ded157
authored
Jun 27, 2011
by
Guillaume Bottex
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modify the recipe to macth the manual test.
parent
a99691f5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
13 deletions
+40
-13
slapos/recipe/nosqltestbed/__init__.py
slapos/recipe/nosqltestbed/__init__.py
+36
-13
slapos/recipe/nosqltestbed/template/memstrike_run.in
slapos/recipe/nosqltestbed/template/memstrike_run.in
+4
-0
No files found.
slapos/recipe/nosqltestbed/__init__.py
View file @
c2ded157
...
...
@@ -54,20 +54,23 @@ class NoSQLTestBed(BaseSlapRecipe):
kumo_cloud_config
[
'address'
]
=
self
.
getGlobalIPv6Address
()
kumo_cloud_config
[
'report_path'
]
=
self
.
log_directory
if
'nb_server_max'
not
in
kumo_cloud_config
:
kumo_cloud_config
[
'nb_server_max'
]
=
2
# 3
if
'nb_tester_max'
not
in
kumo_cloud_config
:
kumo_cloud_config
[
'nb_tester_max'
]
=
1
# 3
if
'nb_thread'
not
in
kumo_cloud_config
:
kumo_cloud_config
[
'nb_thread'
]
=
1
# 32
if
'nb_request'
not
in
kumo_cloud_config
:
kumo_cloud_config
[
'nb_request'
]
=
1000
# 1024000
if
'computer_guid_list'
not
in
kumo_cloud_config
:
kumo_cloud_config
[
'computer_guid_list'
]
=
"COMP-9:COMP-10:COMP-11:COMP-9"
kumo_cloud_config
.
setdefault
(
'nb_server_max'
,
4
)
# 3
kumo_cloud_config
.
setdefault
(
'nb_tester_max'
,
5
)
# 3
kumo_cloud_config
.
setdefault
(
'nb_thread'
,
1
)
# 32
kumo_cloud_config
.
setdefault
(
'nb_request'
,
1000
)
# 1024000
computer_guid_list
=
"COMP-13:"
# manager
computer_guid_list
+=
"COMP-13:"
# server 1
computer_guid_list
+=
"COMP-14:"
# server 2
computer_guid_list
+=
"COMP-20:"
# server 3
computer_guid_list
+=
"COMP-19:"
# server 4
computer_guid_list
+=
"COMP-21:"
# tester 1
computer_guid_list
+=
"COMP-22:"
# tester 2
computer_guid_list
+=
"COMP-14:"
# tester 3
computer_guid_list
+=
"COMP-20:"
# tester 4
computer_guid_list
+=
"COMP-19"
# tester 5
kumo_cloud_config
.
setdefault
(
'computer_guid_list'
,
computer_guid_list
)
kumo_cloud_config
[
'software_release_url'
]
=
self
.
software_release_url
kumo_cloud_config
[
'server_url'
]
=
self
.
server_url
...
...
@@ -214,7 +217,7 @@ class NoSQLTestBed(BaseSlapRecipe):
tester_config
[
'gateway_address'
].
strip
(
"[]"
)
+
" -p "
+
\
tester_config
[
'gateway_port'
]
+
" -t "
+
\
tester_config
[
'nb_thread'
]
+
" "
+
\
tester_config
[
'nb_request'
]
+
" -
x
"
tester_config
[
'nb_request'
]
+
" -
g
"
tester_config
[
'log_directory'
]
=
self
.
log_directory
tester_config
[
'compress_method'
]
=
"bz2"
...
...
@@ -230,3 +233,23 @@ class NoSQLTestBed(BaseSlapRecipe):
return
[
tester_runner_path
]
def
run_memstrike_set
(
self
):
""" Runs memstrike in set mode. """
memstrike_config
=
{}
memstrike_config
.
update
(
self
.
options
)
memstrike_config
.
update
(
self
.
parameter_dict
)
memstrike_config
[
'gateway_address'
]
=
memstrike_config
[
'gateway_address'
].
strip
(
"[]"
)
memstrike_connection
=
{}
memstrike_connection
[
'status'
]
=
"OK"
self
.
computer_partition
.
setConnectionDict
(
memstrike_connection
)
memstrike_wrapper_template_location
=
pkg_resources
.
resource_filename
(
__name__
,
os
.
path
.
join
(
'template'
,
'memstrike_run.in'
))
memstrike_runner_path
=
self
.
createRunningWrapper
(
"memstrike_set"
,
self
.
substituteTemplate
(
memstrike_wrapper_template_location
,
memstrike_config
))
return
[
memstrike_runner_path
]
slapos/recipe/nosqltestbed/template/memstrike_run.in
0 → 100644
View file @
c2ded157
#!/bin/sh
# BEWARE: This file is operated by slapgrid
# BEWARE: It will be overwritten automatically
exec
%
(
memstrike_binary
)
s
-s
-l
%
(
gateway_address
)
s
-p
%
(
gateway_port
)
s
-t
%
(
nb_thread
)
s %
(
nb_request
)
s
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