-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e5483a4
commit bee2fa9
Showing
1 changed file
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
# s3-backup-helper | ||
オブジェクトストレージのバックアップツール | ||
|
||
S3バケットごとにGCSバケットを作成し、各オブジェクトをSnappyで圧縮してアップロード、全て完了したらtraQにWebhookを送信する。 | ||
S3バケットごとにGCSバケットを作成し、各オブジェクトをSnappyで圧縮してアップロード、全て完了したらtraQにWebhookを送信します。 | ||
|
||
# 実行 | ||
## バックアップ | ||
```go | ||
go run . | ||
``` | ||
|
||
`decompress`フォルダに単一ファイル解凍用のコードがある。 | ||
## 復元 | ||
```go | ||
go run restore/main.go | ||
``` | ||
`GCS_BUCKET`から`S3_BUCKET`に復元されます。 | ||
|
||
## 単一ファイル復元 | ||
|
||
```go | ||
go run decompress/main.go /path/to/snappy/file | ||
``` | ||
|
||
# 設定 | ||
`sample.env`から`.env`を作るか、環境変数で指定する。 | ||
`sample.env`から`.env`を作るか、環境変数で指定します。 | ||
|
||
`GCS_BUCKET_NAME_SUFFIX`: GCSバケットが<S3バケット名> + `GCS_BUCKET_NAME_SUFFIX`という名前で作られる。 | ||
`GCS_BUCKET_NAME_SUFFIX`: GCSバケットが<S3バケット名> + `GCS_BUCKET_NAME_SUFFIX`という名前で作られます。 | ||
(GCSバケット名がグローバルでユニークである必要があるため) | ||
|
||
`PALALELL_NUM`: 同時に処理するオブジェクトの数 |