Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
flame-clmc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
flame
flame-clmc
Commits
a4c40bda
Commit
a4c40bda
authored
7 years ago
by
Rowan Powell
Browse files
Options
Downloads
Patches
Plain Diff
Added simulation of demoserver shutdown
parent
8ea18d6d
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/mediaServiceSim/serviceSim.py
+12
-12
12 additions, 12 deletions
src/mediaServiceSim/serviceSim.py
with
12 additions
and
12 deletions
src/mediaServiceSim/serviceSim.py
+
12
−
12
View file @
a4c40bda
...
...
@@ -139,10 +139,15 @@ class DemoServer(object):
def
configure
(
self
,
server_id
,
server_location
):
print
(
"
Configuring
"
)
self
.
configure_VM
()
self
.
configure_VM
(
'
starting
'
)
self
.
configure_VM
(
'
running
'
)
time
.
sleep
(
1
)
self
.
configure_server
(
server_id
,
server_location
)
def
shutdown
(
self
):
print
(
"
Shutting down
"
)
self
.
configure_VM
(
'
stopping
'
)
def
generate_clients
(
self
):
self
.
clients
=
[]
for
i
in
range
(
self
.
clientCount
):
...
...
@@ -165,13 +170,9 @@ class DemoServer(object):
# lp._generateServerConfig(id, locations[i], 8, '100G', '1T', self._selectDelay(len(ids))))
self
.
_sendInfluxDataBlock
(
server_conf_block
)
def
configure_VM
(
self
):
print
(
"
Configuring VM nodes
"
)
VM_conf_block
=
[]
self
.
_generateVMS
(
'
starting
'
,
1
,
VM_conf_block
)
self
.
_generateVMS
(
'
running
'
,
1
,
VM_conf_block
)
self
.
_sendInfluxDataBlock
(
VM_conf_block
)
def
configure_VM
(
self
,
state
):
print
(
"
Configuring VM node
"
)
self
.
_sendInfluxData
(
self
.
_generateVM
(
state
,
1
))
def
configure_ports
(
self
):
print
(
"
Configuring Servers
"
)
...
...
@@ -259,9 +260,8 @@ class DemoServer(object):
return
self
.
simIterations
# 'Private' methods ________________________________________________________
def
_generateVMS
(
self
,
state
,
amount
,
datablock
):
for
i
in
range
(
0
,
amount
):
datablock
.
append
(
lp
.
_generateVMConfig
(
state
,
1
,
'
100G
'
,
'
1T
'
,
self
.
_selectDelay
(
amount
)))
def
_generateVM
(
self
,
state
,
delay
):
return
lp
.
_generateVMConfig
(
state
,
1
,
'
100G
'
,
'
1T
'
,
self
.
_selectDelay
(
delay
))
def
_cpuUsage
(
self
,
clientCount
):
cpuUsage
=
randint
(
0
,
10
)
...
...
@@ -382,5 +382,5 @@ while True:
if
itCount
==
0
:
break
demoServer
.
shutdown
_VMs
()
demoServer
.
shutdown
()
print
(
"
\n
Finished
"
)
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