You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the vs code extension we use file watchers to trigger commands that provide data for the UI. status, list and diff are run on any change in the workspace. If our demo project status will fail for the entire duration that an experiment is running.
Note: We have implemented a retry on our end (that uses an exponential backoff) to cater for this situation.
Reproduce
run dvc exp run
wait for the experiment to start
run dvc status
the command should fail
Expected
In this instance it would be good for the command to wait for the repository to be unlocked before returning. I know that there are instances of extremely long running experiments but is there a gap where status would be able to return a reliable result?
Environment information
Output of dvc doctor:
$ dvc doctor
Additional Information (if any):
Closely related to #6132. Seems like a more complicated issue to solve. Happy to discuss further if required.
Thanks!
The text was updated successfully, but these errors were encountered:
Bug Report
Description
In the vs code extension we use file watchers to trigger commands that provide data for the UI.
status
,list
anddiff
are run on any change in the workspace. If our demo projectstatus
will fail for the entire duration that an experiment is running.Note: We have implemented a retry on our end (that uses an exponential backoff) to cater for this situation.
Reproduce
dvc exp run
dvc status
Expected
In this instance it would be good for the command to wait for the repository to be unlocked before returning. I know that there are instances of extremely long running experiments but is there a gap where
status
would be able to return a reliable result?Environment information
Output of
dvc doctor
:$ dvc doctor
Additional Information (if any):
Closely related to #6132. Seems like a more complicated issue to solve. Happy to discuss further if required.
Thanks!
The text was updated successfully, but these errors were encountered: