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

Remove non-string key support #719

Merged
merged 3 commits into from
Mar 31, 2022
Merged

Remove non-string key support #719

merged 3 commits into from
Mar 31, 2022

Conversation

bdice
Copy link
Member

@bdice bdice commented Mar 26, 2022

Description

This PR closes a handful of TODO items related to automatically converting non-string keys to strings for synced collections.

Motivation and Context

See #316 for the original motivation to remove non-string keys. Resolves #726.

Checklist:

@bdice bdice requested review from a team as code owners March 26, 2022 05:45
@bdice bdice requested review from mikemhenry and klywang and removed request for a team March 26, 2022 05:45
@bdice bdice self-assigned this Mar 26, 2022
@bdice bdice requested a review from vyasr March 26, 2022 05:48
@bdice bdice added the enhancement New feature or request label Mar 26, 2022
@bdice bdice added this to the v2.0.0 milestone Mar 26, 2022
@codecov
Copy link

codecov bot commented Mar 26, 2022

Codecov Report

Merging #719 (0ab4385) into next (977c9e3) will decrease coverage by 0.09%.
The diff coverage is 100.00%.

❗ Current head 0ab4385 differs from pull request most recent head 488b354. Consider uploading reports for the commit 488b354 to get more accurate results

@@            Coverage Diff             @@
##             next     #719      +/-   ##
==========================================
- Coverage   86.42%   86.32%   -0.10%     
==========================================
  Files          51       51              
  Lines        4714     4687      -27     
  Branches     1032     1022      -10     
==========================================
- Hits         4074     4046      -28     
- Misses        455      456       +1     
  Partials      185      185              
Impacted Files Coverage Δ
signac/synced_collections/validators.py 91.48% <ø> (-0.35%) ⬇️
...nac/synced_collections/backends/collection_json.py 100.00% <100.00%> (ø)
...ignac/synced_collections/data_types/synced_dict.py 98.01% <100.00%> (-0.10%) ⬇️
signac/contrib/job.py 89.83% <0.00%> (-0.66%) ⬇️
signac/__main__.py 77.33% <0.00%> (+0.14%) ⬆️

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 977c9e3...488b354. Read the comment docs.

@vyasr
Copy link
Contributor

vyasr commented Mar 26, 2022

@bdice thanks for tackling this! Could you also rerun some of the benchmarks that we looked at in conjunction with #484 to see how much they improve with this applied? IIRC the switch to synced collections increased the cost of converting keys to strings, and that increase was exacerbated because I implemented it as a separate validator (with the expectation that it would be removed), so we should see a marked improvement now.

@bdice
Copy link
Member Author

bdice commented Mar 26, 2022

@vyasr I looked at the benchmarks but there is no apparent change. I believe that this is because we created a single validator json_attr_dict_validator that does all the logic of require_string_key and json_format_validator in a single function. The branch I eliminated from that function was the elif isinstance(key, (int, bool, type(None))):. Since the first if isinstance(key, str): is always hit by the benchmarking code (all keys are strings), I don't think this would result in any performance changes.

@cbkerr cbkerr changed the title Remove non-str key support Remove non-string key support Mar 27, 2022
@vyasr
Copy link
Contributor

vyasr commented Mar 31, 2022

@bdice you're right, I forgot that when I implemented that new validator I bypassed the perf issue entirely. I think I initially recognized that the sequence of validators would be slower but wrote it off as a temporary issue until 2.0, but then when you did your much more thorough benchmarking of #484 and we saw how bad it was I just implemented the custom validator to recover performance. So I think we're good here.

@vyasr vyasr enabled auto-merge (squash) March 31, 2022 17:57
@vyasr vyasr merged commit db4d9a4 into next Mar 31, 2022
@vyasr vyasr deleted the remove-non-str-key-support branch March 31, 2022 18:06
vyasr added a commit that referenced this pull request Apr 19, 2022
* Remove non-string key support.

* Update changelog.

Co-authored-by: Vyas Ramasubramani <vyas.ramasubramani@gmail.com>
vyasr added a commit that referenced this pull request Apr 21, 2022
* Remove non-string key support.

* Update changelog.

Co-authored-by: Vyas Ramasubramani <vyas.ramasubramani@gmail.com>
vyasr added a commit that referenced this pull request May 2, 2022
* Remove non-string key support.

* Update changelog.

Co-authored-by: Vyas Ramasubramani <vyas.ramasubramani@gmail.com>
bdice added a commit that referenced this pull request Jun 14, 2022
* Remove non-string key support.

* Update changelog.

Co-authored-by: Vyas Ramasubramani <vyas.ramasubramani@gmail.com>
bdice added a commit that referenced this pull request Aug 1, 2022
* Remove non-string key support.

* Update changelog.

Co-authored-by: Vyas Ramasubramani <vyas.ramasubramani@gmail.com>
bdice added a commit that referenced this pull request Oct 7, 2022
* Remove non-string key support.

* Update changelog.

Co-authored-by: Vyas Ramasubramani <vyas.ramasubramani@gmail.com>
bdice added a commit that referenced this pull request Oct 27, 2022
* Remove non-string key support.

* Update changelog.

Co-authored-by: Vyas Ramasubramani <vyas.ramasubramani@gmail.com>
vyasr added a commit that referenced this pull request Oct 30, 2022
* Remove non-string key support.

* Update changelog.

Co-authored-by: Vyas Ramasubramani <vyas.ramasubramani@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants