Giter Site home page Giter Site logo

darko-komericki / glacier-vault-remove Goto Github PK

View Code? Open in Web Editor NEW

This project forked from leeroybrun/glacier-vault-remove

0.0 0.0 0.0 62 KB

Remove all archives stored inside an Amazon Glacier vault, even if you have a huge number of them.

Python 97.63% Dockerfile 2.37%

glacier-vault-remove's Introduction

glacier-vault-remove

This tool can help you remove an Amazon Glacier vault, even if it's not empty.

It will remove all archives contained inside the vault, and then remove the vault itself.

It is intended to work well with vaults containing a lot of archives. I developed it because my vault contained more than 500'000 archives, and all other softwares crashed when I tried to remove all of them.

Install

Docker

If you have docker installed, you can easily run the script using the leeroyb/glacier-vault-remove image available on Docker Hub:

docker run -v /ABSOLUTE_LOCAL_PATH_TO/credentials.json:/app/credentials.json -d leeroyb/glacier-vault-remove <region-name> [<vault-name>|LIST] [DEBUG] [NUM_PROCESSES] [<job_id>|LIST|NEW|LATEST]

Make sure you use the full absolute path to credentials.json (see below), relative paths do not work here.

Without Docker

You can clone or download this repository and install the dependencies (boto3) by calling the install script :

python setup.py install

Configure

Then create a credentials.json file in the same directory as removeVault.py (or anywhere on your filesystem if using Docker) :

{
	"AWSAccessKeyId": "YOURACCESSKEY",
	"AWSSecretKey":   "YOURSECRETKEY"
}

Use

You can then use the script like this :

python removeVault.py <region-name> [<vault-name>|LIST] [DEBUG] [NUM_PROCESSES] [<job_id>|LIST|NEW|LATEST]

Example :

python removeVault.py eu-west-1 my_vault

Multiple processes

If you want to perform the removal using multiple processes (4 processes here) :

python removeVault.py <region-name> <vault-name> 4

List vaults

If you don't know the vault name, you can generate a list like this:

python removeVault.py <region-name> LIST

Inventory retrieval jobs

A vault inventory is necessary to remove all the archives inside of it. By default, we will look for an existing inventory and use it. If there is none, we will initiate a new one.

You can change this behavior using the job_id argument, with the following values:

  • LATEST (default): use the latest inventory available, or initiate a new one if there is none
  • NEW: force initiating a new inventory retrieval job
  • LIST: list the inventory retrieval jobs availables
  • <job_id>: give a specific job ID to use

For example to force a new inventory:

python removeVault.py <region-name> <vault-name> NEW

If you want to use 4 processes to remove the archives AND force a new inventory:

python removeVault.py <region-name> <vault-name> 4 NEW

Debug

By default, only the INFO messages will be printed to console. You can add a third argument "DEBUG" to the removeVault.py script if you want to show all messages.

Example :

python removeVault.py <region-name> <vault-name> DEBUG

Building the Docker image

If for whatever reason you don't want to use the leeroyb/glacier-vault-remove image on Docker Hub, you can also build the image yourself from this repository.

  1. Make sure you have docker installed
  2. Clone or download this repository
  3. Build the image:
docker build -t glacier-vault-remove .
  1. Create a credentials.json as described above

  2. Run the tool in the docker container:

docker run -v /path/to/credentials.json:/app/credentials.json glacier-vault-remove <region> <vault|LIST> [DEBUG] [NUM_PROCESSES] [<job_id>|LIST|NEW|LATEST]

Make sure you use the full absolute path to credentials.json, relative paths do not work here.

Licence

(The MIT License)

Copyright (C) 2013 Leeroy Brun, www.leeroy.me

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

glacier-vault-remove's People

Contributors

leeroybrun avatar adityabansod avatar dhermyt avatar muojp avatar rpkamp avatar arjankuijpers avatar kvasbo avatar mattbrictson avatar pawka avatar raphael-riel avatar stigok avatar mrmachine avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.