dvc push to gcs giving error
See original GitHub issueI am pushing some images to GCS using dvc remote add -f -d remote_storage gs://dvctmp/data
&& dvc add data/*.jpg
&& dvc push
I am getting the following error:
ERROR: unexpected error - b/dvctmp/o
Having any troubles? Hit us up at https://dvc.org/support, we are always happy to help!
Using dvc doctor
, getting
---------------------------------
Platform: Python 3.9.7 on macOS-10.16-x86_64-i386-64bit
Supports:
gs (gcsfs = 2022.5.0),
webhdfs (fsspec = 2022.5.0),
http (aiohttp = 3.8.1, aiohttp-retry = 2.5.0),
https (aiohttp = 3.8.1, aiohttp-retry = 2.5.0)
Cache types: reflink, hardlink, symlink
Cache directory: apfs on /dev/disk3s1s1
Caches: local
Remotes: gs
Workspace directory: apfs on /dev/disk3s1s1
Repo: dvc, git
Someone please help
Issue Analytics
- State:
- Created a year ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Troubleshooting | Data Version Control - DVC
The most common cause is changes pushed to Git without the corresponding data being uploaded to the DVC remote. Make sure to dvc...
Read more >dvc push certificate verify fail for gcp - Stack Overflow
Trying to push data into a bucket in Google Cloud Platform (GCP) from Visual Studio via dvc push ERROR: enter image description here....
Read more >Configure a DVC remote without a DevOps degree - DagsHub
This is where the simplicity starts showing! To push or pull data from this URL, we will use our existing DAGsHub credentials (via...
Read more >May '20 Community Gems - Iterative.ai
something is going wrong with your GCP authentication! A few things to check: first, check out our docs to dvc remote add a...
Read more >Troubleshooting | Cloud Storage
Issue: While performing a resumable upload, I received this error and the message Failed to parse Content-Range header. Solution: The value you used...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Here is the output from
dvc push -vv
It’s likely the bucket does not exist. You can create it through the web console or with
gsutil
usinggsutil mb gs://dvctmp
.