Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.

If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!

  • Scheduled tasks api

    Support proget cleanup buildmaster
    2
    0 Votes
    2 Posts
    6 Views
    ?
    It's not currently supported, but we'll consider doing it through the API or CLI at some point.
  • 0 Votes
    4 Posts
    23 Views
    benB
    Each rule separately checks that all of its conditions are met before deleting a package. If any of the rules decide to delete a package, the package is deleted.
  • Flag Package to be ignored by cleanup

    Support cleanup proget
    4
    0 Votes
    4 Posts
    4 Views
    ?
    It's still on our roadmap, but it was pushed back to 4.7.
  • 0 Votes
    3 Posts
    31 Views
    ?
    Great! Thank you for the quick response, and also for an excellent lead time. Impressive!
  • Unable to clean database

    Support cleanup proget
    4
    0 Votes
    4 Posts
    17 Views
    ?
    The feed clean-up writes logs to the database before starting, so if you have no space left on disk, then you can't start a clean-up job.
  • Cleanup policy for never downloaded packages

    Support proget cleanup
    2
    0 Votes
    2 Posts
    6 Views
    ?
    We don't have that as a retention policy currently, but can consider adding it in the future!
  • ProGet Package Retention Policy

    Support proget cleanup
    3
    0 Votes
    3 Posts
    11 Views
    ?
    Note: we have now scheduled this feature for v3.6
  • ProGet Feed Cleanup

    Support feeds proget cleanup
    3
    0 Votes
    3 Posts
    36 Views
    ?
    Ok thanks for the Info
  • Deleting old database records

    Support cleanup databases buildmaster
    2
    0 Votes
    2 Posts
    9 Views
    ?
    NOTE : BuildMaster has Retention Policies which are strongly recommended, rather than manually purging data That being said, you can use the same strategy to delete from that table that you used for log entries: BuildMaster 4.2 and earlier: SELECT TOP 100 * FROM BuildExecution_PlanActionVariableValues --DELETE BuildExecution_PlanActionVariableValues WHERE BuildExecution_PlanAction_Id IN (SELECT BuildExecution_PlanAction_Id FROM BuildExecution_PlanActions BEPA INNER JOIN BuildExecutions BE ON BE.Execution_Id = BEPA.Execution_Id INNER JOIN Builds B ON BE.Application_Id = B.Application_Id AND BE.Release_Number = B.Release_Number AND BE.Build_Number = B.Build_Number WHERE B.BuildStatus_Name = 'Rejected') BuildMaster 4.3 through 4.9: SELECT TOP 100 * FROM BuildExecution_ActionGroupActionVariableValues --DELETE BuildExecution_ActionGroupActionVariableValues WHERE BuildExecution_ActionGroupAction_Id IN (SELECT BuildExecution_ActionGroupAction_Id FROM BuildExecution_ActionGroupActions BEAGA INNER JOIN BuildExecution_DeploymentPlans BDP ON BEAGA.BuildExecution_DeploymentPlan_Id = BDP.BuildExecution_DeploymentPlan_Id INNER JOIN BuildExecutions BE ON BE.Execution_Id = BDP.Execution_Id INNER JOIN Builds B ON BE.Application_Id = B.Application_Id AND BE.Release_Number = B.Release_Number AND BE.Build_Number = B.Build_Number WHERE B.BuildStatus_Name = 'Rejected')
  • Buildmaster database and SQL Express

    Support buildmaster cleanup databases
    3
    0 Votes
    3 Posts
    19 Views
    ?
    Thanks Tod, I have run your query and it deleted most of the rows out of the log table. However, Buildmaster is still timing out due to slow database performance. Are there any other tables we can reduce in size. Also we are looking to upgrade to SQL Server as soon as possible.