Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fusion_matlab
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
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
geoffc_sips
fusion_matlab
Wiki
Cluster Processing
Changes
Page history
New page
Templates
Clone repository
Update Cluster Processing
authored
5 years ago
by
Geoff Cureton
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Cluster-Processing.md
+42
-0
42 additions, 0 deletions
Cluster-Processing.md
with
42 additions
and
0 deletions
Cluster-Processing.md
View page @
a3405d56
...
...
@@ -217,6 +217,48 @@ For the Fusion Quicklooks we similarly have
select
find_contexts_arguments
||
'version=>"
''
1.0dev4
''
"'
from
forward_streams
where
name
=
'FusionMatlabDailyQL'
;
update
forward_streams
set
find_contexts_arguments
=
find_contexts_arguments
||
'version=>"
''
1.0dev4
''
"'
where
name
=
'FusionMatlabDailyQL'
;
```
## Deleting a Forward Stream Instance
We can examine the forward stream instances by running
```
psql $flo_user -c "select name,find_contexts_arguments,workflow_head from forward_streams;" | grep Fusion
```
resulting in
```
FusionMatlab | "version"=>"'1.0dev10'", "satellite"=>"'snpp'" | flo.sw.fusion_matlab:FUSION_MATLAB
FusionMatlabDailyQL | "version"=>"'1.0dev7'", "satellite"=>"'snpp'" | flo.sw.fusion_matlab:FUSION_MATLAB_QL
FusionMatlab_jpss1 | "version"=>"'1.0dev10'", "satellite"=>"'noaa20'" | flo.sw.fusion_matlab:FUSION_MATLAB
FusionMatlabDailyQL_jpss1 | "version"=>"'1.0dev7'", "satellite"=>"'noaa20'" | flo.sw.fusion_matlab:FUSION_MATLAB_QL
```
To delete each of these, we enter the
`psql`
shell and execute a series of
`begin-delete-commit`
transactions...
```
sql
flo3
=>
begin
;
BEGIN
flo3
=>
delete
from
forward_streams
where
name
=
'FusionMatlabDailyQL'
;
DELETE
1
flo3
=>
commit
;
COMMIT
flo3
=>
begin
;
BEGIN
flo3
=>
delete
from
forward_streams
where
name
=
'FusionMatlabDailyQL_jpss1'
;
DELETE
1
flo3
=>
commit
;
COMMIT
flo3
=>
begin
;
BEGIN
flo3
=>
delete
from
forward_streams
where
name
=
'FusionMatlab_jpss1'
;
DELETE
1
flo3
=>
commit
;
COMMIT
flo3
=>
begin
;
BEGIN
flo3
=>
delete
from
forward_streams
where
name
=
'FusionMatlab'
;
DELETE
1
flo3
=>
commit
;
COMMIT
flo3
=>
```
## Examining log files of failed jobs
...
...
This diff is collapsed.
Click to expand it.