-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does Martian allow caching of runs into a db? #54
Comments
Could you please clarify what it is you're asking about? I'm not sure what you mean by "caching" in this context. Cromwell has a rather different scope from what martian - martian doesn't have a "server" process, for example. Martian stores all of the state of a run in the filesystem. It can be made to put the metadata (other than the top-level metadata files) in a single |
Hi, I am trying to understand the subsection "Restarting" pipelines in the documentation (https://martian-lang.org/running-pipelines/). It is stated that "Stages that have already completed successfully will not be reset or re-run". I have the following questions:
Thank you |
To answer the first question, the state of each stage is represented by the files in each job directory, e.g. If another user restarts the pipestance in the same directory, the behavior will be the same as if the original user had restarted it, so long as the file permissions allow that user write access to the pipestance directory. However, the I believe it should work if another user copies the pipestance directory over to a location they control (using Note that because the pipestance metadata may contain paths referring to files in the old pipestance directory, if the first user restarts their pipestance some of those files may get deleted by VDR, so I would not recommend copying a pipestance this way if they might do that or if they might delete the pipestance. To protect yourself from that you'd need to not exclude the |
Hello,
I am wondering if Martian allows caching of runs using a database, similar to how Cromwell does it. I could not find much in the docs.
The text was updated successfully, but these errors were encountered: