Done
Pinned fields
Click on the next to a field label to start pinning.
Details
Assignee
Zhaoyu YangZhaoyu YangReporter
wen guanwen guanReviewers
Michelle GowerRubinTeam
Data FacilityComponents
Details
Details
Assignee
Zhaoyu Yang
Zhaoyu YangReporter
wen guan
wen guanReviewers
Michelle Gower
RubinTeam
Data Facility
Components
Checklist
Checklist
Checklist
Created August 6, 2024 at 2:08 PM
Updated August 14, 2024 at 2:18 PM
Resolved August 14, 2024 at 2:18 PM
Currently in bps_panda_DF.yaml,
fileDistributionEndPoint: "file://${LSST_RUN_TEMP_SPACE}/{operator}/panda_cache_box/{payloadFolder}/{uniqProcName}/"
is forced to be 'file
' protocol. It will raise errors for cases likeLSST_RUN_TEMP_SPACE="https://ceph-svc16.gridpp.rl.ac.uk:1094/lsst:datadisk/job_outputs/users/$USER"
to fix it:
(1) set
fileDistributionEndPoint: "${LSST_RUN_TEMP_SPACE}/{operator}/panda_cache_box/{payloadFolder}/{uniqProcName}/"
(2) in here , add lines to check if
LSST_RUN_TEMP_SPACE
contains protocols like “://“(or urlparse). If it doesn’t contain protocol part, add “file://“ to it.