Google-Cloud-Platform

我可以將Google云儲存桶作為磁碟安裝到具有自定義大小的 linux 實例嗎?

  • April 30, 2018

我們可以使用 Cloud FUSE 將 Google Cloud Storage Bucket 作為磁碟掛載到實例上。通過這樣做,我們將獲得 1 PiB 作為磁碟大小(儲存桶)。誰能幫我理解為什麼我們要專門獲得 1 PiB?我們可以在安裝時修改這個尺寸嗎?以及如何使用被覆蓋的權限自動掛載這個磁碟(儲存桶),即/etc/fstab. 我已將預設目錄權限(755)和文件權限(644)分別更改為 770 和 666,使用 -

mount -t gcsfuse -o allow_other -o dir_mode=770 -o file_mode=666 bucketname /path/to/mountpoint/

提前致謝。

大小顯示為 1 PiB,因為 GCS 儲存桶的大小(理論上)是無限的,並且安裝點需要具有有限大小。唯一的限制是儲存桶中每個對象 5TB。

參考:

儲存在 Cloud Storage 中的單個對象的最大大小限制為 5 TB。

https://cloud.google.com/storage/quotas

關於您對通過安裝的查詢,您需要的詳細資訊在文件/etc/fstab中很容易找到:gcsfuse

在 OS X 和 Linux 上,您還可以將條目添加到/etc/fstab文件中,如下所示:

my-bucket /mount/point gcsfuse rw,noauto,user

https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/mounting.md#mount8-and-fstab-compatibility

引用自:https://serverfault.com/questions/910009