-
Notifications
You must be signed in to change notification settings - Fork 49
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
Doesn't deal well with large repos or lots of changes, even with -e
#120
Comments
That sounds like a bug - it shouldn't touch ancestors of the |
It would be very helpful if you could provide a minimal test case. |
I watched the output from For a minimal repro... is there something I can use to generate a large repo? Maybe something that takes a random seed so we wind up with the exact same thing? |
Eww... all the "random commit generators" I've found are for scamming your github history in order to look productive and get interviews. |
OK. I think this might be a deterministic test case... It's a start at least. but it is certainly not minimal. Not sure how one would minimize and still make the performance problems obvious... but try this:
This turns out to only be 990M (560M .git) and 180k commits. For reference the repo I'm in is 5.6G (3.1G .git) and 185k commits. ...still running after 10m |
Thanks. I wouldn't leave it running for more than a few seconds, the trick would be to enable |
Reproducible error is listed above and is nicely constrained. Setup takes <1m even on a spinning disk. ( But debugging your code and its internal modeling is going to have to be up to you. |
Can you do a rough binary search (bisection) on the |
I gave you everything you need. |
Not quite, I also need an extra hour in every day but I guess it would be unfair to expect you to give me that ;-) |
I suspect my speed issues with git-explode ( aspiers/git-explode#6 ) come from git-deps. See that issue for stats on the size of the project. I can also provide things like commit depth on some of the files in question. I don't know if
git-explode
provides theHEAD
argument togit-deps -e
, but even when looking at the code withgit-deps -e main ...
it takes a VERY long time to run and seems to analyze a ton of hunks that are far beyond the-e
commit.The text was updated successfully, but these errors were encountered: