Test DVC remote mechanism in CI#430
Conversation
To trigger test pipeline.
|
Same problem. @revolj your Dockerfile is right. The problem is reproductible. :( |
|
Copilot explanation: I'll help you find a solution for the failing job. Let me start by retrieving the logs for that job.Now let me get the workflow file to understand the context better:## Solution for Job 75754848427 Root Cause: The
Key Error: Recommended SolutionsOption 1: Add DVC Cache Retry Logic (Recommended)Modify the Dockerfile to add timeout and retry configuration for DVC pull: RUN dvc pull -v \
--remote-config timeout=120 \
--remote-config connect-timeout=60 \
--retry 3Or update ['remote "storage"']
url = webdavs://...
timeout = 120
connect_timeout = 60Option 2: Skip Models During Build (If Optional)If the RUN dvc pull -v --force || trueOr configure Option 3: Pre-cache in Docker Build ContextPush DVC cache to a persistent layer before pulling: COPY .dvc/cache /dvc/.dvc/cache
RUN dvc pull -vOption 4: Increase Build TimeoutThe WebDAV server may need more time. Increase Docker's timeout in your CI/CD or build script to accommodate slow remote storage responses. Immediate Action: Check that the WebDAV storage service ( |
|
La suggestion de copilot ne tient pas la route: les options n'existent même pas pour la commande |
|
Le test qui avait échoué mercredi dernier a réussi simplement en le relançant (mais il a mis 23 minutes au lieu de 5). |
A small change to trigger the Github Actions.
Aim: check if all services are touched by the #429 problem.