-
Notifications
You must be signed in to change notification settings - Fork 37
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
Make workspace a settable property. Define ProjectWorkspace for backwards compatibility #244
Conversation
…ards compatibility
Codecov Report
@@ Coverage Diff @@
## master #244 +/- ##
=========================================
+ Coverage 64.89% 64.9% +0.01%
=========================================
Files 39 39
Lines 5569 5577 +8
=========================================
+ Hits 3614 3620 +6
- Misses 1955 1957 +2
Continue to review full report at Codecov.
|
I literally just saw that this was mentioned as possibly undesirable in #239. If that is the case, I can consider alternatives for enabling this kind of feature. I do find it useful to be able to modify the workspace, but maybe there's a compromise. This doesn't immediately conflict with the suggestion there since that is a proposed future optimization, but it would preclude that optimization without making an API-breaking change so we can hold off with this PR until that's decided. |
I think it would be totally fine to require configuration settings (and workspaces) to be changed via the command line interface, and for configurations to be immutable once a (So while I appreciate your work, I would vote to reject this PR / mutable configs in general.) |
Alternatively you just make the cache workspace path dependent. That would be very easy to realize. It probably would actually be critical, since we already allow an in-memory change of the configuration. |
@csadorf I'm not sure I follow your suggestion. |
@csadorf Yes, incorrect caching behavior is probably already possible. I think it makes more sense to make things immutable than to enable multi-workspace caching. I benchmarked this for #239 and saw that signac spends around ~13% of its time just calling |
Agreed. |
So what's the expected path forward? Deprecate the ability to update the project config, and remove in 2.0? And otherwise close #81 as wontfix? |
I'd think so. |
I'd implement that by subclassing the |
This PR will be closed when #246 is merged. |
Closing, replaced by #246. |
Description
Makes the workspace of a project modifiable by a property API.
Motivation and Context
Resolves #81. The config is already accessible by property, it's just the workspace that isn't yet.
I do have one question about this feature, and also the
config
property of the project. Currently any change to the config, including changing the workspace, modifies the in-memory project object, but that change will not persist beyond the current session since the underlying config file isn't updated. Considering that the command line interface for config modification updates the underlying file, and also the way that other things like statepoint/job document modification always persist to the underlying file, is that the expected behavior?Types of Changes
1The change breaks (or has the potential to break) existing functionality.
Checklist:
If necessary: