Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
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
Jérome Perrin
slapos.core
Commits
a5ef083a
Commit
a5ef083a
authored
Feb 15, 2018
by
Alain Takoudjou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
check promise periodicity
parent
7dbd8742
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
63 additions
and
24 deletions
+63
-24
slapos/grid/promise/__init__.py
slapos/grid/promise/__init__.py
+63
-24
No files found.
slapos/grid/promise/__init__.py
View file @
a5ef083a
...
...
@@ -105,7 +105,7 @@ class GenericPromise(object):
self
.
__partition_folder
=
self
.
__config
.
pop
(
'partition-folder'
,
None
)
self
.
__check_anomaly
=
self
.
__config
.
pop
(
'check-anomaly'
,
False
)
self
.
__title
=
self
.
__config
.
pop
(
'title'
,
None
)
self
.
__periodicity
=
self
.
__config
.
pop
(
'periodicity'
,
None
)
self
.
__periodicity
=
self
.
__config
.
pop
(
'periodicity'
,
2
)
self
.
__debug
=
self
.
__config
.
pop
(
'debug'
,
True
)
self
.
__name
=
self
.
__config
.
pop
(
'name'
,
None
)
self
.
__promise_path
=
self
.
__config
.
pop
(
'path'
,
None
)
...
...
@@ -151,19 +151,6 @@ class GenericPromise(object):
if
self
.
__partition_folder
is
None
:
raise
ValueError
(
"Monitor partition folder is not set in configuration"
)
validate_crontab_time_format_regex
=
re
.
compile
(
\
"{0}
\
s+{
1
}
\
s+{
2
}
\
s+{
3
}
\
s+{
4
}"
.
format
(
\
"(?P<minute>
\
*|[
0
-5]?
\
d)
"
,
\
"
(
?
P
<
hour
>
\
*|
[
01
]
?
\
d
|
2
[
0
-
3
])
",
\
"
(
?
P
<
day
>
\
*|
0
?
[
1
-
9
]
|
[
12
]
\
d
|
3
[
01
])
",
\
"
(
?
P
<
month
>
\
*|
0
?
[
1
-
9
]
|
1
[
012
])
",
\
"
(
?
P
<
day_of_week
>
\
*|
[
0
-
6
](
\
-
[
0
-
6
])
?
)
"
\
)
)
#if validate_crontab_time_format_regex.match(self.__periodicity) is None:
# raise ValueError("
Promise
periodicity
%
r
is
not
a
valid
Cron
time
"
\
# "
format
.
" % self.__periodicity)
def
getConfig
(
self
):
return
self
.
__config
...
...
@@ -179,6 +166,14 @@ class GenericPromise(object):
def
getPromiseFile
(
self
):
return
self
.
__promise_path
def
setPeriodicity
(
self
,
minute
=
0
):
if
minute
<=
0
:
raise
ValueError
(
"Cannot set promise periodicity to a value less than 1"
)
self
.
__periodicity
=
minute
def
getPeriodicity
(
self
):
return
self
.
__periodicity
def
__bang
(
self
,
message
):
"""
Call bang if requested
...
...
@@ -285,7 +280,7 @@ class GenericPromise(object):
line_list.reverse()
return line_list
def defaultTest(self, latest_minute=
3, failure_amount=2, exact_match=Fals
e,
def defaultTest(self, latest_minute=
2, failure_amount=1, exact_match=Tru
e,
is_anomaly=False):
"""
Fail if the latest `failure_amount` messages contain failure.
...
...
@@ -293,9 +288,13 @@ class GenericPromise(object):
@param latest_minute: test the result from now to the latest X minutes in
the past.
@param failure_amount: fail is this amount of failure is found in result
@param exact_match: bool (True|False). If True, only fail if the number
of failure found is equal to `failure_amount`. Else, fail if at least
one failure was found.
@param exact_match: bool (True|False).
True:
only fail if the number of failure found is equal to
`failure_amount`, exactly `failure_amount` promise result are tested
starting from the most recent .
False:
fail if at least one failure is found.
@param is_anomaly: Say if the result is an AnomalyResult of TestResult
"""
...
...
@@ -388,10 +387,10 @@ class PromiseWrapper(GenericPromise):
def __init__(self, config):
config.update({
"
title
": config.get('name'),
"
periodicity
": "
*/
1
*
*
*
*
" # which periodicity to use ?
"
title
": config.get('name')
})
GenericPromise.__init__(self, config)
self.setPeriodicity(minute=2) # which periodicity to use ?
def sense(self):
promise_process = subprocess.Popen(
...
...
@@ -410,7 +409,7 @@ class PromiseWrapper(GenericPromise):
self.logger.info(message.strip())
def test(self):
return self.defaultTest(latest_minute=
3, failure_amount=2
, is_anomaly=False)
return self.defaultTest(latest_minute=
4, failure_amount=1
, is_anomaly=False)
class PromiseRunner(Process):
...
...
@@ -519,6 +518,8 @@ class PromiseLauncher(object):
if self.promise_folder is None:
raise ValueError("
Promise
folder
is
missing
in
configuration
!
")
if self.partition_folder is None:
raise ValueError("
Partition
folder
is
missing
in
configuration
!
")
if logger is None:
self.logger = logging.getLogger(__name__)
...
...
@@ -533,6 +534,39 @@ class PromiseLauncher(object):
self.queue_result = MQueue()
self.bang_called = False
self.run_status_folder = os.path.join(self.partition_folder, '.promises')
if not os.path.exists(self.run_status_folder):
os.mkdir(self.run_status_folder)
def _isPromisePeriodicityMatch(self, promise_name, periodicity):
"""
Return True if promise should be run now, considering given the execution
periodicity in minutes
"""
state_file = os.path.join(self.run_status_folder, promise_name)
if os.path.exists(state_file) and os.stat(state_file).st_size:
with open(state_file) as f:
try:
latest_timestamp = float(f.read())
current_timediff = (time.time() - latest_timestamp) / 60.0
margin_error = 0.15 # 0.15 seconds less is accepted
if current_timediff + margin_error >= periodicity:
return True
self.logger.debug("
Skip
Promise
%
r
.
periodicity
=%
s
,
time_diff
=%
s
" % (
promise_name, periodicity, current_timediff))
except ValueError:
return False
else:
return False
return True
def _setPromiseLatestRunTime(self, promise_name):
"""
Save the promise execution timestamp
"""
state_file = os.path.join(self.run_status_folder, promise_name)
with open(state_file, 'w') as f:
f.write(str(time.time()))
def _loadPromiseModule(self, promise_name):
"""Load a promise from promises directory."""
...
...
@@ -573,18 +607,22 @@ class PromiseLauncher(object):
Launch the promise and save the result if `self.save_method` is not None
If no save method is set, raise PromiseError in case of failure
"""
self.logger.info("
Checking
promise
%
s
...
" % promise_name)
try:
if promise_module is None:
promise_instance = PromiseWrapper(argument_dict)
else:
promise_instance = promise_module.RunPromise(argument_dict)
except Exception:
# to not prevent run other promises
#
only print traceback
to not prevent run other promises
self.logger.error(traceback.format_exc())
self.logger.warning("
Promise
%
s
skipped
.
" % promise_name)
return
if not self._isPromisePeriodicityMatch(promise_name,
promise_instance.getPeriodicity()):
return
self.logger.info("
Checking
promise
%
s
...
" % promise_name)
promise_process = PromiseRunner(
promise_instance,
logger=self.logger,
...
...
@@ -595,6 +633,7 @@ class PromiseLauncher(object):
)
promise_process.start()
self._setPromiseLatestRunTime(promise_name)
sleep_time = 0.1
increment_limit = int(self.promise_timeout / sleep_time)
execution_time = self.promise_timeout
...
...
@@ -666,7 +705,7 @@ class PromiseLauncher(object):
execution_time=execution_time
))
if self.profile:
self.logger.
info
("
Finished
promise
%
r
in
%
s
second
(
s
).
" % (
self.logger.
debug
("
Finished
promise
%
r
in
%
s
second
(
s
).
" % (
promise_name, execution_time))
def run(self):
...
...
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