Skip to content
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

Closed
wants to merge 1 commit into from

Conversation

vyasr
Copy link
Contributor

@vyasr vyasr commented Nov 20, 2019

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

  • Documentation update
  • Bug fix
  • New feature
  • Breaking change1

1The change breaks (or has the potential to break) existing functionality.

Checklist:

If necessary:

  • I have updated the API documentation as part of the package doc-strings.
  • I have created a separate pull request to update the framework documentation on signac-docs and linked it here.
  • I have updated the changelog.

@codecov
Copy link

codecov bot commented Nov 20, 2019

Codecov Report

Merging #244 into master will increase coverage by 0.01%.
The diff coverage is 91.3%.

Impacted file tree graph

@@            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
Impacted Files Coverage Δ
signac/contrib/project.py 90.62% <91.3%> (-0.19%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 85a2db6...16e5693. Read the comment docs.

@vyasr
Copy link
Contributor Author

vyasr commented Nov 20, 2019

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.

@vyasr vyasr requested review from bdice and csadorf November 20, 2019 16:01
@bdice
Copy link
Member

bdice commented Nov 20, 2019

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 Project is instantiated in Python. Allowing Project configs to change in memory is a great way to introduce bugs, in my opinion. Things like caches can't be used safely without a static config. If you need another workspace in Python, just create a config object and create a new Project instance from that config.

(So while I appreciate your work, I would vote to reject this PR / mutable configs in general.)

@csadorf
Copy link
Contributor

csadorf commented Nov 20, 2019

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.

@vyasr
Copy link
Contributor Author

vyasr commented Nov 20, 2019

@csadorf I'm not sure I follow your suggestion.

@bdice
Copy link
Member

bdice commented Nov 20, 2019

@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 project.workspace(), which is silly for a value that is constant in 99.9% of real world use cases. Immutable configs would solve this.

@csadorf
Copy link
Contributor

csadorf commented Nov 20, 2019

@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 project.workspace(), which is silly for a value that is constant in 99.9% of real world use cases. Immutable configs would solve this.

Agreed.

@vyasr
Copy link
Contributor Author

vyasr commented Nov 20, 2019

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?

@csadorf
Copy link
Contributor

csadorf commented Nov 20, 2019

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.

@vyasr
Copy link
Contributor Author

vyasr commented Nov 20, 2019

I'd implement that by subclassing the Config class (and making e.g. an ImmutableConfig) that for now throws a DeprecationWarning in __setitem__ that will become an error in 2.0. Sound sufficient?

@vyasr vyasr mentioned this pull request Nov 21, 2019
12 tasks
@vyasr vyasr added the blocked Dependent on something else label Nov 22, 2019
@vyasr
Copy link
Contributor Author

vyasr commented Nov 22, 2019

This PR will be closed when #246 is merged.

@csadorf csadorf removed their request for review November 25, 2019 20:40
@bdice bdice removed their request for review November 27, 2019 19:57
@vyasr
Copy link
Contributor Author

vyasr commented Nov 28, 2019

Closing, replaced by #246.

@vyasr vyasr closed this Nov 28, 2019
@vyasr vyasr deleted the feature/improve_config_api branch November 28, 2019 22:40
@bdice bdice mentioned this pull request Aug 18, 2021
15 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
blocked Dependent on something else
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Better API for the modification of configuration files
3 participants