Dict Equality Checks rapidly exceeds max recursion #684
Labels
discussion
This issue is not a bug or feature and a conversation is needed to find an appropriate resolution
enhancement
This issue is a feature request
What steps did you take:
I wanted to compare two (yaml) structures that had been read into data.values and turned into dictionaries.
I used the
==
operator as is our traditional way.What happened:
- comparison exceeded maximum recursion depth
What did you expect:
a boolean
Anything else you would like to add:
the culprit is here: https://github.com/vmware-tanzu/carvel-ytt/blob/develop/vendor/github.com/k14s/starlark-go/starlark/value.go#L1134
because whenever they made starlark they were really conservative re. the stack limits for equality comparisons.
IMO this would be magical to expose via command line flag and/or hardcode several orders of magnitude larger.
(note that if this is exposed via CLI flag, I think there's another place where depth/maxdepth is also hardcoded, but I'll let you-all grep the codebase and consider implementation details like if i'm raising the recursion limit in one place do i probably also want to raise it in all the places? probably?)
Environment:
Here is a repro:
(i suspect this exists in all versions of ytt released up til today)
Vote on this request
This is an invitation to the community to vote on issues, to help us prioritize our backlog. Use the "smiley face" up to the right of this comment to vote.
👍 "I would like to see this addressed as soon as possible"
👎 "There are other more important things to focus on right now"
We are also happy to receive and review Pull Requests if you want to help working on this issue.
The text was updated successfully, but these errors were encountered: