dvc auth check
See original GitHub issue@dberenbaum why don’t we introduce a command in dvc for the check availability of buckets/directories? like
dvc auth check s3://mybucket
/dvc credentials azure://mycontainer
From @dmpetrov
Issue Analytics
- State:
- Created a year ago
- Comments:9 (6 by maintainers)
Top Results From Across the Web
remote modify | Data Version Control - DVC
This command is commonly needed after dvc remote add or default to set up credentials or other customizations to each remote storage type....
Read more >automatic user and password authentication for dvc get and ...
I am using user and password authentication for webdav which are stored in my local dvc config file in projectA. Pushing and Pulling...
Read more >Configure a DVC remote without a DevOps degree - DagsHub
In this post, I'll show you how to easily configure DAGsHub Storage, a free DVC remote that is easy to configure, with no...
Read more >DVC to Mandate Two-Factor Authentication ... - DVCNews.com
Effective November 16, 2022, Disney Vacation Club will utilize two-factor verification before allowing an individual to log into the member ...
Read more >Transcripts and Verifications - Diablo Valley College
Payment for Express transcripts may be made with cash, check, ... verification, you must provide them with a signed letter of authorization.
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
The way I interpreted the request is that the command is not intended to be a silver bullet but rather a quick way of detecting errors regarding credentials and/or remote setup. Would be nice to clarify the use case for the command
@skshetry We are not limited by fsspec there, we can add any auth checks that we please on top and then consider propagading into upstream. But overall auth errors are handled differently depending on filesystem, in some it is better than in others. The OSError you’ve mentioned is just a bug, we’ve discussed this before.
What’s important to remember here is that auth check is not going to be a silver bullet, as with many operations we won’t know if we have access untill we try to do them. For example, s3 ls might work with some prefixes but not with others and so on, there are a lot of variables there. The best we can reasonably do is probably try listing a specified path, but even that is pretty limited.