Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SMART
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UNI-KLU
SMART
Commits
174165d4
Commit
174165d4
authored
Oct 01, 2020
by
Alexander Lercher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[RoleStage] Working time slicing and Swagger docu
#19
parent
687e2fc1
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
40 additions
and
18 deletions
+40
-18
routes.yml
.../role-stage-discovery-microservice/app/configs/routes.yml
+22
-8
timeslice.py
...stage-discovery-microservice/app/db/entities/timeslice.py
+1
-1
repository.py
...ub/role-stage-discovery-microservice/app/db/repository.py
+1
-1
run_clustering.py
...b/role-stage-discovery-microservice/app/run_clustering.py
+1
-1
run_time_slicing.py
...role-stage-discovery-microservice/app/run_time_slicing.py
+15
-7
No files found.
src/data-hub/role-stage-discovery-microservice/app/configs/routes.yml
View file @
174165d4
...
@@ -262,10 +262,14 @@ definitions:
...
@@ -262,10 +262,14 @@ definitions:
properties
:
properties
:
use_case
:
use_case
:
type
:
string
type
:
string
use_case_table
:
type
:
string
layer_name
:
layer_name
:
type
:
string
type
:
string
cluster_label
:
cluster_label
:
type
:
number
type
:
number
label
:
type
:
string
nodes
:
nodes
:
type
:
array
type
:
array
items
:
items
:
...
@@ -285,8 +289,14 @@ definitions:
...
@@ -285,8 +289,14 @@ definitions:
type
:
array
type
:
array
items
:
items
:
type
:
string
type
:
string
total_properties
:
type
:
array
items
:
type
:
string
use_case
:
use_case
:
type
:
string
type
:
string
use_case_table
:
type
:
string
LayerCollection
:
LayerCollection
:
type
:
array
type
:
array
...
@@ -297,14 +307,16 @@ definitions:
...
@@ -297,14 +307,16 @@ definitions:
type
:
object
type
:
object
example
:
example
:
"
UniqueID"
:
"
4437d98b4516e899fb7d93cef0bea6111574473703f0aab9d8c2f02aaa673f5c"
"
UniqueID"
:
"
4437d98b4516e899fb7d93cef0bea6111574473703f0aab9d8c2f02aaa673f5c"
"
use_case"
:
"
string"
"
use_case"
:
"
debug"
"
layer_name"
:
"
some_layer_name"
"
use_case_table"
:
"
debug-table1"
"
Finished_time"
:
1576631193265951
"
layer_name"
:
"
some_layer"
"
Latitude_Destination"
:
-5.973257
"
some_app_key"
:
"
some_app_value"
"
Longitude_Destination"
:
37.416316
# "Finished_time": 1576631193265951
"
TravelID"
:
"
5e57ec9159bc0668543f156a"
# "Latitude_Destination": -5.973257
"
TravelPrice"
:
15
# "Longitude_Destination": 37.416316
"
UserID"
:
"
a95075f5042b1b27060080156d87fe34ec7e712c"
# "TravelID": "5e57ec9159bc0668543f156a"
# "TravelPrice": 15
# "UserID": "a95075f5042b1b27060080156d87fe34ec7e712c"
NodeCollection
:
NodeCollection
:
type
:
array
type
:
array
...
@@ -319,6 +331,8 @@ definitions:
...
@@ -319,6 +331,8 @@ definitions:
example
:
"
(2020,
52)"
example
:
"
(2020,
52)"
use_case
:
use_case
:
type
:
string
type
:
string
use_case_table
:
type
:
string
layer_name
:
layer_name
:
type
:
string
type
:
string
clusters
:
clusters
:
...
...
src/data-hub/role-stage-discovery-microservice/app/db/entities/timeslice.py
View file @
174165d4
...
@@ -58,7 +58,7 @@ class TimeSlice:
...
@@ -58,7 +58,7 @@ class TimeSlice:
def
from_serializable_dict
(
self
,
dict
:
Dict
,
from_db
=
False
):
def
from_serializable_dict
(
self
,
dict
:
Dict
,
from_db
=
False
):
self
.
time
=
dict
[
"time"
]
self
.
time
=
dict
[
"time"
]
self
.
use_case
=
dict
[
"use_case"
]
self
.
use_case
=
dict
[
"use_case"
]
self
.
use_case_table
s
=
dict
[
"use_case_tables
"
]
self
.
use_case_table
=
dict
[
"use_case_table
"
]
self
.
layer_name
=
dict
[
'layer_name'
]
self
.
layer_name
=
dict
[
'layer_name'
]
self
.
clusters
=
json
.
loads
(
dict
[
'clusters'
])
if
from_db
else
dict
[
'clusters'
]
self
.
clusters
=
json
.
loads
(
dict
[
'clusters'
])
if
from_db
else
dict
[
'clusters'
]
...
...
src/data-hub/role-stage-discovery-microservice/app/db/repository.py
View file @
174165d4
...
@@ -17,7 +17,7 @@ class Repository(MongoRepositoryBase):
...
@@ -17,7 +17,7 @@ class Repository(MongoRepositoryBase):
def
__init__
(
self
):
def
__init__
(
self
):
super
()
.
__init__
(
netconst
.
ROLESTAGE_DISCOVERY_DB_HOSTNAME
,
super
()
.
__init__
(
netconst
.
ROLESTAGE_DISCOVERY_DB_HOSTNAME
,
netconst
.
ROLESTAGE_DISCOVERY_DB_PORT
,
netconst
.
ROLESTAGE_DISCOVERY_DB_PORT
,
'roleStageDb
-testing
'
)
'roleStageDb'
)
self
.
_layer_collection
=
'layers'
self
.
_layer_collection
=
'layers'
self
.
_layer_nodes_collection
=
'layer_nodes'
self
.
_layer_nodes_collection
=
'layer_nodes'
...
...
src/data-hub/role-stage-discovery-microservice/app/run_clustering.py
View file @
174165d4
...
@@ -42,7 +42,7 @@ def run_clustering_for_layer(layer: Layer) -> List[Cluster]:
...
@@ -42,7 +42,7 @@ def run_clustering_for_layer(layer: Layer) -> List[Cluster]:
)
)
return
[
Cluster
(
layer
.
use_case
,
layer
.
use_case_table
,
layer
.
layer_name
,
return
[
Cluster
(
layer
.
use_case
,
layer
.
use_case_table
,
layer
.
layer_name
,
cluster_label
=
key
,
nodes
=
cluster_result
.
nodes
,
label
=
cluster_result
.
label
)
cluster_label
=
key
,
nodes
=
cluster_result
.
nodes
,
label
=
cluster_result
.
label
if
key
!=
-
1
else
'noise'
)
for
key
,
cluster_result
in
res
.
items
()]
for
key
,
cluster_result
in
res
.
items
()]
...
...
src/data-hub/role-stage-discovery-microservice/app/run_time_slicing.py
View file @
174165d4
...
@@ -12,9 +12,13 @@ from typing import Tuple, Dict, Any, List
...
@@ -12,9 +12,13 @@ from typing import Tuple, Dict, Any, List
TimeSliceKey
=
Tuple
[
int
,
int
]
TimeSliceKey
=
Tuple
[
int
,
int
]
# TODO extract information about time features (maybe from table mapping)
TIME_PROPERTY_NAMES
=
[
'Timestamp'
]
def
convert_to_time_slice_key
(
timestamp
:
str
)
->
TimeSliceKey
:
def
convert_to_time_slice_key
(
timestamp
:
str
)
->
TimeSliceKey
:
'''Returns the tuple (year, week_of_year) from a timestamp. This is used as the key for the slicing.'''
'''Returns the tuple (year, week_of_year) from a timestamp. This is used as the key for the slicing.'''
time
=
datetime
.
utcfromtimestamp
(
float
(
timestamp
[
0
:
10
]))
# time = datetime.utcfromtimestamp(float(timestamp[0:10]))
time
=
datetime
.
strptime
(
timestamp
,
'
%
Y-
%
m-
%
d
%
H:
%
M:
%
S'
)
(
y
,
w
,
_
)
=
time
.
isocalendar
()
(
y
,
w
,
_
)
=
time
.
isocalendar
()
return
(
y
,
w
)
return
(
y
,
w
)
...
@@ -28,7 +32,6 @@ def split_clusterset_by_time(layer: Layer, clusters: List[Cluster]) -> Dict[Time
...
@@ -28,7 +32,6 @@ def split_clusterset_by_time(layer: Layer, clusters: List[Cluster]) -> Dict[Time
:params clusters: The clusters whichs nodes are split
:params clusters: The clusters whichs nodes are split
:returns: A dict of time slices where the key is the time info and value is the information about the time slice
:returns: A dict of time slices where the key is the time info and value is the information about the time slice
'''
'''
time_property_names
=
[
'Finished_time'
,
'Starting_time'
]
time_slices
:
Dict
[
Any
,
TimeSlice
]
=
{}
time_slices
:
Dict
[
Any
,
TimeSlice
]
=
{}
for
cluster_no
in
clusters
:
for
cluster_no
in
clusters
:
...
@@ -36,13 +39,13 @@ def split_clusterset_by_time(layer: Layer, clusters: List[Cluster]) -> Dict[Time
...
@@ -36,13 +39,13 @@ def split_clusterset_by_time(layer: Layer, clusters: List[Cluster]) -> Dict[Time
# retrieve times the node is located in based on the defined time properties in the schema
# retrieve times the node is located in based on the defined time properties in the schema
time_keys
=
set
()
time_keys
=
set
()
for
time_property
in
time_property_names
:
for
time_property
in
TIME_PROPERTY_NAMES
:
if
time_property
in
node
:
if
time_property
in
node
:
time_keys
.
add
(
convert_to_time_slice_key
(
str
(
node
[
time_property
])))
time_keys
.
add
(
convert_to_time_slice_key
(
str
(
node
[
time_property
])))
for
time_key
in
time_keys
:
for
time_key
in
time_keys
:
if
time_key
not
in
time_slices
:
if
time_key
not
in
time_slices
:
time_slices
[
time_key
]
=
TimeSlice
(
time_key
,
layer
.
use_case
,
layer
.
layer_name
)
time_slices
[
time_key
]
=
TimeSlice
(
time_key
,
layer
.
use_case
,
layer
.
use_case_table
,
layer
.
layer_name
)
time_slices
[
time_key
]
.
add_node_to_cluster
(
cluster_no
.
cluster_label
,
node
)
time_slices
[
time_key
]
.
add_node_to_cluster
(
cluster_no
.
cluster_label
,
node
)
...
@@ -58,12 +61,17 @@ if __name__ == "__main__":
...
@@ -58,12 +61,17 @@ if __name__ == "__main__":
for
layer
in
layers
:
for
layer
in
layers
:
layer_name
=
layer
.
layer_name
layer_name
=
layer
.
layer_name
use_case
=
layer
.
use_case
use_case
=
layer
.
use_case
print
(
f
"Working on {use_case}, {layer_name}."
)
use_case_table
=
layer
.
use_case_table
print
(
f
"Working on {use_case}//{use_case_table}//{layer_name}."
)
clusters_for_layer
=
repo
.
get_clusters_for_layer
(
use_case
,
layer_name
)
clusters_for_layer
=
repo
.
get_clusters_for_layer
(
use_case
,
use_case_table
,
layer_name
)
# if no clusters were generated use one large cluster instead of skipping the layer
# if no clusters were generated use one large cluster instead of skipping the layer
if
clusters_for_layer
is
None
or
len
(
clusters_for_layer
)
==
0
:
if
clusters_for_layer
is
None
or
len
(
clusters_for_layer
)
==
0
:
clusters_for_layer
=
[
Cluster
(
use_case
,
layer_name
,
-
1
,
repo
.
get_layer_nodes
(
layer_name
))]
nodes
=
repo
.
get_layer_nodes
(
use_case
,
use_case_table
,
layer_name
)
if
nodes
is
None
or
len
(
nodes
)
==
0
:
print
(
"Skipping, because there are no clusters and no nodes for the layer."
)
continue
clusters_for_layer
=
[
Cluster
(
use_case
,
use_case_table
,
layer_name
,
-
1
,
nodes
,
'noise'
)]
time_slices
=
split_clusterset_by_time
(
layer
,
clusters_for_layer
)
time_slices
=
split_clusterset_by_time
(
layer
,
clusters_for_layer
)
...
...
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