Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Plan directories on the filesystem that are not in Bamboo's database

Richard Cross December 6, 2017

I noticed disk space filling up in Bamboo's artifacts directory, mostly due to a very large number of directories beginning with "plan-".  In fact, there are currently 2,419 of these things.

Yet, when I look in the BUILD table in Bamboo's database, at best I can only find 182 builds with that storage tag

bamboo=# SELECT COUNT(*) FROM build WHERE storage_tag LIKE 'plan-%';
count
-------
182
(1 row)

Does this mean Bamboo is expiring builds internally, but failing to actually remove the files from the filesystem?

2 answers

1 accepted

0 votes
Answer accepted
Richard Cross December 6, 2017

Ok, here's one way to clear this up, but it's extremely dangerous., so please understand what you're doing.

  1. Shut Bamboo Down (or at least pause it)
  2. Get the list of plans to be kept from the database with:
    SELECT storage_tag FROM build WHERE storage_tag != '';
  3. Store the above in a text file "dirs_to_preserve.txt", with one directory per line
  4. Add the following to the text file:
    tmp
    globalStorage
  5. Now change '*' to ignore the directories in your text file as follows:
    export GLOBIGNORE=$(paste -s -d : /tmp/dirs_to_preserve.txt
  6. (still in the artifacts directory):  rm -rf -- *

Yep... you read that last one right... this is unspeakably scary.  In my case, I can't even take a backup, as the volume is full, and I have no spares.

Note that some plan names from the database may not exist as directories in the filesystem.

Once I've done the above, then I'll have enough space to make a backup beforehand, and then I can write a script that does this on a regular basis.

 

1 vote
Richard Cross December 6, 2017

I had an answer back from Atlassian Support... apparently this is "as designed".  Bamboo does not delete these folders... you have to delete them manually.

This, in spite of prolific use of the word "delete" in this article:  https://confluence.atlassian.com/bamboo/configuring-global-expiry-289277253.html

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events