Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tango
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
LOFAR2.0
tango
Commits
1be0203e
Commit
1be0203e
authored
3 years ago
by
Jan David Mol
Browse files
Options
Downloads
Plain Diff
Merge branch '
L2SS-375
-archiving-load' into 'master'
Resolve
L2SS-375
"Archiving load" Closes
L2SS-375
See merge request
!153
parents
326439fa
cee9c3c8
No related branches found
No related tags found
1 merge request
!153
Resolve L2SS-375 "Archiving load"
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
devices/toolkit/archiver.py
+87
-32
87 additions, 32 deletions
devices/toolkit/archiver.py
jupyter-notebooks/Archiving_load_test.ipynb
+1265
-0
1265 additions, 0 deletions
jupyter-notebooks/Archiving_load_test.ipynb
with
1352 additions
and
32 deletions
devices/toolkit/archiver.py
+
87
−
32
View file @
1be0203e
...
...
@@ -16,6 +16,29 @@ from .archiver_base import *
logger
=
logging
.
getLogger
()
def
parse_attribute_name
(
attribute_name
:
str
):
"""
Parse the attribute names since most of the archiving operations require only
Tango full-qualified names.
"""
chunk_num
=
len
(
attribute_name
.
split
(
'
/
'
))
if
(
chunk_num
!=
4
):
raise
AttributeFormatException
def
reduce_attribute_name
(
attribute_name
:
str
):
"""
For some operations Tango attribute must be transformed from the form
'
tango://db:port/domain/family/name/attribute
'
to canonical
'
domain/family/name/attribute
'
"""
chunk_num
=
len
(
attribute_name
.
split
(
'
/
'
))
if
(
chunk_num
==
7
and
attribute_name
.
split
(
'
/
'
)[
0
]
==
'
tango:
'
):
return
'
/
'
.
join
(
attribute_name
.
split
(
'
/
'
)[
3
:])
else
:
if
(
chunk_num
!=
4
):
raise
AttributeFormatException
else
:
return
attribute_name
class
Archiver
():
"""
The Archiver class implements the basic operations to perform attributes archiving
...
...
@@ -50,8 +73,8 @@ class Archiver():
config_dict
=
self
.
selector
.
get_dict
()
# Set global development env variables
var_dict
=
config_dict
.
get
(
'
global_variables
'
)
self
.
dev_polling_time
=
int
(
var_dict
.
get
(
'
development_polling_time
'
))
or
10000
self
.
dev_archive_time
=
int
(
var_dict
.
get
(
'
development_archive_time
'
))
or
60000
self
.
dev_polling_time
=
int
(
var_dict
.
get
(
'
development_polling_time
'
))
self
.
dev_archive_time
=
int
(
var_dict
.
get
(
'
development_archive_time
'
))
# Set devices archiving
env_dict
=
config_dict
.
get
(
'
devices
'
)
for
device
in
env_dict
:
...
...
@@ -91,8 +114,7 @@ class Archiver():
The ConfigurationManager and EventSubscriber devices must be already up and running.
The archiving-DBMS must be already properly configured.
"""
if
(
len
(
attribute_name
.
split
(
'
/
'
))
!=
4
):
raise
AttributeFormatException
parse_attribute_name
(
attribute_name
)
try
:
self
.
cm
.
write_attribute
(
'
SetAttributeName
'
,
attribute_name
)
self
.
cm
.
write_attribute
(
'
SetArchiver
'
,
self
.
es_name
)
...
...
@@ -137,8 +159,7 @@ class Archiver():
"""
Stops the data archiving of the attribute passed as input, and remove it from the subscriber
'
s list.
"""
if
(
len
(
attribute_name
.
split
(
'
/
'
))
!=
4
):
raise
AttributeFormatException
parse_attribute_name
(
attribute_name
)
try
:
self
.
cm
.
AttributeStop
(
attribute_name
)
self
.
cm
.
AttributeRemove
(
attribute_name
)
...
...
@@ -164,14 +185,28 @@ class Archiver():
self
.
remove_attribute_from_archiver
(
attr_fullname
)
except
Exception
as
e
:
raise
Exception
from
e
def
remove_attributes_in_error
(
self
,
exclude
:
list
=
[],
es_name
:
str
=
None
):
"""
Remove from the subscriber
'
s list all the attributes currently in error (not being archived)
"""
if
es_name
is
not
None
:
es
=
DeviceProxy
(
es_name
)
else
:
es
=
self
.
es
attributes_nok
=
es
.
AttributeNokList
or
[]
exclude_list
=
[
a
.
lower
()
for
a
in
exclude
]
attrs_list
=
[
a
.
lower
()
for
a
in
list
(
attributes_nok
)
if
a
.
lower
()
not
in
exclude_list
]
for
a
in
attrs_list
:
attr_fullname
=
reduce_attribute_name
(
a
)
self
.
remove_attribute_from_archiver
(
attr_fullname
)
def
start_archiving_attribute
(
self
,
attribute_name
:
str
):
"""
Starts the archiving of the attribute passed as input.
The attribute must be already present in the subscriber
'
s list
"""
if
(
len
(
attribute_name
.
split
(
'
/
'
))
!=
4
):
raise
AttributeFormatException
parse_attribute_name
(
attribute_name
)
try
:
self
.
cm
.
AttributeStart
(
attribute_name
)
except
Exception
as
e
:
...
...
@@ -185,8 +220,7 @@ class Archiver():
Stops the archiving of the attribute passed as input.
The attribute must be already present in the subscriber
'
s list
"""
if
(
len
(
attribute_name
.
split
(
'
/
'
))
!=
4
):
raise
AttributeFormatException
parse_attribute_name
(
attribute_name
)
try
:
self
.
cm
.
AttributeStop
(
attribute_name
)
except
Exception
as
e
:
...
...
@@ -199,29 +233,29 @@ class Archiver():
"""
Check if an attribute is in the archiving list
"""
if
(
len
(
attribute_name
.
split
(
'
/
'
))
!=
4
):
raise
AttributeFormatException
try
:
attributes
=
self
.
cm
.
AttributeSearch
(
attribute_name
)
a
=
[
a
for
a
in
attributes
if
a
.
lower
().
endswith
(
attribute_name
.
lower
())]
# handle cases differences
if
len
(
attributes
)
>
1
:
raise
Exception
(
"
MultipleAttributesMatched!
"
)
if
len
(
attributes
)
==
1
:
parse_attribute_name
(
attribute_name
)
attributes
=
self
.
cm
.
AttributeSearch
(
attribute_name
.
lower
())
if
len
(
attributes
)
>
1
:
# Handle case same attribute_name r/rw
if
len
(
attributes
)
==
2
and
(
attributes
[
0
].
endswith
(
attributes
[
1
]
+
'
w
'
)
or
attributes
[
1
].
endswith
(
attributes
[
0
]
+
'
w
'
)):
return
True
else
:
return
False
except
Exception
as
e
:
raise
Exception
from
e
raise
Exception
(
f
"
Multiple Attributes Matched!
{
attributes
}
"
)
elif
len
(
attributes
)
==
1
:
return
True
else
:
return
False
def
update_archiving_attribute
(
self
,
attribute_name
:
str
,
polling_period
:
int
,
event_period
:
int
,
strategy
:
str
=
'
RUN
'
):
"""
Update the archiving properties of an attribute already in a subscriber list
"""
self
.
remove_attribute_from_archiver
(
attribute_name
)
time
.
sleep
(
1
)
time
.
sleep
(
3.
)
self
.
add_attribute_to_archiver
(
attribute_name
,
polling_period
,
event_period
,
strategy
)
time
.
sleep
(
1
)
time
.
sleep
(
3.
)
self
.
start_archiving_attribute
(
attribute_name
)
logger
.
info
(
f
"
Attribute
{
attribute_name
}
successfully updated!
"
)
def
get_subscriber_attributes
(
self
,
es_name
:
str
=
None
):
"""
...
...
@@ -242,20 +276,15 @@ class Archiver():
es
=
DeviceProxy
(
es_name
)
else
:
es
=
self
.
es
try
:
attrs
=
es
.
AttributeList
or
[]
errs
=
es
.
AttributeErrorList
or
[]
return
dict
((
a
,
e
)
for
a
,
e
in
zip
(
attrs
,
errs
)
if
e
)
except
:
print
(
'
No attribute errors in the subscriber
'
)
return
{}
attrs
=
es
.
AttributeList
or
[]
errs
=
es
.
AttributeErrorList
or
[]
return
dict
((
a
,
e
)
for
a
,
e
in
zip
(
attrs
,
errs
)
if
e
)
or
{}
def
get_attribute_errors
(
self
,
attribute_name
:
str
):
"""
Return the error related to the attribute
"""
if
(
len
(
attribute_name
.
split
(
'
/
'
))
!=
4
):
raise
AttributeFormatException
parse_attribute_name
(
attribute_name
)
errs_dict
=
self
.
get_subscriber_errors
()
for
e
in
errs_dict
:
if
attribute_name
in
e
:
...
...
@@ -276,6 +305,32 @@ class Archiver():
else
:
return
len
(
es
.
AttributeList
or
[])
def
get_attribute_freq
(
self
,
attribute_name
:
str
):
"""
Return the attribute archiving frequency in events/minute
"""
parse_attribute_name
(
attribute_name
)
if
self
.
is_attribute_archived
(
attribute_name
):
freq_dict
=
dict
((
a
,
r
)
for
a
,
r
in
zip
(
self
.
es
.
AttributeList
,
self
.
es
.
AttributeRecordFreqList
))
for
f
in
freq_dict
:
if
attribute_name
.
lower
()
in
f
:
return
freq_dict
.
get
(
f
,
0.
)
else
:
logger
.
warning
(
f
"
Attribute
{
attribute_name
}
not found!
"
)
def
get_attribute_failures
(
self
,
attribute_name
:
str
):
"""
Return the attribute failure archiving frequency in events/minute
"""
parse_attribute_name
(
attribute_name
)
if
self
.
is_attribute_archived
(
attribute_name
):
fail_dict
=
dict
((
a
,
r
)
for
a
,
r
in
zip
(
self
.
es
.
AttributeList
,
self
.
es
.
AttributeFailureFreqList
))
for
f
in
fail_dict
:
if
attribute_name
.
lower
()
in
f
:
return
fail_dict
.
get
(
f
,
0.
)
else
:
logger
.
warning
(
f
"
Attribute
{
attribute_name
}
not found!
"
)
class
AttributeFormatException
(
Exception
):
"""
Exception that handles wrong attribute naming
...
...
This diff is collapsed.
Click to expand it.
jupyter-notebooks/Archiving_load_test.ipynb
0 → 100644
+
1265
−
0
View file @
1be0203e
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