A potential issue with `kedro-diff` is, if you hav...
# advanced-need-help
w
A potential issue with
kedro-diff
is, if you have large files in your project that are not required for making the pipeline objects it can fill up your tmp directory. I think the solution is to implement a .kedroignore, that will ignore certain files and directories specified by the user. If one does not exist, I will ignore the following items by default.
Copy code
python
  default_ignore_items = [".envrc", ".venv", ".kedro-diff", "data"]
What else belongs in the default ignore? are there large files stored in common directories that we dont need while running diff?
2 Views