-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Implement --delete-generations + flag for keeping last N number of gens #767
Conversation
cc @edolstra |
src/libstore/profiles.hh
Outdated
@@ -37,6 +37,8 @@ void deleteGeneration(const Path & profile, unsigned int gen); | |||
|
|||
void deleteGenerations(const Path & profile, const std::set<unsigned int> & gensToDelete, bool dryRun); | |||
|
|||
void deleteGenerationsGreaterThan(const Path & profile, const string & max, bool dryRun); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
max
should be an integer. (I.e. the conversion to int should be done in nix-env.cc where the argument parsing happens.)
Looks good apart from my two comments. |
fixes what was brought up in comments |
merge? |
bump from mailinglist |
@edolstra or @domenkozar could you take a look if you get the time? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking forward to this! Just noticed a possible typo.
src/nix-env/nix-env.cc
Outdated
} else if (opArgs.size() == 1 && opArgs.front().find('+') != string::npos) { | ||
if(opArgs.front().size() < 2) | ||
throw Error(format("invalid number of generations ‘%1%’") % opArgs.front()); | ||
string str_max = string(opArgs.front() 1, opArgs.front().size()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo here? opArgs.front() 1
yup you were right i hadnt rerun it when i made that change |
@@ -37,6 +37,8 @@ void deleteGeneration(const Path & profile, unsigned int gen); | |||
|
|||
void deleteGenerations(const Path & profile, const std::set<unsigned int> & gensToDelete, bool dryRun); | |||
|
|||
void deleteGenerationsGreaterThan(const Path & profile, const int max, bool dryRun); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can deleteGenerations
be removed? It looks like a special case of deleteGenerationsGreaterThan
with max=1
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, deleteGenerations
can be given a list of specific generations where as mine will only keep x in chronological order, or the date one will only keep so many dates back.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@edolstra any chance we can get this merged before 18.03 release?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suppose we could unify the two functions by simply having deleteGenerationsOlderThan
build the std::set
and then pass it into deleteGenerations
. I doubt the deduplication would be that valuable though.
Although I did notice that you don't check against curGen
, but deleteGenerations
does. Do you do anything to ensure you don't delete the current generation? If not, perhaps it'd pay to just call the existing function with the set you computed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@copumpkin I could be mistaken but rereading the logic I wrote, it shouldn't be possible to delete the current generation, the list of gens checks to see if it hits the end of generations and bails out at that point.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@copumpkin you were correct that it would have been possible to have deleted the currentgeneration if you had done enough rollbacks. I have modified the code to make sure this is not possible
Is the last generation always the current one, even after rollback and such? |
I am going to confirm the delete current generation issue now in a roll back situation now. |
9057aa1
to
12fe224
Compare
generation is not the one we are deleting
thanks @dtzWill i went back and changed the logic slightly. now it starts the count from the current generation rather than the beginning of the list. I also updated docs to explain this. I think this is more likely what people will want. I would say this is good to go again. |
Any chance this is still on the table? This would help put immensely in a nixops managed server that consistently runs out of space unless cleaned up manually. Being able to only keep the last N generations would make keeping the disk relatively empty much easier. I would be happy to contribute if some manual tasks need to be performed to update this pull request to work with the latest release… |
This will do it:
|
woohoo |
Thank you @peti! |
I don't find keeping last X days of generations as useful to me as keeping the last X number of generations. so I implemented it.