-
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
6a33313
commit 47edfdd
Showing
1 changed file
with
22 additions
and
1 deletion.
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,2 +1,23 @@ | ||
# s3-backup-helper | ||
traQのオブジェクトストレージのバックアップツール | ||
オブジェクトストレージのバックアップツール | ||
|
||
S3バケットごとにGCSバケットを作成し、各オブジェクトをSnappyで圧縮してアップロード、全て完了したらtraQにWebhookを送信する。 | ||
|
||
# 実行 | ||
```go | ||
go run . | ||
``` | ||
|
||
`decompress`フォルダに単一ファイル解凍用のコードがある。 | ||
|
||
```go | ||
go run decompress/main.go /path/to/snappy/file | ||
``` | ||
|
||
# 設定 | ||
`sample.env`から`.env`を作るか、環境変数で指定する。 | ||
|
||
`GCS_BUCKET_NAME_SUFFIX`: GCSバケットが<S3バケット名> + `GCS_BUCKET_NAME_SUFFIX`という名前で作られる。 | ||
(GCSバケット名がグローバルでユニークである必要があるため) | ||
|
||
`PALALELL_NUM`: 同時に処理するオブジェクトの数 |