Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review 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
RadioObservatory
LOFAR
Commits
94468017
Commit
94468017
authored
8 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
Task #10339: filter for ingestable and (un)ingested dataproducts
parent
8d956aa3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
SAS/DataManagement/Cleanup/CleanupService/service.py
+4
-4
4 additions, 4 deletions
SAS/DataManagement/Cleanup/CleanupService/service.py
SAS/ResourceAssignment/ResourceAssignmentEditor/lib/mom.py
+1
-1
1 addition, 1 deletion
SAS/ResourceAssignment/ResourceAssignmentEditor/lib/mom.py
with
5 additions
and
5 deletions
SAS/DataManagement/Cleanup/CleanupService/service.py
+
4
−
4
View file @
94468017
...
...
@@ -178,11 +178,11 @@ class CleanupHandler(MessageHandlerInterface):
momrpc
=
self
.
path_resolver
.
momrpc
dataproducts
=
momrpc
.
getDataProducts
(
task
[
'
mom_id
'
]).
get
(
task
[
'
mom_id
'
])
ingestable_dataproducts
=
[
dp
for
dp
in
dataproducts
if
dp
[
'
status
'
]
not
in
[
None
,
'
has_data
'
,
'
no_data
'
,
'
aborted
'
]
]
ingested_dataproducts
=
[
dp
for
dp
in
dataproducts
if
dp
[
'
status
'
]
==
'
ingested
'
]
ingestable_dataproducts
=
[
dp
for
dp
in
dataproducts
if
dp
[
'
status
'
]
not
in
[
None
,
'
has_data
'
,
'
no_data
'
,
'
aborted
'
,
'
populated
'
]
]
ingested_dataproducts
=
[
dp
for
dp
in
ingestable_
dataproducts
if
dp
[
'
status
'
]
==
'
ingested
'
]
if
len
(
ingeste
d
_dataproducts
)
!=
len
(
dataproducts
)
and
len
(
dataproducts
)
>
0
and
len
(
ingestable_dataproducts
)
>
0
:
logger
.
info
(
'
ingest
abl
e_dataproducts
: %s
'
,
ingestable_dataproducts
)
if
len
(
ingest
abl
e_dataproducts
)
>
0
and
len
(
ingested_
dataproducts
)
<
len
(
ingestable_dataproducts
)
:
un
ingeste
d
_dataproducts
=
[
dp
for
dp
in
ingestable_dataproducts
if
dp
[
'
status
'
]
!=
'
ingested
'
]
message
=
"
Task otdb_id=%s has un-ingested dataproducts. Not deleting data.
"
%
(
task
[
'
otdb_id
'
],)
logger
.
error
(
message
)
self
.
_sendNotification
(
subject
=
'
TaskDeleted
'
,
content
=
{
'
deleted
'
:
False
,
...
...
This diff is collapsed.
Click to expand it.
SAS/ResourceAssignment/ResourceAssignmentEditor/lib/mom.py
+
1
−
1
View file @
94468017
...
...
@@ -106,7 +106,7 @@ def updateTaskMomDetails(task, momrpc):
elif
dp
[
'
status
'
]
==
'
aborted
'
:
num_ingest_aborted
+=
1
ingestable_dataproducts
=
[
dp
for
dp
in
dps
if
dp
[
'
status
'
]
not
in
[
None
,
'
has_data
'
,
'
no_data
'
]
]
ingestable_dataproducts
=
[
dp
for
dp
in
dps
if
dp
[
'
status
'
]
not
in
[
None
,
'
has_data
'
,
'
no_data
'
,
'
aborted
'
,
'
populated
'
]
]
if
num_ingested
>
0
and
num_ingested
==
len
(
ingestable_dataproducts
):
t
[
'
ingest_status
'
]
=
'
ingested
'
...
...
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