Tobias
Tobias

Reputation: 583

Google Cloud Storage: Upload a lot of small files at once?

is there any good strategy to upload 100s of thousands of files at once? Uploading through fuse takes ages, naturally. Is there a way to upload a tar and unzip it on GCS?

Upvotes: 2

Views: 495

Answers (1)

Tobias
Tobias

Reputation: 583

Okay, that was easy:

gsutil -m rsync -d -r uploads

gsutil in general has a lot of options and is much faster than fuse.

Upvotes: 4

Related Questions