-
Notifications
You must be signed in to change notification settings - Fork 9
Description
archetypal/archetypal/template/umi_base.py
Line 536 in d0aed03
| return cls.create_unique(name) |
This recursion call sometimes raises a RecursionError: maximum recursion depth exceeded while calling a Python object
I have not yet been able to reliably repro - error is happening in umiverse flask backend.
Sometimes the following steps execute successfully, sometimes, the final step fails with an recursion error.
- Fetch records
["MediumOffice_Post1980_2A", "MediumOffice_New2004_2A", "MediumOffice_Pre1980_2A"]from MongoDB (though I have not yet found a single template or collection of templates which always causes the error - my guess is it has to do with the order that the templates arrive as results from the db, if that is not the same every time?) - construct the templates with
bld.to_template(...) - construct the
template_libwithUmiTemplateLibrary(BuildingTemplates=[<templates>]) - run
template_lib.unique_components() - convert to dict with
template_lib.to_dict()
When it fails, this stack trace occurs:
Traceback (most recent call last):
--
File "/usr/src/app/project/routes.py", line 1104, in construct_umi_file_task
template_lib_as_dict = template_lib.to_dict() # as dict
File "/usr/local/lib/python3.8/site-packages/archetypal/umi_template.py", line 579, in to_dict
data.update({"Name": UniqueName(data.get("Name"))})
File "/usr/local/lib/python3.8/site-packages/archetypal/template/umi_base.py", line 511, in __new__
return str.__new__(cls, cls.create_unique(content))
File "/usr/local/lib/python3.8/site-packages/archetypal/template/umi_base.py", line 536, in create_unique
return cls.create_unique(name)
File "/usr/local/lib/python3.8/site-packages/archetypal/template/umi_base.py", line 536, in create_unique
return cls.create_unique(name)
File "/usr/local/lib/python3.8/site-packages/archetypal/template/umi_base.py", line 536, in create_unique
return cls.create_unique(name)
[Previous line repeated 934 more times]
File "/usr/local/lib/python3.8/site-packages/archetypal/template/umi_base.py", line 528, in create_unique
match = re.match(r"^(.*?)(\D*)(\d+)$", name)
File "/usr/local/lib/python3.8/re.py", line 191, in match
return _compile(pattern, flags).match(string)
File "/usr/local/lib/python3.8/re.py", line 291, in _compile
if isinstance(flags, RegexFlag):
RecursionError: maximum recursion depth exceeded while calling a Python object
Seems like there is some sort of issue with the regex matching when it shouldn't, causing the recurse call to keep happening.
It's possible to increase the python recursion limit (default is 1k I believe) if it is actually possible for the count to go past 1k, but that seems like it shouldn't be necessary, and anyways doesn't seem like the most performant solution if it is. I wonder if it makes sense to use a method like keeping track of the count for each base name, and then just incrementing that, rather than trying to determine the current count with the regex and then recursing.