Skip to content
Snippets Groups Projects
Commit 9c743c3c authored by Daniel Nemergut's avatar Daniel Nemergut
Browse files

Merge branch 'ws2227-recycle_raw_data_improvements' into 'main'

Removing rawdata race conditions

See merge request !1632
parents de1458e6 1728a40d
No related branches found
No related tags found
2 merge requests!1669Catchup with main,!1632Removing rawdata race conditions
Pipeline #15184 passed
Pipeline: workspaces

#15187

    ......@@ -12,8 +12,8 @@ $SBIN_PATH/framework.sh -d .
    chmod 770 .
    if [ ! -z "$PREV_PROCESSING_DIR" ] && [ -d "../$PREV_PROCESSING_DIR/rawdata/" ] && [ ! -z "$(ls -A ../$PREV_PROCESSING_DIR/rawdata/)" ]; then
    # Reuse the raw data from the previous version
    mv ../$PREV_PROCESSING_DIR/rawdata/ .
    # Reuse the raw data from the previous version with hard links
    cp -lR ../$PREV_PROCESSING_DIR/rawdata/ .
    else
    # Run the product fetcher
    cd rawdata/
    ......
    ......@@ -12,8 +12,8 @@ $SBIN_PATH/framework.sh -d .
    chmod 770 .
    if [ ! -z "$PREV_PROCESSING_DIR" ] && [ -d "../$PREV_PROCESSING_DIR/rawdata/" ] && [ ! -z "$(ls -A ../$PREV_PROCESSING_DIR/rawdata/)" ]; then
    # Reuse the raw data from the previous version
    mv ../$PREV_PROCESSING_DIR/rawdata/ .
    # Reuse the raw data from the previous version with hard links
    cp -lR ../$PREV_PROCESSING_DIR/rawdata/ .
    else
    # Run the product fetcher
    cd rawdata/
    ......
    ......@@ -12,8 +12,8 @@ $SBIN_PATH/framework.sh -d .
    chmod 770 .
    if [ ! -z "$PREV_PROCESSING_DIR" ] && [ -d "../$PREV_PROCESSING_DIR/rawdata/" ] && [ ! -z "$(ls -A ../$PREV_PROCESSING_DIR/rawdata/)" ]; then
    # Reuse the raw data from the previous version
    mv ../$PREV_PROCESSING_DIR/rawdata/ .
    # Reuse the raw data from the previous version with hard links
    cp -lR ../$PREV_PROCESSING_DIR/rawdata/ .
    else
    # Run the product fetcher
    cd rawdata/
    ......
    ......@@ -785,7 +785,10 @@ class RestrictedInfo(CapabilityInfo):
    current_version_files = request.current_version.files
    # Store the previous execution's spool directory for reusing bits of it
    if request.current_version.workflow_metadata:
    # Note: This is currently limited to capabilities that update the fetch stage
    if (request.current_version.workflow_metadata
    and "processing_dir" in request.current_version.workflow_metadata
    and "fetch_end_time" in request.current_version.workflow_metadata):
    parameters["prev_processing_dir"] = request.current_version.workflow_metadata["processing_dir"]
    version = CapabilityVersion(
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment