有没有办法使用 64TB 卷限制自动扩展 GCP 虚拟机上的默认主文件夹?
Is there a way to automatically extend the default home folder on GCP VMs using the 64TB volume limit?
比如在 Macbook 或任何你自己买的东西上,等等。
非常感谢!
由于 @Kolban 的 suggested,您可以动态调整永久磁盘的大小,但是您需要按照一些步骤参与此过程。
另一方面,您可以使用 Cloud Storage FUSE and have far more than 64Tb storage limited 每个对象仅 5Tb,并且 像文件系统一样挂载 :
Cloud Storage FUSE is an open source FUSE adapter that allows you to
mount Cloud Storage buckets as file systems on Linux or macOS systems.
It also provides a way for applications to upload and download Cloud
Storage objects using standard file system semantics.
拥有Cloud Storage的所有优势:
Cloud Storage provides worldwide, highly durable object storage that
scales to exabytes of data.
因此,您可以随心所欲地使用,而不必担心电流限制和扩展。
记住一些differences from a POSIX file system:
Pricing: Cloud Storage FUSE access is ultimately Cloud Storage access. All data transfer and operations performed by Cloud Storage
FUSE map to Cloud Storage transfers and operations, and are charged
accordingly. See the pricing section below for details before using
Cloud Storage FUSE.
Performance: Cloud Storage FUSE has much higher latency than a local file system. As such, throughput may be reduced when reading or
writing one small file at a time. Using larger files and/or
transferring multiple files at a time will help to increase
throughput.
Availability: Transient errors do at times occur in distributed systems like Cloud Storage, leading to less than 100% availability. It
is recommended that retries be attempted using the guidelines of
truncated exponential backoff.
Directories: By default, only directories that are explicitly defined (that is, they are their own object in Cloud Storage) will
appear in the file system. Implicit directories (that is, ones that
are only parts of the pathname of other files or directories) will not
appear by default.
您可以在 documentation 中找到更多详细信息。
比如在 Macbook 或任何你自己买的东西上,等等。
非常感谢!
由于 @Kolban 的 suggested,您可以动态调整永久磁盘的大小,但是您需要按照一些步骤参与此过程。
另一方面,您可以使用 Cloud Storage FUSE and have far more than 64Tb storage limited 每个对象仅 5Tb,并且 像文件系统一样挂载 :
Cloud Storage FUSE is an open source FUSE adapter that allows you to mount Cloud Storage buckets as file systems on Linux or macOS systems. It also provides a way for applications to upload and download Cloud Storage objects using standard file system semantics.
拥有Cloud Storage的所有优势:
Cloud Storage provides worldwide, highly durable object storage that scales to exabytes of data.
因此,您可以随心所欲地使用,而不必担心电流限制和扩展。
记住一些differences from a POSIX file system:
Pricing: Cloud Storage FUSE access is ultimately Cloud Storage access. All data transfer and operations performed by Cloud Storage FUSE map to Cloud Storage transfers and operations, and are charged accordingly. See the pricing section below for details before using Cloud Storage FUSE.
Performance: Cloud Storage FUSE has much higher latency than a local file system. As such, throughput may be reduced when reading or writing one small file at a time. Using larger files and/or transferring multiple files at a time will help to increase throughput.
Availability: Transient errors do at times occur in distributed systems like Cloud Storage, leading to less than 100% availability. It is recommended that retries be attempted using the guidelines of truncated exponential backoff.
Directories: By default, only directories that are explicitly defined (that is, they are their own object in Cloud Storage) will appear in the file system. Implicit directories (that is, ones that are only parts of the pathname of other files or directories) will not appear by default.
您可以在 documentation 中找到更多详细信息。