The incremental build of models in Mindmeld currently exhibits a weird behavior where consecutive incremental builds cannot be loaded unless the dump functionality is explicitly called. This behavior can be reproduced by the following code snippet:
The current behavior leads to a FileNotFoundError as we try to load the non-incremental models from the non-timestamp path.
FileNotFoundError: [Errno 2] No such file or directory: 'kwik_e_mart/.generated/cached_models/20220628T172423/domains/banking/transfer_money/entity.pkl
One way to bypass this error, is to explicitly call dump after each build statement, but this does nit align with the expected behavior.
The incremental build of models in Mindmeld currently exhibits a weird behavior where consecutive incremental builds cannot be loaded unless the dump functionality is explicitly called. This behavior can be reproduced by the following code snippet:
The current behavior leads to a FileNotFoundError as we try to load the non-incremental models from the non-timestamp path.
One way to bypass this error, is to explicitly call dump after each build statement, but this does nit align with the expected behavior.