Make PR and AttRank serial
This commit is contained in:
parent
a1b9187039
commit
772d5f0aab
|
@ -22,7 +22,10 @@
|
||||||
<!-- If any different condition is set, go to the corresponding start -->
|
<!-- If any different condition is set, go to the corresponding start -->
|
||||||
<case to="non-iterative-rankings">${wf:conf('resume') eq "rankings-start"}</case>
|
<case to="non-iterative-rankings">${wf:conf('resume') eq "rankings-start"}</case>
|
||||||
<case to="spark-impulse">${wf:conf('resume') eq "impulse"}</case>
|
<case to="spark-impulse">${wf:conf('resume') eq "impulse"}</case>
|
||||||
<case to="iterative-rankings">${wf:conf('resume') eq "rankings-iterative"}</case>
|
<case to="spark-pagerank">${wf:conf('resume') eq "pagerank"}</case>
|
||||||
|
<case to="spark-attrank">${wf:conf('resume') eq "attrank"}</case>
|
||||||
|
<!-- Removed for serafeim -->
|
||||||
|
<!-- <case to="iterative-rankings">${wf:conf('resume') eq "rankings-iterative"}</case> -->
|
||||||
<case to="get-file-names">${wf:conf('resume') eq "format-results"}</case>
|
<case to="get-file-names">${wf:conf('resume') eq "format-results"}</case>
|
||||||
<case to="map-openaire-to-doi">${wf:conf('resume') eq "map-ids"}</case>
|
<case to="map-openaire-to-doi">${wf:conf('resume') eq "map-ids"}</case>
|
||||||
<case to="map-scores-to-dois">${wf:conf('resume') eq "map-scores"}</case>
|
<case to="map-scores-to-dois">${wf:conf('resume') eq "map-scores"}</case>
|
||||||
|
@ -220,16 +223,19 @@
|
||||||
</spark>
|
</spark>
|
||||||
|
|
||||||
<!-- Do this after finishing okay -->
|
<!-- Do this after finishing okay -->
|
||||||
<ok to="iterative-rankings" />
|
<ok to="spark-pagerank" />
|
||||||
<!-- Go there if we have an error -->
|
<!-- Go there if we have an error -->
|
||||||
<error to="impulse-fail" />
|
<error to="impulse-fail" />
|
||||||
|
|
||||||
</action>
|
</action>
|
||||||
|
|
||||||
|
<!-- Removed for ser to make pagerank & attrank serial -->
|
||||||
|
<!--
|
||||||
<fork name="iterative-rankings">
|
<fork name="iterative-rankings">
|
||||||
<path start="spark-pagerank"/>
|
<path start="spark-pagerank"/>
|
||||||
<path start="spark-attrank"/>
|
<path start="spark-attrank"/>
|
||||||
</fork>
|
</fork>
|
||||||
|
-->
|
||||||
|
|
||||||
<!-- PAGERANK here -->
|
<!-- PAGERANK here -->
|
||||||
<action name="spark-pagerank">
|
<action name="spark-pagerank">
|
||||||
|
@ -278,7 +284,7 @@
|
||||||
</spark>
|
</spark>
|
||||||
|
|
||||||
<!-- Do this after finishing okay -->
|
<!-- Do this after finishing okay -->
|
||||||
<ok to="join-iterative-rankings" />
|
<ok to="spark-attrank" />
|
||||||
<!-- Go there if we have an error -->
|
<!-- Go there if we have an error -->
|
||||||
<error to="pagerank-fail" />
|
<error to="pagerank-fail" />
|
||||||
|
|
||||||
|
@ -328,15 +334,18 @@
|
||||||
</spark>
|
</spark>
|
||||||
|
|
||||||
<!-- Do this after finishing okay -->
|
<!-- Do this after finishing okay -->
|
||||||
<ok to="join-iterative-rankings" />
|
<ok to="get-file-names" />
|
||||||
<!-- Go there if we have an error -->
|
<!-- Go there if we have an error -->
|
||||||
<error to="attrank-fail" />
|
<error to="attrank-fail" />
|
||||||
|
|
||||||
</action>
|
</action>
|
||||||
|
|
||||||
<!-- JOIN ITERATIVE METHODS AND THEN END -->
|
<!-- Removed for ser -->
|
||||||
|
<!--
|
||||||
|
JOIN ITERATIVE METHODS AND THEN END =
|
||||||
<join name="join-iterative-rankings" to="end" />
|
<join name="join-iterative-rankings" to="end" />
|
||||||
<!-- to="get-file-names"/> -->
|
to="get-file-names"/>
|
||||||
|
-->
|
||||||
|
|
||||||
|
|
||||||
<!-- This will be a shell action that will output key-value pairs for output files -->
|
<!-- This will be a shell action that will output key-value pairs for output files -->
|
||||||
|
|
Loading…
Reference in New Issue