Data Version Control
dvc.org
Data Version Control
1–10 of 54 posts
Re: Data Version Control
#2Re: Data Version Control
#3It's not super clear to me how this interacts with data. If I have am using ADLS to store delta tables, and I cannot pull prod to my local can I still use this? Is there a point if I can just look at delta log to switch between past versions?
Re: Data Version Control
#4Re: Data Version Control
#5Re: Data Version Control
#6[1] https://journals.plos.org/ploscompbiol/article?id=10.1371/jo...
Re: Data Version Control
#7What are the benefits of DVC over Apache Iceberg? If anyone used both, I'd be curious about your take. Thanks!
Re: Data Version Control
#8Happy to answer any questions about DVC and our sister project DataChain https://github.com/iterative/datachain that does data versioning with a bit different assumptions: no file copy and built-in data transformations.
Re: Data Version Control
#9It's not super clear to me how this interacts with data. If I have am using ADLS to store delta tables, and I cannot pull prod to my local can I still use this? Is there a point if I can just look at delta log to switch between past versions?
DVC is (at least as I use it) pretty much just git LFS with multiple backends (guess actually a more simple git annex). It further has some rather MLOps specific stuff. Is handy if you do versions model training with changing data on S3.
We used Google Drive as a storage backend and had to grow out of it to a WebDAV backend, and it was nearly trivial to swap them out and migrate.
Re: Data Version Control
#10It's not super clear to me how this interacts with data. If I have am using ADLS to store delta tables, and I cannot pull prod to my local can I still use this? Is there a point if I can just look at delta log to switch between past versions?
DVC is (at least as I use it) pretty much just git LFS with multiple backends (guess actually a more simple git annex). It further has some rather MLOps specific stuff. Is handy if you do versions model training with changing data on S3.
https://news.ycombinator.com/item?id=33047634
What makes DVC especially useful for MLOps? Aren’t MLFlow or W&B solving that in a way that’s open source (the former) or just increases the speed and scale massively ( the latter)?
Disclaimer: I work at W&B.