add/commit : command doesn't make cache on S3 #9525
Replies: 10 comments
-
@DonggookKim |
Beta Was this translation helpful? Give feedback.
-
@efiop , I'm sorry for late response.
|
Beta Was this translation helpful? Give feedback.
-
@DonggookKim By scenario I meant what's your high level scenario, what are you trying to accomplish with this? The reason I'm asking is that |
Beta Was this translation helpful? Give feedback.
-
@efiop I see. |
Beta Was this translation helpful? Give feedback.
-
@DonggookKim Is that data static or are there some pipelines that update it directly on s3 (if so, do you have object versioning enabled in the bucket?)? |
Beta Was this translation helpful? Give feedback.
-
@efiop Not yet, but we will migrate data to S3. On this time, data in NFS. |
Beta Was this translation helpful? Give feedback.
-
@DonggookKim And what about how static that data is? Is it static or are there going to be some pipelines that update it directly on the storage? |
Beta Was this translation helpful? Give feedback.
-
@efiop Yes. Not now, it will be. Currently, there is a pipeline that preprocess for data and store to NFS and some static data also exists. I want to modify this pipeline store data to S3, and migrate static data to S3, if I can use dvc with S3 environment. |
Beta Was this translation helpful? Give feedback.
-
@DonggookKim I suppose some kind of ETL pipeline? If so, maybe you don't need external outputs or dvc at all at that stage of working with your data. You could depend on it in dvc pipelines or |
Beta Was this translation helpful? Give feedback.
-
@efiop Yes. I design a ETL pipeline. |
Beta Was this translation helpful? Give feedback.
-
Bug Report
Description
I want to make cache on my Amazon S3 storage, not locally. So, I follow this guide to setting external cache.
But, after run
dvc add --remote "s3 url"
, cache is disappear. That means, it is generated during command runs, but after terminate the job, cache files are disappear.Reproduce
Expected
The file
d4/bba---
is copied manually by my hands. I think there should make at least 2 cache file and 1dir
file.dir
Environment information
Macbook M1 Pro, Use zsh on PyCharm
config
generated data.dvc
Output of
dvc doctor
:Additional Information (if any):
Beta Was this translation helpful? Give feedback.
All reactions