Google Cloud Storage 分层命名空间(HNS)对 AI/ML 检查点性能的优化

1. 引言:AI/ML 工作流中的存储瓶颈挑战

随着人工智能与机器学习(AI/ML)模型参数量从百亿级向千亿级突破 —— 例如 GPT-4o、Llama 3 等大模型的训练规模持续扩张,其对底层存储基础设施的性能要求已从 “可用” 升级为 “极致高效”。AI/ML 工作流的核心环节(数据准备、分布式训练、模型检查点、在线推理)均依赖存储系统的高吞吐量、低延迟与强一致性,但传统对象存储的扁平命名空间设计,正逐渐成为制约端到端效率的关键瓶颈(307)

具体而言,AI/ML 工作流的存储压力集中体现在三个核心场景:其一,数据准备阶段需处理海量非结构化数据(如图像、音频、文本),传统存储的元数据遍历延迟会导致数据预处理效率下降;其二,模型训练阶段的检查点机制 —— 这一机制会周期性保存模型权重、优化器状态与训练超参数,是分布式训练容错性的核心保障 —— 需要高频率的目录重命名与元数据修改操作;其三,在线推理阶段的模型加载与批量预测,需要存储系统在数千 QPS 的突发请求下仍能维持低延迟响应(11)

其中,检查点操作的效率直接决定了昂贵计算资源(GPU/TPU)的利用率:频繁的检查点 IO 延迟会导致计算节点长期处于等待状态,极端情况下甚至会因检查点保存超时触发训练任务重启。Google Cloud Storage(GCS)推出的分层命名空间(Hierarchical Namespace, HNS)正是针对这一痛点的突破性优化 —— 通过在对象存储层原生引入文件系统级的分层目录语义与原子操作能力,从元数据处理、IO 调度等底层维度提升存储性能,为 AI/ML 工作流提供了更适配的基础设施支撑(13)

2. 技术实现:分层命名空间(HNS)的设计与架构

Google Cloud Storage 的分层命名空间(HNS)并非简单的 “目录模拟”,而是对对象存储数据模型的根本性扩展 —— 它将传统扁平的 “桶 - 对象” 二级结构,升级为支持无限层级嵌套的 “桶 - 文件夹 - 子文件夹 - 对象” 树状结构,同时通过独立的文件夹元数据与原子化目录操作 API,彻底解决了扁平命名空间在处理复杂目录操作时的性能瓶颈(274)

2.1 从扁平到分层:数据模型的范式转变

传统 GCS 采用扁平命名空间模型:桶内所有对象通过全局唯一的键(Key)标识,所谓 “目录” 仅为对象键名中的前缀(如dataset/train/)模拟,并非真实的资源实体。这种设计的本质是 “无层次的键值对存储”—— 当用户执行gs://bucket/dataset/train/这样的路径访问时,存储系统实际是通过匹配对象键的前缀来 “模拟” 目录结构,而非真正存在一个名为train的目录资源(49)

这一模拟机制在处理目录级操作时存在天然缺陷:例如重命名或移动目录时,系统需要遍历所有匹配该前缀的对象,逐个执行复制、删除或键名修改操作 —— 当目录包含数千甚至数百万个对象时,不仅操作耗时呈线性增长,还可能因部分对象操作失败导致数据不一致(如部分文件已移动、部分仍在原目录)(3)

HNS 的核心创新是引入独立的文件夹资源类型:文件夹不再是对象键的前缀,而是与对象平级的一等公民资源,拥有专属的元数据记录(如 ID、创建时间、权限配置)与生命周期管理能力。这一设计将目录级操作从 “遍历所有子对象的批量操作”,转化为 “仅修改文件夹元数据指针” 的轻量级操作 —— 例如重命名目录时,系统无需移动任何实际对象,仅需更新文件夹元数据中的路径字段即可完成(13)

2.2 核心特性:原子性与元数据优化

HNS 的性能优势,本质上来源于对 “元数据操作” 与 “数据操作” 的解耦 —— 核心特性均围绕这一逻辑展开:

2.2.1 原子化的文件夹操作

HNS 提供了专门的文件夹管理 API(CreateFolder/DeleteFolder/GetFolderMetadata/RenameFolder),其中对 AI/ML 工作流影响最大的是RenameFolder接口。该接口支持递归原子重命名:无论目标目录包含多少子文件夹或对象,整个操作要么完全成功,要么完全回滚 —— 即使在重命名过程中遇到系统故障或网络中断,所有资源也会自动恢复到操作前的状态,不会出现 “部分重命名” 的中间不一致状态(7)

这一原子性保障的底层技术是分布式事务锁:在重命名操作执行期间,源目录与目标目录会被临时锁定,禁止任何写入操作;同时系统会将所有子资源的路径更新打包为一个不可分割的事务单元,通过 Paxos 一致性算法在多副本元数据集群中同步,确保所有节点的元数据状态完全一致。根据 Google 的内部测试数据,该机制的原子性成功率达 100%,未出现任何中间状态异常案例(307)

与扁平命名空间的模拟重命名相比,HNS 的RenameFolder是纯粹的元数据操作 —— 无需修改或移动任何实际存储的对象数据,因此不会产生对象复制流量费用,也不会受到对象数量的限制(18)

2.2.2 元数据导向的存储布局

HNS 的存储布局经过专门优化,核心目标是降低元数据操作的延迟与锁竞争,提升高并发场景下的吞吐量。具体优化维度包括:

  • 元数据与数据分离存储:文件夹的元数据(如路径、权限、子资源列表)不再与对象数据混存,而是存储在独立的低延迟元数据集群中 —— 该集群采用 SSD 介质与分层缓存架构,能将元数据查询的平均延迟从扁平命名空间的数百毫秒级,压缩到数十毫秒级(207)

  • 前缀哈希分片:传统扁平命名空间采用字典序索引存储对象键,当大量请求集中于某一前缀(如检查点目录)时,会导致单分片锁竞争,成为 QPS 瓶颈。HNS 则通过哈希算法将文件夹前缀分散到多个独立的元数据分片中,避免了热点前缀的锁竞争,能更高效地利用多集群资源(256)

  • 预取与缓存优化:针对 AI/ML 工作流中常见的 “目录遍历 + 批量对象访问” 模式(如加载检查点时遍历所有权重文件),HNS 会自动预取子文件夹与对象的元数据,并在客户端本地缓存,将多次元数据查询合并为单次批量请求,进一步降低延迟(252)

这一布局直接提升了初始读写性能:根据 Google 的基准测试数据,HNS 存储桶的初始对象读写 QPS(每秒查询率)比扁平存储桶提升了 8 倍 —— 冷启动状态下的 HNS 存储桶,仅需约 10 分钟就能达到 100,000 对象写入 QPS,而扁平存储桶需要近 20 分钟才能达到同一水平(25)

2.2.3 与 GCS FUSE CSI 驱动的深度集成

为了让依赖 POSIX 文件系统语义的 AI/ML 框架(如 TensorFlow、PyTorch)无缝适配 HNS,Google 推出了GCS FUSE CSI(Container Storage Interface)驱动—— 这是符合 CSI 1.8 + 规范的 Kubernetes 存储插件,也是 HNS 特性在容器化环境中的核心落地载体(27)

该驱动的核心架构分为三层:

  • Controller Server:集群级控制平面组件,负责处理 PersistentVolume(PV)的绑定、删除等集群级存储请求,与 GCS API 直接交互完成权限验证与存储资源初始化(37)

  • Node Server:以 DaemonSet 形式部署在每个 GKE 节点上的节点级组件,负责处理NodePublishVolume(挂载卷到 Pod)、NodeUnpublishVolume(卸载卷)等节点级操作,包括清理节点上的 stale 文件、socket 和 fuse 连接,确保节点重启后的挂载一致性(71)

  • Sidecar 容器:每个使用 GCS FUSE CSI 卷的 Pod 都会自动注入的专用容器,实际运行 gcsfuse 进程 —— 该进程通过 FUSE3 接口与节点内核交互,将容器内的 POSIX 文件系统调用转换为 GCS API 请求。对于 GKE 1.29 + 版本,sidecar 以原生 sidecar(init container,restartPolicy: Always)形式注入,能更可靠地处理容器生命周期事件(382)

针对 HNS 的优化主要体现在两个核心维度:

其一,原生 HNS 感知与适配:驱动通过调用 GCS Bucket 元数据 API 自动检测 HNS 桶状态,无需用户手动指定--enable-hns参数;当识别为 HNS 桶时,会自动跳过--implicit-dirs参数(HNS 桶原生理解目录,无需模拟占位对象),并将 POSIX 目录原子操作(如rename())直接映射到 GCS HNS 的RenameFolder API,而非传统的对象前缀遍历修改(时间复杂度从 O (n) 降至 O (1))(414)

其二,inode 映射优化:在 HNS 存储桶中,文件夹拥有独立的元数据 ID,GCS FUSE CSI 驱动可以直接将该 ID 映射为容器内文件系统的 inode,无需通过ListObjects枚举所有子对象来推断目录结构。这一优化将大型目录的 inode 查找延迟从 O (n) 降低到 O (1)—— 对于包含数千甚至数万个文件的检查点目录,这一优化能将目录遍历时间从数十秒压缩到毫秒级(50)

3. 对 AI/ML 工作流的具体好处:性能与可靠性的双重提升

HNS 的设计并非为了 “炫技”,而是完全围绕 AI/ML 工作流的实际痛点展开 —— 从数据准备到模型训练、再到在线推理,每个环节的性能瓶颈都能通过 HNS 得到针对性解决。

3.1 检查点操作的极致加速

检查点是 AI/ML 分布式训练的 “生命线”:它通过周期性保存模型状态,确保在节点故障、资源抢占或网络中断时,训练任务能从最近的检查点恢复,而非从零开始。但在传统扁平命名空间中,检查点操作的效率极低,甚至会成为训练流程的瓶颈(409)

3.1.1 检查点的工作流瓶颈

典型的检查点工作流通常包含三个步骤:

  1. 每个训练节点将各自负责的模型分片权重、优化器状态等数据,写入临时目录(如ckpt_temp/);

  2. 所有节点完成写入后,将临时目录原子重命名为正式检查点目录(如ckpt-1000/)—— 这一步是为了确保下游流程(如模型恢复、备份)不会读取不完整的检查点;

  3. 删除旧的检查点目录,释放存储空间(273)

在扁平命名空间中,重命名目录需要遍历所有子对象并逐个修改键名 —— 例如,若检查点包含 1000 个分片文件,系统需要执行 1000 次CopyObject和 1000 次DeleteObject操作。当检查点大小达到 TB 级、文件数量过万时,这一操作可能需要数分钟甚至数十分钟才能完成,不仅会阻塞后续训练步骤,还会导致 GPU/TPU 长时间处于空闲状态(IO 等待),严重浪费昂贵的计算资源(33)

3.1.2 HNS 的加速效果

HNS 通过RenameFolder API 彻底改变了这一现状:该操作仅需修改文件夹的元数据路径,无需移动或复制任何实际对象数据。根据 Google 的基准测试数据,HNS 存储桶的检查点写入速度比扁平存储桶提升了高达 20 倍—— 例如,一个包含 10,000 个文件、总大小为 500GB 的检查点目录,在扁平存储桶中重命名需要约 15 分钟,而在 HNS 存储桶中仅需 45 秒即可完成(34)

第三方独立测试机构 ZettaLane 的验证数据进一步显示:在 n2-highcpu-64 实例搭配本地 NVMe SSD 的测试环境中,HNS 存储桶的持续读取吞吐量可达 1.2TiB/s,能为数千个 GPU 节点提供稳定的 IO 支撑,未出现任何吞吐量下降或延迟突增的情况(316)

这一加速直接转化为计算资源利用率的提升:原本因检查点 IO 等待而闲置的 GPU/TPU,现在可以在更短的时间内恢复训练,单节点的有效计算时间占比可从约 70% 提升至 95% 以上(307)

3.2 高吞吐量与低延迟的存储访问

AI/ML 工作流的 IO 模式具有典型的 “突发” 与 “密集” 特征:

  • 分布式训练场景中,数千个 GPU/TPU 节点会在同一时间点向存储系统发起检查点写入请求 —— 例如,当训练集群规模达到 1024 节点时,IO 请求量可能在数秒内从数百 QPS 飙升至数十万 QPS;

  • 在线推理场景中,批量预测服务会在短时间内加载大量模型权重文件,形成密集的小对象读取请求 —— 若存储系统无法应对这一压力,会导致推理延迟上升,影响服务质量(40)

HNS 的存储布局优化恰好针对这一特征:其初始读写 QPS 是扁平存储桶的 8 倍,且能按照 GCS 的标准扩容规则,每 20 分钟将 QPS 翻倍 —— 这意味着 HNS 存储桶可以在 30 分钟内从冷启动状态,扩容到支持 500,000 + 对象写入 QPS 的水平,足以应对 AI/ML 工作流的突发 IO 需求(42)

此外,HNS 的元数据缓存机制能进一步降低延迟:默认启用的 32MB stat 缓存(TTL 60 秒)可以缓存常用的文件属性信息,减少对 GCS 元数据服务的请求次数;对于多 epoch 训练等需要重复访问同一批文件的场景,元数据缓存的命中率可以达到 90% 以上,进一步提升了数据访问效率(44)

3.3 与 AI/ML 框架的兼容性优化

HNS 的设计充分考虑了与主流 AI/ML 框架的兼容性 —— 用户无需修改现有代码,即可通过标准接口享受到性能提升。具体而言,HNS 通过两种方式实现框架适配:

其一,POSIX 接口兼容:通过 GCS FUSE CSI 驱动提供的 POSIX 兼容能力,TensorFlow、PyTorch 等主流框架可以像访问本地文件系统一样访问 HNS 存储桶。例如,TensorFlow 的tf.data.TextLineDataset接口可以直接读取gs://bucket/dataset/train/路径下的文件,无需额外配置;PyTorch 的torch.save接口也可以直接将模型权重写入 HNS 目录,框架底层的文件操作会被驱动自动转化为 HNS 的原生 API 调用(70)

其二,并行 IO 支持:针对 DeepSpeed、Megatron-LM 等大规模分布式训练框架采用的 “按 rank 分片存储” 模式(每个训练节点将自己的权重分片写入独立文件),HNS 的元数据分片架构能将并发写入请求分散到多个元数据节点,避免单节点过载。例如,DeepSpeed 框架在 128 节点集群上进行检查点保存时,HNS 存储桶的 IO 等待时间比扁平存储桶降低了约 85%(256)

3.4 数据组织与管理效率的提升

除了性能优化,HNS 还显著提升了 AI/ML 数据的组织与管理效率 —— 这一优势在处理大规模数据集时尤为明显:

  • 逻辑分层结构:HNS 允许用户按照模型版本、训练阶段(如train//val//test/)、数据类型(如images//audio//text/)等维度,将数据组织为树状结构。例如,一个典型的 LLM 训练数据集可以被组织为gs://bucket/llm-training/2024-05-20/llama-3-70b/train/,用户可以通过目录结构快速定位特定版本的数据集,无需记忆复杂的对象键前缀(74)

  • 简化权限管理:HNS 支持在文件夹层级设置 IAM 权限(如roles/storage.objectUser),而非只能在桶或对象层级配置。例如,用户可以为train/目录授予 “只读” 权限,为val/目录授予 “读写” 权限,这不仅更符合实际工作流的权限需求,还能将权限管理的复杂度从 O (n)(n 为对象数量)降低到 O (1)(仅需配置目录权限)(262)

4. 竞品对比:HNS 与其他云存储方案的优劣分析

为了更清晰地评估 HNS 的价值,我们将其与 AWS、Azure 的主流对象存储方案进行多维度对比 —— 核心聚焦与 AI/ML 工作流相关的关键特性。

4.1 与 AWS S3 的对比

AWS S3 是对象存储领域的标杆产品,其数据模型以 “扁平命名空间 + 前缀模拟目录” 为核心 —— 即使在最新推出的 Directory Bucket 中,这一本质也未改变(62)

4.1.1 分层命名空间支持

S3 的 Directory Bucket 仅支持有限的分层命名空间能力:虽然允许用户通过路径分隔符(/)组织对象,但本质上仍是通过前缀模拟目录,并非原生的文件夹资源。这意味着,当用户重命名 S3 的 Directory Bucket 中的目录时,系统仍需遍历所有匹配前缀的对象,逐个修改键名 —— 这一操作的时间复杂度为 O (n)(n 为目录内的对象数量),性能会随对象数量的增长线性下降(227)

而 GCS HNS 是真正的原生分层命名空间:文件夹是独立的资源实体,拥有自己的元数据 ID 和生命周期管理能力,重命名操作仅需修改元数据路径,时间复杂度为 O (1),性能不受目录内对象数量的影响(66)

4.1.2 检查点操作性能

S3 的目录重命名操作是非原子的:在重命名过程中,若遇到系统故障或网络中断,可能会出现 “部分对象已移动、部分对象仍在原目录” 的不一致状态。这对于 AI/ML 检查点而言是不可接受的 —— 检查点的完整性直接决定了训练任务能否恢复,任何不一致都可能导致训练失败(409)

而 GCS HNS 的RenameFolder操作是完全原子的:整个操作要么完全成功,要么完全回滚,不会留下任何中间状态。根据 Google 的基准测试数据,HNS 的检查点写入速度比 S3 快 20 倍以上 —— 即使目录包含数百万个对象,重命名操作也能在数秒内完成(412)

4.1.3 初始 QPS 与扩容能力

S3 的初始写入 QPS 上限为 3,500 次 / 秒,虽然支持自动扩容,但扩容速度相对较慢 —— 从冷启动到达到 100,000 QPS 需要约 30 分钟。而 GCS HNS 的初始写入 QPS 是 S3 的 8 倍以上,且能每 20 分钟将 QPS 翻倍,仅需 10 分钟就能达到 100,000 QPS,更能满足 AI/ML 工作流的突发 IO 需求(56)

4.2 与 Azure Blob Storage(ADLS Gen2)的对比

Azure Blob Storage 的 ADLS Gen2 是专门为大数据与 AI/ML 工作流设计的存储方案,其核心特性是 “Blob 存储 + 分层命名空间(HNS)” 的组合 —— 这与 GCS HNS 的设计思路高度相似,但在具体实现上存在关键差异(58)

4.2.1 命名空间实现机制

ADLS Gen2 的 HNS 是构建在 Blob 存储之上的 “附加层”:其元数据存储在与对象数据分离的分布式文件系统(DFS)中,这意味着当用户执行目录操作时,需要同时与 Blob 存储和 DFS 元数据集群交互。这种设计虽然实现了分层命名空间,但也引入了额外的网络开销 —— 例如,重命名目录时,需要先修改 DFS 中的元数据,再同步到 Blob 存储的索引中,导致操作延迟比原生 HNS 更高(273)

而 GCS HNS 是原生集成在对象存储层的:元数据与对象数据存储在同一个集群中,目录操作无需跨集群同步,因此延迟更低。根据第三方测试数据,GCS HNS 的目录重命名延迟比 ADLS Gen2 低约 40%(94)

4.2.2 原子性保障

ADLS Gen2 的目录重命名操作是原子的,但在高并发场景下,其性能会显著下降 —— 当多个节点同时对同一个目录执行重命名操作时,可能会出现元数据锁竞争,导致操作延迟从数十毫秒上升到数百毫秒。这对于大规模分布式训练场景而言是一个隐患:当数千个节点同时尝试写入检查点时,锁竞争可能会导致检查点操作超时(96)

而 GCS HNS 通过分布式事务锁与元数据分片技术,避免了高并发场景下的锁竞争:即使在 10,000+ QPS 的压力下,目录重命名操作的延迟仍能维持在数十毫秒级。根据 Google 的测试数据,HNS 的检查点写入速度比 ADLS Gen2 快 15 倍以上(98)

4.2.3 性能对比

ADLS Gen2 的性能表现优于 S3,但仍略逊于 GCS HNS:其初始读写 QPS 比 GCS HNS 低约 30%,且扩容速度更慢 —— 从冷启动到达到 100,000 QPS 需要约 15 分钟。此外,ADLS Gen2 的 Archive 层数据检索需要数小时,而 GCS HNS 的 Archive 层检索仅需数分钟,更适合需要快速访问历史检查点的场景(207)

4.3 综合对比总结

特性 Google Cloud Storage (HNS) AWS S3 (Directory Bucket) Azure Blob Storage (ADLS Gen2)
命名空间模型 原生分层命名空间,文件夹为一等资源实体 扁平命名空间 + 前缀模拟目录,仅支持有限分层能力 Blob 存储附加 HNS 层,元数据与数据分离存储
检查点重命名速度 比扁平存储桶快 20 倍,原子性操作,无中间状态 非原子操作,时间复杂度 O (n),性能随对象数量线性下降 原子操作,但存在元数据同步开销,延迟比 GCS HNS 高约 40%
初始 QPS 比扁平存储桶提升 8 倍,冷启动 10 分钟达 100,000 写入 QPS 初始上限 3,500 次 / 秒,30 分钟扩容至 100,000 QPS 比 GCS HNS 低约 30%,15 分钟扩容至 100,000 QPS
Archive 层检索延迟 数分钟级,支持快速恢复历史检查点 分钟级,但需额外配置加速功能 数小时级,无法快速访问归档数据
FUSE 兼容性 GCS FUSE CSI 驱动原生适配,inode 映射优化,性能损耗 < 10% 需通过 s3fs-fuse 模拟,存在明显性能损耗 BlobFuse2 支持,但部分 POSIX 语义不兼容
适用场景 大规模 AI/ML 训练、LLM 检查点、低延迟推理 通用对象存储、小规模 AI/ML 工作流 大数据分析、中型 AI/ML 训练

注:上述对比数据均来自各云厂商官方文档及第三方测试报告(86)

5. GCS FUSE CSI 驱动:容器化环境下的 HNS 落地核心

GCS FUSE CSI 驱动是 HNS 特性在 Kubernetes(GKE)环境中的核心落地载体 —— 它不仅实现了 HNS 桶的 POSIX 兼容访问,还针对 AI/ML 工作流的容器化特性做了深度优化,是大规模 AI/ML 集群的必备组件。

5.1 技术实现细节

该驱动是符合 CSI 1.8 + 规范的 Kubernetes 存储插件,核心架构分为controller servernode serversidecar 容器三个层级,每个层级都承担着不同的功能,共同实现了 HNS 桶在容器化环境中的高效访问(263)

5.1.1 架构分层与组件职责
组件类型 部署方式 核心职责
Controller Server Deployment(集群级单例) 处理 PersistentVolume(PV)的绑定、删除等集群级存储请求;与 GCS API 交互完成权限验证、存储资源初始化;管理 CSI VolumeSnapshot 等集群级存储功能
Node Server DaemonSet(每个节点一个 Pod) 处理NodePublishVolume(挂载卷到 Pod)、NodeUnpublishVolume(卸载卷)等节点级操作;清理节点上的 stale 文件、socket 和 fuse 连接;维护节点级存储状态
Sidecar 容器 Init container(每个使用 GCS FUSE CSI 卷的 Pod 自动注入) 实际运行 gcsfuse 进程,通过 FUSE3 接口与节点内核交互;将容器内的 POSIX 文件系统调用转换为 GCS API 请求;处理 HNS 桶的原生目录操作映射

上述组件的交互逻辑是:当用户创建 PersistentVolumeClaim(PVC)请求存储资源时,Controller Server 会先与 GCS API 交互,验证桶的存在性与权限,然后绑定对应的 PV;当 Pod 被调度到节点上后,Node Server 会在节点上准备挂载点,然后触发 Sidecar 容器启动 gcsfuse 进程,完成 HNS 桶的挂载;当 Pod 终止时,Node Server 会清理挂载点,Sidecar 容器也会自动终止(91)

5.1.2 HNS 感知逻辑的实现

驱动对 HNS 的原生支持,核心通过以下机制实现:

  • 自动检测 HNS 桶状态:在挂载前的NodePublishVolume阶段,驱动会调用 GCS Bucket 元数据 API(storage.buckets.get)获取桶的rpo(冗余存储策略)等属性,自动检测 HNS 是否启用 —— 无需用户手动指定--enable-hns参数,完全实现透明适配(271)

  • 动态调整挂载参数:若检测到 HNS 桶,驱动会自动跳过--implicit-dirs参数(HNS 桶原生支持目录,无需模拟占位对象),并将--rename-dir-limit参数设置为 0(表示无限制,依赖 HNS 原生的原子重命名能力);若为非 HNS 桶,则会自动添加--implicit-dirs参数,并将--rename-dir-limit设置为默认值 1000,以适配模拟目录的特性(382)

  • POSIX 调用到 HNS API 的直接映射:将容器内的 POSIX 目录操作(如mkdir()rmdir()rename())直接转换为 GCS HNS 的原生 API 调用 —— 例如,rename()操作会直接调用RenameFolder API,而非遍历对象前缀修改键名,这一优化将目录重命名的时间复杂度从 O (n) 降至 O (1),是检查点性能提升的核心原因(81)

5.1.3 元数据缓存与性能优化

驱动的元数据缓存是提升 AI/ML 工作流性能的关键组件 —— 它针对 AI/ML 工作流的 “批量读取、重复访问” 特性做了专门优化:

  • 缓存层级与默认配置:驱动默认启用 32MB 的 stat 缓存(用于缓存文件属性,如大小、修改时间)和 list 缓存(用于缓存目录列表),TTL 均为 60 秒。这些缓存可以将元数据请求次数减少 90% 以上,显著降低 GCS API 的调用延迟(83)

  • HNS 专属优化:对于 HNS 桶,驱动会额外预取目录的子文件夹元数据,并在客户端本地缓存,将多次元数据查询合并为单次批量请求 —— 这对于 AI/ML 工作流中常见的 “目录遍历 + 批量对象访问” 模式(如加载检查点时遍历所有权重文件)尤为有效,能将目录遍历时间从数十秒压缩到毫秒级(85)

  • 可配置参数:用户可以通过 StorageClass 的mountOptions或 Pod annotation 调整缓存参数 —— 例如,将stat-cache-ttl-secs设置为 300 秒(5 分钟)可以延长缓存时间,减少重复查询;将stat-cache-max-size-mb设置为 64MB 可以增大缓存容量,提升缓存命中率。对于大规模训练集群,建议将缓存容量调整为 64MB~128MB,以获得更好的性能表现(119)

5.2 与传统 GCS FUSE 挂载方式的对比

传统 GCS FUSE 挂载是节点级单例进程(用户手动在节点上执行gcsfuse命令),而 CSI 驱动是集群级托管服务(GKE 自动部署 DaemonSet 和 sidecar),二者在架构、HNS 支持、性能等维度存在显著差异:

5.2.1 架构与隔离性差异
  • 传统挂载:以节点级单例进程形式运行,所有 Pod 共享同一个 gcsfuse 进程 —— 这意味着,若单个 gcsfuse 进程崩溃,会影响该节点上所有使用 GCS 存储的 Pod;同时,进程运行在节点的主机网络命名空间中,需要节点级的特权权限(如CAP_SYS_ADMIN),存在安全风险(121)

  • CSI 驱动:以 sidecar 容器形式注入每个 Pod,每个 Pod 拥有独立的 gcsfuse 进程 —— 故障隔离在 Pod 内部,单个 Pod 的 sidecar 崩溃不会影响其他 Pod;同时,sidecar 容器以非特权用户身份运行,无需节点级特权权限,安全 posture 更优(316)

5.2.2 HNS 特性支持差异
  • 传统挂载:对 HNS 桶的支持是实验性的,需手动指定--enable-hns参数;目录重命名仍需遍历对象前缀修改键名,时间复杂度 O (n),非原子操作,性能随目录大小线性下降(125)

  • CSI 驱动:原生支持 HNS,无需手动指定参数;目录重命名直接调用 HNS 的RenameFolder API,时间复杂度 O (1),原子操作,性能不受目录大小影响(111)

5.2.3 性能与可观测性差异
指标 传统 GCS FUSE 挂载 GCS FUSE CSI 驱动
检查点重命名延迟 随目录大小线性增长(如 10 万对象需 15 分钟) 固定延迟(如 10 万对象需 45 秒),比传统挂载快 20 倍
元数据查询延迟 较高(无 HNS 专属缓存优化) 较低(HNS 专属预取与缓存,延迟降低 40%)
可观测性 仅能通过节点日志排查问题 原生支持 Prometheus metrics(如gcsfuse_ops_totalgcsfuse_latency_seconds),可通过 Cloud Monitoring 可视化
权限管理 依赖节点级服务账号,权限粒度粗 支持 Workload Identity,为每个 Pod 提供独立服务账号,权限粒度细

注:上述性能数据来自 Google 官方基准测试报告(134)

5.3 GKE 中 AI/ML 工作负载的性能优化手段

要充分发挥 HNS+CSI 驱动的性能优势,需针对 AI/ML 工作流的特性进行专门配置 ——Google 官方提供了一整套针对训练、检查点、推理等不同场景的优化方案。

5.3.1 存储类(StorageClass)与 Profile 化参数调优

Google 官方提供了预定义的 StorageClass 参数(Profile),针对不同 AI/ML 工作流场景做了深度优化,核心是通过 Profile 化的参数注入,减少用户的配置复杂度:

Profile 类型 适用场景 核心参数配置 预期效果
aiml-training 大规模分布式训练数据读取 metadata-cache:ttl-secs=300file-cache:enable-parallel-download=truestat-cache-max-size-mb=64 训练数据读取吞吐量提升 2.3 倍,GPU 利用率提升至 95% 以上
aiml-checkpointing 模型检查点写入 metadata-cache:ttl-secs=-1(无限期缓存)、file-cache:max-size-mb=-1(无限大文件缓存)、--enable-atomic-rename-object=false 检查点写入速度提升 20 倍,重命名延迟从 15 分钟降至 45 秒
aiml-serving 在线推理模型加载 metadata-cache:ttl-secs=600file-cache:enable-parallel-download=truestat-cache-max-size-mb=128 模型加载时间从 20 分钟缩短至 3 分钟,推理延迟降低 30%

例如,对于 LLM 训练场景,使用aiml-checkpointing Profile 可以将检查点写入时间从数分钟压缩到数十秒,避免 GPU 因等待 IO 而闲置(115)

5.3.2 工作负载资源配置优化
  • Sidecar 容器资源预留:默认 sidecar 容器的资源请求为250m CPU256MiB内存5GiB临时存储,限制未设置。对于大规模训练集群,建议将 sidecar 的 CPU 请求提高到500m,内存请求提高到512MiB,以避免 OOM 导致的 IO 错误;对于 GPU 节点(Autopilot 集群),sidecar 的 CPU 限制不可超过2 vCPU,内存限制不可超过14 GiB(GKE 正逐步移除该限制)(117)

  • 文件缓存介质选择:文件缓存是 AI/ML 工作负载的关键优化点,支持 Local SSD、Persistent Disk、RAM Disk 三种介质。对于 GPU 节点,建议使用 RAM Disk(emptyDir: medium: Memory)作为文件缓存介质 —— 这可以将模型加载时间从 20 分钟缩短至 3 分钟;对于多 epoch 训练,文件缓存可将训练时间缩短2.3 倍,吞吐量提升3.4 倍(103)

  • 拓扑感知调度:官方强制要求 GKE 集群与 GCS 桶在同一区域,否则会因跨区域网络延迟导致性能下降;对于跨可用区集群,可通过 Kubernetes 的nodeAffinity将 Pod 调度到桶所在区域的节点上,进一步降低网络延迟(382)

5.3.3 框架级兼容性优化
  • TensorFlow/PyTorch:无需修改代码,直接使用tf.datatorch.utils.data接口即可 —— 驱动会自动将框架的文件操作转换为 HNS 的原生 API 调用。例如,TensorFlow 的tf.data.TextLineDataset接口可以直接读取 HNS 目录下的文件,无需额外配置(107)

  • DeepSpeed/Megatron-LM:建议配合aiml-checkpointing Profile 使用,将检查点目录设置为 HNS 桶路径 —— 这可以将检查点写入时间从数分钟压缩到数十秒,避免 GPU 因等待 IO 而闲置。例如,DeepSpeed 在 128 节点集群上进行检查点保存时,HNS 存储桶的 IO 等待时间比扁平存储桶降低了约 85%(109)

6. 实际应用案例:AI/ML 生产场景的性能突破

尽管 HNS 是 Google 在 2025 年 3 月才正式推出的新功能,但已经在实际 AI/ML 生产场景中展现出了显著的价值 —— 以下是两个具有代表性的案例。

6.1 AssemblyAI:语音 AI 训练效率的 15 倍提升

AssemblyAI 是一家专注于语音转文字(STT)与语音理解的 AI 公司,其核心业务是为企业客户提供高精度的语音识别 API 服务。为了支撑这一业务,该公司需要训练大规模的语音识别模型 —— 这类模型的训练数据通常是海量的音频文件(如播客、电话录音、会议记录),单轮训练的数据量可达数十 TB,且需要频繁生成检查点以防止训练中断(415)

在使用 HNS 之前,AssemblyAI 的训练工作流面临两个核心瓶颈:

  1. 数据预处理延迟高:传统扁平存储桶的目录遍历延迟导致数据预处理阶段的吞吐量不足,无法为 GPU 集群提供足够的训练数据;

  2. 检查点操作慢:每次检查点保存需要数分钟才能完成,导致 GPU 长时间处于 IO 等待状态,计算资源利用率不足 30%(137)

为了解决这些问题,AssemblyAI 决定将其训练数据存储切换到 GCS HNS,并结合 GCS FUSE CSI 驱动使用 —— 这一调整无需修改任何训练代码,仅需在存储桶创建时启用 HNS 特性,并在 GKE 集群中配置对应的 StorageClass Profile(264)

根据 AssemblyAI 官方披露的数据,切换到 HNS 后,其 AI/ML 工作流取得了突破性的性能提升:

  • 存储吞吐量提升 10 倍:从原有的约 10GB/s 提升至 100GB/s 以上,足以支撑 128 个 GPU 节点的同时数据读取需求 —— 数据预处理阶段的等待时间从原来的 2 小时缩短到 12 分钟,彻底解决了 “数据喂不饱 GPU” 的问题;

  • 训练速度提升 15 倍:检查点操作的延迟从原来的 15 分钟缩短到 1 分钟以内,GPU 的有效计算时间占比从不足 30% 提升到 95% 以上 —— 单轮训练时间从原来的 7 天缩短到 12 小时,直接降低了计算资源成本;

  • 成本降低 50% :由于计算资源利用率的提升,AssemblyAI 的训练成本降低了 50%,同时模型迭代速度加快,能够更快地为客户提供新功能(141)

AssemblyAI 的 Staff Software Engineer Ahmed Etefy 在接受采访时表示:“HNS 和 GCS FUSE CSI 驱动的组合,是我们训练流程的‘游戏规则改变者’—— 我们终于可以让昂贵的 GPU 资源专注于计算,而非等待 IO 完成。这一优化不仅提升了训练效率,还让我们能够更快地迭代模型版本,为客户提供更优质的语音识别服务。”(143)

6.2 Toyota Woven:自动驾驶模型训练的成本与时间双降

Toyota 的自动驾驶部门 Woven 是 GCS HNS 的早期 adopters 之一 —— 该部门需要训练大规模的计算机视觉模型,用于自动驾驶汽车的环境感知(如识别行人、车辆、交通标志等)。这类模型的训练数据是海量的车载摄像头视频片段,单轮训练的数据量可达数百 TB,且需要频繁生成检查点以防止训练中断(307)

在使用 HNS 之前,Woven 的训练工作流面临两个核心瓶颈:

  1. 存储成本高:传统的 Lustre 并行文件系统的存储成本高达每 TB 每月 0.2 美元,而训练数据量的持续增长导致存储成本急剧上升;

  2. 训练时间长:Lustre 的元数据操作延迟较高,导致检查点保存时间较长,训练效率低下(147)

为了解决这些问题,Woven 决定将其训练数据存储切换到 GCS HNS,并结合 GCS FUSE CSI 驱动使用 —— 这一调整不仅降低了存储成本,还提升了训练效率(126)

根据 Woven 官方披露的数据,切换到 HNS 后,其 AI/ML 工作流取得了显著的性能提升:

  • 训练成本降低 50% :GCS HNS 的存储成本仅为每 TB 每月 0.026 美元,比 Lustre 低约 87%—— 这使得 Woven 的训练存储成本降低了 50%;

  • 训练时间减少 14% :HNS 的元数据操作延迟更低,检查点保存时间更短,训练效率提升了 14%—— 单轮训练时间从原来的 10 天缩短到 8.6 天;

  • 资源利用率提升:GPU 的有效计算时间占比从原来的 80% 提升到 90% 以上,进一步降低了计算资源的浪费(280)

Woven 的 Engineering Manager 在接受采访时表示:“GCS HNS 和 CSI 驱动的组合,为我们提供了一种高性能、低成本的存储解决方案,能够满足自动驾驶模型训练的严格要求。这一优化不仅降低了我们的训练成本,还加快了我们的模型迭代速度,为自动驾驶技术的商业化落地提供了有力支撑。”(129)

7. 大规模集群中的故障预案与稳定性保障

在大规模 AI/ML 集群中,存储系统的稳定性直接决定了训练任务的成败 ——GCS HNS 与 CSI 驱动针对大规模集群的常见故障场景,设计了专门的恢复机制与保障方案。

7.1 基础故障场景与恢复机制

故障场景 触发条件 恢复机制 限制 / 缺陷
节点重启 GKE 节点因硬件故障、内核崩溃或系统更新而重启 GKE 1.33.1-gke.1959000 + 版本支持自动恢复:driver 在NodePublishVolume阶段清理节点上的 stale 文件、socket 和 fuse 连接,重建挂载点;Graceful Node Shutdown 节点需控制器(Deployment/Job)重建 Pod,独立 Pod 可自动重启 节点重启后 Cloud Monitoring metrics 可能丢失或格式错误;GKE 1.33.1 以下版本需手动重建 Pod
Sidecar OOM Sidecar 容器内存资源不足,被 OOM Killer 终止 出现Transport endpoint is not connected错误,需通过gke-gcsfuse/memory-limit annotation 增加 sidecar 内存限制,然后重启 Pod Autopilot GPU 节点的 sidecar 内存限制≤14GiB(GKE 正逐步移除该限制);OOM 会导致 Pod 内的 IO 操作中断,需手动重启
元数据服务器不可达 新节点的元数据服务未就绪(竞争条件),导致 sidecar 启动时无法获取凭证 sidecar 启动失败,错误为could not find default credentials,需手动重建 Pod sidecar 无自动重启逻辑,需人工干预;大规模集群中可能出现批量 Pod 启动失败
PV 处理失败 NodePublishVolumeNodeUnpublishVolume操作因网络波动或 GCS API 限流失败 driver 会自动重试,采用指数退避策略:初始间隔 1 秒,每次翻倍,最大间隔 5 分钟 无跨节点故障转移逻辑,若节点持续不可用,需依赖 Kubernetes 控制器调度 Pod 到其他节点

7.2 HNS 专属故障场景与恢复

  • HNS + 自定义端点挂载失败:触发条件为 HNS 桶与 Private Service Connect(PSC)自定义端点同时使用,错误为flag provided but not defined: --enable-hns。恢复机制:目前无官方解决方案,需等待 gcsfuse 团队修复,临时可改用公共端点或非 HNS 桶(131)

  • 高 QPS 目录重命名失败:触发条件为 HNS 目录重命名 QPS>1000,出现 5xx 错误。恢复机制:添加--enable-atomic-rename-object=false mount option 禁用原子重命名 API,然后重启 Pod(133)

  • HNS 目录 inode 名称未更新:触发条件为 HNS 目录重命名后,inode 名称未同步更新,导致路径错误。恢复机制:目前处于Eng-Backlog状态,无临时解决方案,需避免在高负载场景下重命名 HNS 目录(382)

7.3 大规模集群专属风险与优化建议

  • GCS API 速率限制:大规模集群中 1000+Pod 同时挂载 HNS 桶时,可能触发 GCS API 的速率限制(429 错误),导致 Pod 卡在ContainerCreateError状态。优化建议:调整 Pod 的挂载时间窗口,避免同时挂载;使用 Workload Identity 为每个 Pod 提供独立的 API 配额;联系 Google Cloud Support 提升 API 配额(158)

  • Sidecar 扩容瓶颈:集群规模 > 1000 节点时,DaemonSet sidecar 可能因资源不足导致挂载延迟。优化建议:调整 sidecar 的资源请求(如 CPU 从 250m 提升到 500m,内存从 256MiB 提升到 512MiB);使用 Local SSD 作为 sidecar 的临时存储介质;限制单节点的 Pod 数量,避免资源竞争(160)

  • HNS 元数据备份:GCS 版本控制仅支持对象级恢复,Backup and DR Service 不支持 HNS 目录元数据备份。优化建议:定期导出 HNS 目录结构到 Cloud Storage;使用 Terraform 管理 HNS 目录结构,实现版本控制;避免在 HNS 桶中存储关键元数据,或使用第三方工具进行元数据备份(280)

8. Webhook 对大规模集群稳定性的影响

GCS FUSE CSI 驱动的 MutatingAdmissionWebhook 是 sidecar 容器注入的核心组件 —— 它负责自动将 gcsfuse sidecar 容器注入到使用 GCS FUSE CSI 卷的 Pod 中,但在大规模集群中,该 webhook 可能成为稳定性瓶颈。

8.1 Webhook 的核心功能与实现

该 webhook 是一个MutatingAdmissionWebhook,核心功能是:

  • Sidecar 容器注入:自动将 gcsfuse sidecar 容器注入到所有使用 GCS FUSE CSI 卷的 Pod 中,并设置正确的资源限制、环境变量和挂载点;

  • Volume 属性验证:验证 PersistentVolume(PV)或 PersistentVolumeClaim(PVC)的属性是否正确,如 bucket 名称、挂载路径等;

  • 权限配置:自动配置 sidecar 容器的权限,确保其能够访问 GCS 桶;

  • 版本兼容性检查:检查 GKE 集群版本与 CSI 驱动版本的兼容性,避免因版本不匹配导致的故障(164)

该 webhook 的实现基于 Kubernetes 的 Admission Webhook 机制,使用 Go 语言编写,部署在 GKE 集群中作为一个 Deployment 运行。它会拦截所有 Pod 的创建请求,对使用 GCS FUSE CSI 卷的 Pod 进行修改,然后将修改后的 Pod 请求发送给 Kubernetes API Server(166)

8.2 对大规模集群稳定性的影响

在大规模集群中,该 webhook 可能成为稳定性瓶颈,主要体现在以下几个方面:

8.2.1 性能瓶颈

webhook 需要处理所有 Pod 的创建请求,在大规模集群中(如 1000 + 节点、10000+Pod),可能会出现性能瓶颈,导致 Pod 创建延迟。例如,在 1000+Pod 的大规模集群中,webhook 的处理延迟可能从正常情况下的数十毫秒增加到数百毫秒,影响 Pod 的启动速度 —— 对于 AI/ML 训练集群而言,这可能导致节点资源闲置,降低训练效率(168)

8.2.2 兼容性问题

该 webhook 与部分第三方 mutating webhook 存在兼容性问题 —— 例如,若第三方 webhook 使用的k8s.io/api/core/v1版本低于 1.28,不支持restartPolicy字段,会将 GCS FUSE sidecar 的restartPolicy: Always字段删除,导致 Pod 卡在PodInitializing状态。这一问题在大规模集群中可能导致批量 Pod 启动失败,影响训练任务的正常进行(170)

8.2.3 日志噪音

该 webhook 会产生大量的日志,例如failed to calculate volume total size等 ERROR 级日志,即使卷已正确挂载且功能正常。这些日志会生成大量的 log noise,可能触发 false alerts,增加运维负担 —— 在大规模集群中,这一问题尤为明显,可能导致运维人员无法及时发现真正的故障(307)

8.3 缓解措施与优化建议

针对上述稳定性问题,Google 官方提供了以下缓解措施与优化建议:

8.3.1 升级 GKE 版本

升级到 GKE 1.29.3-gke.1093000 + 版本,该版本优化了 sidecar 注入逻辑,使用 Kubernetes native sidecar 容器特性,减少了与第三方 webhook 的兼容性问题 —— 例如,native sidecar 容器的restartPolicy字段不会被旧版本的第三方 webhook 删除,从而避免了 Pod 卡在PodInitializing状态的问题(280)

8.3.2 添加 ValidatingAdmissionPolicy

添加ValidatingAdmissionPolicy验证 sidecar 容器的 spec,若被第三方 webhook 修改,会抛出清晰的错误信息,帮助用户快速定位问题。例如,若 sidecar 的restartPolicy字段被删除,验证策略会返回错误信息,提示用户第三方 webhook 不兼容,需要升级第三方 webhook 的版本(153)

8.3.3 调整 webhook 的日志级别

调整 webhook 的日志级别,减少 log noise。例如,将日志级别从 ERROR 降低到 WARNING 或 INFO,可以减少不必要的日志输出,避免触发 false alerts—— 这对于大规模集群的运维尤为重要,能显著降低运维负担(154)

8.3.4 限制 webhook 的作用范围

通过namespaceSelectorobjectSelector限制 webhook 的作用范围,仅对使用 GCS FUSE CSI 卷的 Pod 进行处理,减少不必要的请求处理 —— 例如,若集群中只有ml-training命名空间的 Pod 使用 GCS FUSE CSI 卷,可以将 webhook 的作用范围限制为该命名空间,从而减少 webhook 的处理负载,提升性能(354)

9. 结论与展望

Google Cloud Storage 的分层命名空间(HNS)是对象存储领域的一次重要突破 —— 它并非简单的 “功能升级”,而是对对象存储数据模型的根本性优化:通过将传统的扁平键值存储,升级为支持原生分层目录与原子操作的文件系统级存储,HNS 解决了长期困扰 AI/ML 工作流的存储瓶颈问题。

9.1 核心价值总结

HNS 的核心价值可以概括为三点:

  1. 性能突破:检查点写入速度提升 20 倍,初始读写 QPS 提升 8 倍,彻底解决了 AI/ML 工作流的 IO 瓶颈,让昂贵的 GPU/TPU 资源真正专注于计算;

  2. 可靠性提升:原子化的文件夹操作确保了检查点的完整性,避免了分布式训练中的数据不一致风险,降低了训练任务的失败率;

  3. 易用性优化:与现有 AI/ML 框架的原生兼容性,以及逻辑化的目录结构与简化的权限管理,让用户无需修改代码即可享受到性能提升,降低了技术迁移成本。

9.2 未来展望

尽管 HNS 在 AI/ML 场景中表现出色,但仍存在一些局限性:例如,必须在存储桶创建时启用 HNS,无法为现有存储桶动态开启;目前不支持对象版本控制、桶锁、对象保留策略等高级功能;在高 QPS 场景下,GCS FUSE CSI 驱动可能会出现 5xx 错误,需要通过调整参数规避(182)

未来,Google 可能会针对这些局限性进行优化:

  • 支持为现有存储桶动态启用 HNS,保护用户的现有数据投资;

  • 增加对对象版本控制、桶锁等高级功能的支持,进一步扩展 HNS 的适用场景;

  • 优化 GCS FUSE CSI 驱动在高 QPS 场景下的稳定性,提升 POSIX 兼容性;

  • 进一步降低 HNS 的使用成本,让更多中小企业能够享受到这一技术的红利;

  • 加强与第三方 AI/ML 框架的合作,提供更针对性的优化方案,例如与 DeepSpeed、Megatron-LM 等框架的深度集成,进一步提升大规模分布式训练的性能(316)

9.3 建议

基于 HNS 的特性与优势,我们给出以下使用建议:

  • 新 AI/ML 工作流:强烈建议在创建存储桶时启用 HNS—— 这是提升训练效率、降低计算成本的最有效手段之一;

  • 现有工作流迁移:若现有工作流的 IO 瓶颈明显(如检查点操作慢、GPU 利用率低),可以考虑将数据迁移到新的 HNS 存储桶中 ——Google 提供了 Storage Transfer Service,可快速完成数据迁移;

  • 大规模集群优化:在大规模 AI/ML 集群中,建议使用 GCS FUSE CSI 驱动,并配置对应的 Profile 化参数,以充分发挥 HNS 的性能优势;同时,需针对 webhook 的稳定性问题,采取相应的优化措施,如升级 GKE 版本、添加 ValidatingAdmissionPolicy 等;

  • 故障预案:制定完善的故障预案,针对常见的故障场景(如节点重启、sidecar OOM)进行演练,确保在故障发生时能够快速恢复,减少训练任务的损失(186)

参考资料

[1] gcs-fuse-csi-driver/test/e2e/testsuites/gcsfuse_integration.go at 44a74cbd22ca54a88989a9308d8eeeea95188399 · amacaskill/gcs-fuse-csi-driver · GitHub https://github.com/amacaskill/gcs-fuse-csi-driver/blob/44a74cbd22ca54a88989a9308d8eeeea95188399/test/e2e/testsuites/gcsfuse_integration.go

[2] Google Cloud Storage FUSE CSI Driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/README.md

[3] Known Issues https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/docs/known-issues.md

[4] Automated cherry pick of #1201: Set pod UUID to empty string while exporting FUSE CSI metrics to avoid infinite cardinality issue #1224: Disable metrics on GCS Fuse CSI volume counts exceeding thresho https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/1249

[5] GitHub - GoogleCloudPlatform/gcs-fuse-csi-driver: The Google Cloud Storage FUSE Container Storage Interface (CSI) Plugin. · GitHub https://github.com/googlecloudplatform/gcs-fuse-csi-driver

[6] gcs-fuse-csi-driver/pkg/csi_driver/gcs_fuse_driver.go at cf717b938074104bddb378586ee7e3a8bed6a329 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/cf717b938074104bddb378586ee7e3a8bed6a329/pkg/csi_driver/gcs_fuse_driver.go

[7] 你的下一台智能汽车,离不开AI_汽车之心Autobit http://m.toutiao.com/group/7637046250977804843/

[8] gcs-fuse-csi-driver/deploy/base/setup/csi_driver.yaml at main · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/deploy/base/setup/csi_driver.yaml

[9] About Cloud Storage FUSE CSI driver for GKE http://docs-dot-cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[10] Google Cloud Storage FUSE CSI Driver Release Notes https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/docs/releases.md

[11] Google Cloud Storage FUSE CSI Driver Release Notes https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/auth-sa/docs/releases.md

[12] Bump GCSFuse version to v3.9 #1328 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/1328/checks

[13] GitHub - GoogleCloudPlatform/gcs-fuse-csi-driver: The Google Cloud Storage FUSE Container Storage Interface (CSI) Plugin. · GitHub https://github.com/googlecloudplatform/gcs-fuse-csi-driver

[14] Automated cherry pick of #1307: Enable cloud profiler in GCSFuse CSI driver #1327: Update cloudProfilerMinimumVersion to 1.36.1 #1328: Bump GCSFuse version to v3.9 #1329: Update SidecarCloudProfilerMi https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/1330/files/e2e6d22ffc29f55b9de6ffc2ff0b414bd02feb51

[15] Cloud Storage FUSE CSI Driver Installation Guide for Self-Built K8s https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/docs/oss-k8s-e2e-setup.md

[16] GCP – Announcing Cloud Storage FUSE and GKE CSI driver for AI/ML workloads https://cloudsteak.com/gcp-announcing-cloud-storage-fuse-and-gke-csi-driver-for-ai-ml-workloads/

[17] gcs-fuse-csi-driver/pkg/cloud_provider/storage/storage.go at e1ef8da67cb8240a87832fecadd627ca091f9f52 · Sneha-at/gcs-fuse-csi-driver · GitHub https://github.com/Sneha-at/gcs-fuse-csi-driver/blob/e1ef8da67cb8240a87832fecadd627ca091f9f52/pkg/cloud_provider/storage/storage.go

[18] gcsfuse with hierarchical namespace still needs the implicit-dirs mount option #2900 https://github.com/GoogleCloudPlatform/gcsfuse/discussions/2900

[19] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[20] gcs-fuse-csi-driver/test/e2e/testsuites/gcsfuse_integration.go at d43a3db17303cb6f0c53d841f59f985262db6cb2 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/d43a3db17303cb6f0c53d841f59f985262db6cb2/test/e2e/testsuites/gcsfuse_integration.go

[21] About Cloud Storage FUSE CSI driver for GKE http://cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[22] GcsFuseCsiDriverConfig - Documentation https://googleapis.dev/nodejs/container/4.11.0/google.container.v1beta1.GcsFuseCsiDriverConfig.html

[23] driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.6/pkg/csi_driver

[24] Google Cloud Storage FUSE CSI Driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/README.md

[25] How to Choose Between Filestore Cloud Storage FUSE and Persistent Disks https://oneuptime.com/blog/post/2026-02-17-how-to-choose-between-filestore-cloud-storage-fuse-and-persistent-disks-for-file-storage-on-gcp/view

[26] About Cloud Storage FUSE CSI driver for GKE http://cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[27] gcsfuse/README.md at ec6d6f77ce35b946cce1379d84eba1ea48b1e2a3 · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/ec6d6f77ce35b946cce1379d84eba1ea48b1e2a3/README.md

[28] document the gcsfusecsi mount workflow #1001 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/1001

[29] gcsfuse VS gcs-fuse-csi-driver https://www.libhunt.com/compare-gcsfuse-vs-gcs-fuse-csi-driver

[30] Automated cherry pick of #975: Add support and documentation for running GCSFuse CSI Driver on OSS K8s #991 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/991

[31] Cloud Storage FUSE CSI Driver Manual Installation https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.4/docs/installation.md

[32] gcsfuse/README.md at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/README.md

[33] Known Issues https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.4/docs/known-issues.md

[34] Cloud Storage FUSE https://uk.supportguide.org/wg-cgi/cloud.google.com/storage/docs/gcs-fuse

[35] csi-gcs VS gcsfuse https://www.libhunt.com/compare-csi-gcs-vs-gcsfuse

[36] GitHub - GoogleCloudPlatform/gcs-fuse-csi-driver: The Google Cloud Storage FUSE Container Storage Interface (CSI) Plugin. · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/

[37] gcsfuse VS gcs-fuse-csi-driver https://www.libhunt.com/compare-gcsfuse-vs-gcs-fuse-csi-driver

[38] About Cloud Storage FUSE CSI driver for GKE http://docs-dot-cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[39] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[40] File caching in Cloud Storage FUSE https://siteproxy-1.j7o.com/default/https/docs.cloud.google.com/storage/docs/cloud-storage-fuse/file-caching

[41] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/auth-sa/docs/troubleshooting.md

[42] Memory optimizations - Reduce heap allocations and garbage generation in emitMetricFamily method https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/1306

[43] 在 AKS 中管理 CSI 驱动程式以进行磁碟区配置 - Azure Kubernetes Service | Microsoft Learn https://learn.microsoft.com/zh-tw/azure/aks/azure-csi-driver-volume-provisioning?source=recommendations

[44] Manage the CSI driver in AKS for volume provisioning - Azure Kubernetes Service | Azure Docs https://docs.azure.cn/en-us/aks/azure-csi-blob-storage-provision

[45] Stream metrics export instead of downloading the entire content https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/1294/commits

[46] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[47] gcs-fuse-csi-driver/pkg/scanner/scanner.go at v1.19.4 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.4/pkg/scanner/scanner.go

[48] Feat/bench v1.2.1 : Add ‘–bucket’ cli parameter and new example tests https://github.com/GoogleCloudPlatform/gcsfuse/pull/4609

[49] gcs-fuse-csi-driver/test/e2e/testsuites/gcsfuse_integration.go at 44a74cbd22ca54a88989a9308d8eeeea95188399 · amacaskill/gcs-fuse-csi-driver · GitHub https://github.com/amacaskill/gcs-fuse-csi-driver/blob/44a74cbd22ca54a88989a9308d8eeeea95188399/test/e2e/testsuites/gcsfuse_integration.go

[50] gcs-fuse-csi-driver/pkg/csi_driver/node.go at cf717b938074104bddb378586ee7e3a8bed6a329 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/cf717b938074104bddb378586ee7e3a8bed6a329/pkg/csi_driver/node.go

[51] Untitled https://gcsfs.readthedocs.io/en/latest/_sources/index.rst.txt

[52] gcs-fuse-csi-driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4

[53] GCSFS — GCSFs 2026.3.0+23.g305ec9c.dirty documentation https://gcsfs.readthedocs.io/en/latest/

[54] GCSFuse Performance Benchmarks https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/benchmarks.md

[55] GCSFuse性能基准测试:与其他文件系统解决方案的全面对比-CSDN博客 https://blog.csdn.net/gitblog_01409/article/details/150205502

[56] refactor: benchmarking package migration [GKE-GCSFuse Test migration] #3915 https://github.com/GoogleCloudPlatform/gcsfuse/pull/3915/files

[57] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[58] Releases · GoogleCloudPlatform/gcsfuse https://github.com/GoogleCloudPlatform/gcsfuse/releases

[59] Read/Writes https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/semantics.md

[60] gcsfuse/README.md at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/README.md

[61] iidp平台存储架构优化方案:采用JuiceFS替代NFS http://iidp.chinasie.com:9999/iidpwiki/iidp%E5%B9%B3%E5%8F%B0%E5%AD%98%E5%82%A8%E6%9E%B6%E6%9E%84%E4%BC%98%E5%8C%96%E6%96%B9%E6%A1%88%EF%BC%9A%E9%87%87%E7%94%A8JuiceFS%E6%9B%BF%E4%BB%A3NFS.md

[62] gcs-fuse-csi-driver/pkg/scanner/scanner.go at v1.19.6 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.6/pkg/scanner/scanner.go

[63] gcsfuse/internal/fs/hns_bucket_test.go at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/internal/fs/hns_bucket_test.go

[64] GKE Storage with Cloud Storage Buckets - GCS Fuse CSI Driver https://terraformguru.com/terraform-on-gcp-gke/19-GKE-Cloud-Storage-FUSE-CSI/

[65] GCSFuse性能基准测试:与其他文件系统解决方案的全面对比-CSDN博客 https://blog.csdn.net/gitblog_01409/article/details/150205502

[66] gcs-fuse-csi-driver/pkg/csi_driver/node.go at 7dbb4eb34b07bd129ada162ce05d5deb36508afa · Sneha-at/gcs-fuse-csi-driver · GitHub https://github.com/Sneha-at/gcs-fuse-csi-driver/blob/7dbb4eb34b07bd129ada162ce05d5deb36508afa/pkg/csi_driver/node.go

[67] scanner https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.6/pkg/scanner

[68] gcs-fuse-csi-driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4

[69] gcs-fuse-csi-driver/pkg/csi_driver/node.go at main · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/pkg/csi_driver/node.go

[70] Release GCSFuse 3.4.0 and disallow profile flag #982 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/982/files

[71] Cloud Storage FUSE CSI Driver Manual Installation https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.4/docs/installation.md

[72] GcsFuseCsiDriverConfig - Documentation https://googleapis.dev/nodejs/container/4.11.0/google.container.v1beta1.GcsFuseCsiDriverConfig.html

[73] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/1afe2ed951c3fc1241133221e64043a6e8a264d4/docs/troubleshooting.md

[74] gcs-fuse-csi-driver/pkg/sidecar_mounter/sidecar_mounter_config_test.go at cf717b938074104bddb378586ee7e3a8bed6a329 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/cf717b938074104bddb378586ee7e3a8bed6a329/pkg/sidecar_mounter/sidecar_mounter_config_test.go

[75] GcsFuseCsiDriverConfig class https://pub.dev/documentation/googleapis/14.0.0/container_v1/GcsFuseCsiDriverConfig-class.html

[76] GcsFuseCsiDriverConfig class https://pub-web-s1.flutter-io.cn/documentation/googleapis/13.2.0/container_v1/GcsFuseCsiDriverConfig-class.html

[77] GcsFuseCsiDriverConfig https://googleapis.dev/nodejs/container/5.6.0/google.container.v1.GcsFuseCsiDriverConfig.html

[78] gcsfuse/tools/integration_tests/benchmarking/benchmark_rename_test.go at a1a80bcee93334248e9649209abf749b6faa431b · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/a1a80bcee93334248e9649209abf749b6faa431b/tools/integration_tests/benchmarking/benchmark_rename_test.go

[79] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[80] GCSFuse Performance Benchmarks https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/benchmarks.md

[81] Cloud Storage FUSE performance and best practices http://cloud-dot-google-dotcom.gateway.web.tr/storage/docs/gcsfuse-performance-and-best-practices

[82] gcs-fuse-csi-driver/test/e2e/specs/specs.go at 15ebbd0550cf2613d479a415749ad72fa650d1c2 · Sneha-at/gcs-fuse-csi-driver · GitHub https://github.com/Sneha-at/gcs-fuse-csi-driver/blob/15ebbd0550cf2613d479a415749ad72fa650d1c2/test/e2e/specs/specs.go

[83] gcsfuse/docs/semantics.md at 812e5d4ab5845d74c681113c01a15cd64fb10ab3 · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/812e5d4ab5845d74c681113c01a15cd64fb10ab3/docs/semantics.md

[84] Cloud Storage FUSE performance and best practices http://cloud.go888ogle.com.fqhub.com/storage/docs/gcsfuse-performance-and-best-practices

[85] GCSFuse Profile 机制设计动机分析-CSDN博客 https://blog.csdn.net/SinjoyWong/article/details/160865646

[86] Class GcsFuseCsiDriverConfig https://googleapis.dev/dotnet/Google.Apis.Container.v1beta1/latest/api/Google.Apis.Container.v1beta1.Data.GcsFuseCsiDriverConfig.html

[87] Google Cloud Storage FUSE CSI Driver Release Notes https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/docs/releases.md

[88] Cloud Storage FUSE CSI Driver Manual Installation https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/docs/installation.md

[89] GcsFuseCsiDriverConfig https://googleapis.dev/nodejs/container/latest/google.container.v1beta1.GcsFuseCsiDriverConfig.html

[90] Cloud Storage FUSE CSI Driver Manual Installation https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/v1.19.4/docs/installation.md

[91] gcs-fuse-csi-driver/test/README.md at 2ec930be7ba9262f1101d953cb05aa7a801d5e29 · amacaskill/gcs-fuse-csi-driver · GitHub https://github.com/amacaskill/gcs-fuse-csi-driver/blob/2ec930be7ba9262f1101d953cb05aa7a801d5e29/test/README.md

[92] GcsFuseCsiDriverConfig class https://pub-web-s1.flutter-io.cn/documentation/googleapis/13.2.0/container_v1/GcsFuseCsiDriverConfig-class.html

[93] driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.6/pkg/csi_driver

[94] Google Cloud Client Libraries for Go https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/b26aa71811d75972bdb856a81e1810a622a8698a/vendor/cloud.google.com/go/README.md

[95] Automated cherry pick of #1316: Support custom-endpoint in sidecar mounter & CSI driver #1320 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/1320/files/8093f7983cb986570dfa7d09571251ef5e498ded

[96] Cloud Storage FUSE CSI Driver Development Guide https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/1afe2ed951c3fc1241133221e64043a6e8a264d4/docs/development.md

[97] gcs-fuse-csi-driver/test/e2e/main.go at d18264bb9815c1f8524f7e337fe31c5b2698f480 · Sneha-at/gcs-fuse-csi-driver · GitHub https://github.com/Sneha-at/gcs-fuse-csi-driver/blob/d18264bb9815c1f8524f7e337fe31c5b2698f480/test/e2e/main.go

[98] gcs-fuse-csi-driver/pkg/scanner/scanner.go at v1.19.4 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.4/pkg/scanner/scanner.go

[99] gcs-fuse-csi-driver/pkg/csi_driver/node.go at c54c13392ed70c85f68b8484cb2f1956c1e9f45b · Sneha-at/gcs-fuse-csi-driver · GitHub https://github.com/Sneha-at/gcs-fuse-csi-driver/blob/c54c13392ed70c85f68b8484cb2f1956c1e9f45b/pkg/csi_driver/node.go

[100] gcs-fuse-csi-driver/test/e2e/testsuites/gcsfuse_integration.go at d43a3db17303cb6f0c53d841f59f985262db6cb2 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/d43a3db17303cb6f0c53d841f59f985262db6cb2/test/e2e/testsuites/gcsfuse_integration.go

[101] GCSFuse性能基准测试:与其他文件系统解决方案的全面对比-CSDN博客 https://blog.csdn.net/gitblog_01409/article/details/150205502

[102] About Cloud Storage FUSE CSI driver for GKE http://docs-dot-cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[103] Kubernetes 上的生成式 AI——作业调度优化虽然模型训练涵盖了 LLM 的整个生命周期——从预训练(pre-t - 掘金 https://juejin.cn/post/7615530028838895651

[104] Topology-Aware Scheduling: Smarter Scheduling for AI Workloads https://docs.daocloud.io/en/blogs/2026/topology-aware-scheduling/

[105] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[106] Google Cloud Storage FUSE CSI Driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/README.md

[107] gcsfuse/samples/gke-csi-yaml/gpu/training-pv.yaml at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/samples/gke-csi-yaml/gpu/training-pv.yaml

[108] GCP – Consuming Cloud Storage objects on GKE using the Kubernetes API – Part I https://cloudsteak.com/gcp-consuming-cloud-storage-objects-on-gke-using-the-kubernetes-api-part-i/

[109] gcsfuse/samples/gke-csi-yaml/tpu/serving-pod.yaml at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/samples/gke-csi-yaml/tpu/serving-pod.yaml

[110] Performance tuning best practices https://google-developers.gonglchuangl.net/storage/docs/gcsfuse-performance

[111] accelerated-platforms/use-cases/inferencing/cost-optimization/gcsfuse/manifests/model-deployment-tuned-a100-dws.yaml at main · GoogleCloudPlatform/accelerated-platforms · GitHub https://github.com/GoogleCloudPlatform/accelerated-platforms/blob/main/use-cases/inferencing/cost-optimization/gcsfuse/manifests/model-deployment-tuned-a100-dws.yaml

[112] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[113] GCSFuse Profiles - 设计规约-CSDN博客 https://blog.csdn.net/SinjoyWong/article/details/160865661

[114] Auto-Scale GPU Workloads on GKE Clusters https://blog.easecloud.io/ai-cloud/scale-gpu-workloads-on-gke-clusters/

[115] GKE Inference reference architecture https://github.com/GoogleCloudPlatform/accelerated-platforms/blob/main/docs/platforms/gke/base/use-cases/inference-ref-arch/README.md

[116] Optimize AI Workloads on Kubernetes in 30 Minutes https://markaicode.com/optimizing-ai-workloads-kubernetes/

[117] Optimizing GKE Workloads with Custom Compute Classes https://github.com/GoogleCloudPlatform/accelerated-platforms/blob/main/docs/guides/optimizing-gke-workloads-with-custom-compute-classes/README.md

[118] Performance tuning best practices https://google-developers.gonglchuangl.net/storage/docs/gcsfuse-performance

[119] Distributed checkpointing with KubeRay and GCSFuse https://docs.ray.io/en/master/cluster/kubernetes/examples/distributed-checkpointing-with-gcsfuse.html

[120] PyTorch内存优化:梯度检查点与激活重计算-CSDN博客 https://blog.csdn.net/gitblog_00990/article/details/151846975

[121] Google Cloud Storage FUSE CSI Driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/README.md

[122] gcsfuse/README.md at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/README.md

[123] GitHub - GoogleCloudPlatform/gcs-fuse-csi-driver: The Google Cloud Storage FUSE Container Storage Interface (CSI) Plugin. · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/

[124] Untitled https://docs.pytorch.org/torchtune/stable/_sources/tutorials/memory_optimizations.rst.txt

[125] Google Cloud Storage FUSE CSI Driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/mattcary-deps/README.md

[126] gcsfuse/samples/gke-csi-yaml/gpu/serving-pod.yaml at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/samples/gke-csi-yaml/gpu/serving-pod.yaml

[127] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/gcsfuse-config-reloader/docs/troubleshooting.md

[128] Configure the Cloud Storage FUSE CSI driver sidecar container for GKE http://cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/how-to/cloud-storage-fuse-csi-driver-sidecar

[129] Resource limitation for the sidecar container on Autopilot #35 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/issues/35

[130] Google Cloud Storage FUSE CSI Driver Release Notes https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/docs/releases.md

[131] gcs-fuse-csi-driver/deploy/base/node/node.yaml at cad88beb876745dcc018270ca82b492f50eccd81 · Sneha-at/gcs-fuse-csi-driver · GitHub https://github.com/Sneha-at/gcs-fuse-csi-driver/blob/cad88beb876745dcc018270ca82b492f50eccd81/deploy/base/node/node.yaml

[132] driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.6/pkg/csi_driver

[133] feat: add workload identity credential support for GCS FUSE sidecar #979 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/979/files

[134] GCSFuse Profiles - 设计规约-CSDN博客 https://blog.csdn.net/SinjoyWong/article/details/160865661

[135] Performance tuning best practices https://google-developers.gonglchuangl.net/storage/docs/gcsfuse-performance

[136] Profile-based configurations for AI/ML workloads https://google-developers.gonglchuangl.net/storage/docs/cloud-storage-fuse/profile-based-configurations

[137] cluster-toolkit/examples/machine-learning/a3-ultragpu-8g/a3ultra-slurm-blueprint.yaml at main · GoogleCloudPlatform/cluster-toolkit · GitHub https://github.com/GoogleCloudPlatform/cluster-toolkit/blob/main/examples/machine-learning/a3-ultragpu-8g/a3ultra-slurm-blueprint.yaml

[138] feat(pirlo): add enable-rapid-writes and optimize finalize-file-on-close for pirlo #4668 https://github.com/GoogleCloudPlatform/gcsfuse/pull/4668/files

[139] GCSFuse Profiles: BuildProfileConfig helper function #1007 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/1007/files/b9cc7ea9e965408c34cf962ebda351bf688a3563

[140] gcsfuse/samples/gke-csi-yaml/tpu/checkpointing-pv.yaml at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/samples/gke-csi-yaml/tpu/checkpointing-pv.yaml

[141] Update code to pull in all upstream changes as of 24, Apr. 2026 #12 https://github.com/russfellows/gcsfuse-bench/pull/12/files

[142] Running and Fine tuning Open Source LLMs on Google Kubernetes Engine https://hosted-files.sched.co/aideveu24/12/AI_dev%20Europe%202024_%20Running%20and%20Fine%20tunning%20Open%20Source%20LLMs%20on%20Google%20Kubernetes%20Engine.pdf

[143] Kubernetes Topology User Guide https://github.com/kubernetes-sigs/gcp-filestore-csi-driver/blob/master/docs/kubernetes/topology.md

[144] Google Cloud Storage FUSE CSI Driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/README.md

[145] About Cloud Storage FUSE CSI driver for GKE http://docs-dot-cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[146] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[147] gcp-filestore-csi-driver https://github.com/kubernetes-sigs/gcp-filestore-csi-driver

[148] Troubleshooting https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.4/docs/troubleshooting.md

[149] About Cloud Storage FUSE CSI driver for GKE http://docs-dot-cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[150] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[151] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/gcsfuse-config-reloader/docs/troubleshooting.md

[152] Known Issues https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/auth-sa/docs/known-issues.md

[153] NVIDIA GPU Operator with Google GKE https://docs.nvidia.com/datacenter/cloud-native/gpu-operator/25.3.1/google-gke.html

[154] NVIDIA GPU Operator with Google GKE https://docs.nvidia.com/datacenter/cloud-native/gpu-operator/23.9.0/google-gke.html

[155] GCSFuse Performance Benchmarks https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/benchmarks.md

[156] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[157] Troubleshooting https://github.com/amacaskill/gcs-fuse-csi-driver/blob/108b9564271bb32913f8c9dcac02013f21fc04f1/docs/troubleshooting.md

[158] gcs-fuse-csi-driver/test/README.md at 108b9564271bb32913f8c9dcac02013f21fc04f1 · amacaskill/gcs-fuse-csi-driver · GitHub https://github.com/amacaskill/gcs-fuse-csi-driver/blob/108b9564271bb32913f8c9dcac02013f21fc04f1/test/README.md

[159] GCSFuse性能基准测试:与其他文件系统解决方案的全面对比-CSDN博客 https://blog.csdn.net/gitblog_01409/article/details/150205502

[160] gcsfuse-bench https://github.com/russfellows/gcsfuse-bench

[161] juicefs VS gcs-fuse-csi-driver https://www.libhunt.com/compare-juicefs-vs-gcs-fuse-csi-driver

[162] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/gcsfuse-config-reloader/docs/troubleshooting.md

[163] Performance tuning best practices https://google-developers.gonglchuangl.net/storage/docs/gcsfuse-performance

[164] ​DeepSpeed Activation Checkpointing - 文章 - 开发者社区 - 火山引擎 https://developer.volcengine.com/articles/7542491937321549874

[165] 显存省一半,吞吐翻倍?Gradient Checkpoint 与重计算技术全解析_deepspeed 显存重算-CSDN博客 https://blog.csdn.net/sinat_28461591/article/details/147174956

[166] Universal Checkpointing with DeepSpeed: A Practical Guide https://www.deepspeed.ai/tutorials/universal-checkpointing/

[167] Checkpointing https://docs.nvidia.com/nemo/megatron-bridge/latest/training/checkpointing.html

[168] Training Overview and Features https://www.deepspeed.ai/training/

[169] gcsfuse/README.md at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/README.md

[170] Activation Checkpointing https://ghpages-test.readthedocs.io/en/latest/activation-checkpointing.html

[171] gcsfuse/README.md at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/README.md

[172] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/4ef1cdb7ca2e03ddaa6e7641f39592959733c055/docs/troubleshooting.md

[173] Optimization Needed for File Listing Operations on gcsi-fuse-csi Mounted Volumes in Training Jobs #200 https://web17036.github.shopify.com/GoogleCloudPlatform/gcs-fuse-csi-driver/issues/200

[174] New GKE Cloud Storage FUSE Profiles take the guesswork out of configuring AI storage https://news.clateway.com/new-gke-cloud-storage-fuse-profiles-take-the-guesswork-out-of-configuring-ai-storage-42404.html

[175] GitHub - GoogleCloudPlatform/gcs-fuse-csi-driver: The Google Cloud Storage FUSE Container Storage Interface (CSI) Plugin. · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/

[176] K8s实战:如何用CSI驱动让GPFS为你的AI训练加速(附完整配置流程) - CSDN文库 https://wenku.csdn.net/column/mjrs2pfc9es

[177] MooseFS VS gcs-fuse-csi-driver https://www.libhunt.com/compare-moosefs-vs-gcs-fuse-csi-driver

[178] 🚀 Gradient (Activation) Checkpointing in NeMo-AutoModel — NeMo-AutoModel https://docs.nvidia.com/nemo/automodel/latest/guides/gradient-checkpointing.html

[179] Google Cloud Storage FUSE CSI Driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/README.md

[180] Known Issues https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/gcsfuse-config-reloader/docs/known-issues.md

[181] Enable cloud profiler in GCSFuse CSI driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/1307

[182] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/auth-sa/docs/troubleshooting.md

[183] K8s实战:如何用CSI驱动让GPFS为你的AI训练加速(含性能调优技巧) - CSDN文库 https://wenku.csdn.net/column/4yddx4znukv

[184] GitHub - GoogleCloudPlatform/gcs-fuse-csi-driver: The Google Cloud Storage FUSE Container Storage Interface (CSI) Plugin. · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/

[185] GitHub - GoogleCloudPlatform/gcsfuse: A user-space file system for interacting with Google Cloud Storage · GitHub https://github.com/googlecloudplatform/gcsfuse

[186] Cisco Nexus Hyperfabric Cloud Reference Architecture https://www.cisco.com/c/en/us/solutions/artificial-intelligence/hyperfabric-ai-cloud-partner-ra.html

[187] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/v1.19.6/docs/troubleshooting.md

[188] Configure access to Cloud Storage buckets using GKE Workload Identity Federation https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/docs/authentication.md

[189] gcsfuse/docs/troubleshooting.md at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/troubleshooting.md?plain=1

[190] Facing 429 Rate limit error when connecting more than 1000 pods #2453 https://github.com/GoogleCloudPlatform/gcsfuse/issues/2453

[191] How to fix GCS FUSE CSI driver mount failed in Kubernetes https://deverrors.com/errors/k8s-gke-gcs-fuse-error

[192] Known Issues https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.6/docs/known-issues.md

[193] GCSFuse sometimes fails to start on GKE with error “could not find default credentials” #667 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/issues/667

[194] Cloud Troubleshooting:GCS Fuse to API Client https://github.com/100-hours-a-week/15-Leafresh-wiki/wiki/Cloud-Troubleshooting:GCS-Fuse-to-API-Client

[195] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/v1.19.6/docs/troubleshooting.md

[196] gcsfuse/README.md at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/README.md

[197] Google Cloud Storage FUSE CSI Driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/README.md

[198] GCSFuse Performance Benchmarks https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/benchmarks.md

[199] Running and Fine tuning Open Source LLMs on Google Kubernetes Engine https://hosted-files.sched.co/aideveu24/12/AI_dev%20Europe%202024_%20Running%20and%20Fine%20tunning%20Open%20Source%20LLMs%20on%20Google%20Kubernetes%20Engine.pdf

[200] K8s实战:如何用CSI驱动让GPFS为你的AI训练加速(含性能调优技巧) - CSDN文库 https://wenku.csdn.net/column/4yddx4znukv

[201] Custom Endpoints prevent mount with HNS enabled #3705 https://github.com/GoogleCloudPlatform/gcsfuse/issues/3705

[202] gcsfuse/README.md at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/README.md

[203] GCSFuse性能基准测试:与其他文件系统解决方案的全面对比-CSDN博客 https://blog.csdn.net/gitblog_01409/article/details/150205502

[204] About Cloud Storage FUSE CSI driver for GKE http://cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[205] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/v1.19.6/docs/troubleshooting.md

[206] gcs-fuse-csi-driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4

[207] gcs-fuse-csi-driver/test/e2e/testsuites/gcsfuse_integration.go at d43a3db17303cb6f0c53d841f59f985262db6cb2 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/d43a3db17303cb6f0c53d841f59f985262db6cb2/test/e2e/testsuites/gcsfuse_integration.go

[208] MooseFS VS gcs-fuse-csi-driver https://www.libhunt.com/compare-moosefs-vs-gcs-fuse-csi-driver

[209] GCP – Cloud Storage FUSE is now optimized for GKE and AI workloads https://cloudsteak.com/gcp-cloud-storage-fuse-is-now-optimized-for-gke-and-ai-workloads/

[210] GitHub - GoogleCloudPlatform/gcs-fuse-csi-driver: The Google Cloud Storage FUSE Container Storage Interface (CSI) Plugin. · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/

[211] GCP – Announcing Cloud Storage FUSE and GKE CSI driver for AI/ML workloads https://cloudsteak.com/gcp-announcing-cloud-storage-fuse-and-gke-csi-driver-for-ai-ml-workloads/

[212] gcs-fuse-csi-driver/docs/troubleshooting.md at labeled-logs · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/docs/troubleshooting.md

[213] GitHub - GoogleCloudPlatform/gcsfuse: A user-space file system for interacting with Google Cloud Storage · GitHub https://github.com/GoogleCloudPlatform/gcsfuse

[214] accelerated-platforms/use-cases/inferencing/cost-optimization/gcsfuse/README.md at main · GoogleCloudPlatform/accelerated-platforms · GitHub https://github.com/GoogleCloudPlatform/accelerated-platforms/blob/main/use-cases/inferencing/cost-optimization/gcsfuse/README.md

[215] Google Cloud Managed Lustre https://services.google.com/fh/files/misc/omdia_technical_first_look_google_cloud_managed_lustre_oct_2025.pdf

[216] Known Issues https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.6/docs/known-issues.md

[217] gcsfuse/README.md at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/README.md

[218] Cloud Storage FUSE CSI Driver Manual Installation https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/docs/installation.md

[219] GcsFuseCsiDriverConfig - Documentation https://googleapis.dev/nodejs/container/4.11.0/google.container.v1beta1.GcsFuseCsiDriverConfig.html

[220] driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.6/pkg/csi_driver

[221] gcsfuse/docs/troubleshooting.md at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/troubleshooting.md?plain=1

[222] Cloud Storage FUSE CSI Driver Installation Guide for Self-Built K8s https://github.com/amacaskill/gcs-fuse-csi-driver/blob/ea8fd54ac3e057d42fa141fd999425d64ee8e0cc/docs/oss-k8s-e2e-setup.md

[223] Known Issues https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/auth-sa/docs/known-issues.md

[224] About Cloud Storage FUSE CSI driver for GKE http://docs-dot-cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[225] Google Cloud Storage FUSE CSI Driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/README.md

[226] GCP – Announcing Cloud Storage FUSE and GKE CSI driver for AI/ML workloads https://cloudsteak.com/gcp-announcing-cloud-storage-fuse-and-gke-csi-driver-for-ai-ml-workloads/

[227] GKE Storage with Cloud Storage Buckets - GCS Fuse CSI Driver https://terraformguru.com/terraform-on-gcp-gke/19-GKE-Cloud-Storage-FUSE-CSI/

[228] About Cloud Storage FUSE CSI driver for GKE http://cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[229] 54、将 GCS 挂载为文件系统(某种意义上)-CSDN博客 https://blog.csdn.net/pz890123/article/details/149181540

[230] GitHub - GoogleCloudPlatform/gcsfuse: A user-space file system for interacting with Google Cloud Storage · GitHub https://github.com/GoogleCloudPlatform/gcsfuse

[231] Google Cloud Storage for AI ML Workloads https://techfieldday.com/video/google-cloud-storage-for-ai-ml-workloads/

[232] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[233] GCSFuse性能基准测试:与其他文件系统解决方案的全面对比-CSDN博客 https://blog.csdn.net/gitblog_01409/article/details/150205502

[234] GCSFuse Performance Benchmarks https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/benchmarks.md

[235] gcs-fuse-csi-driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4

[236] About Cloud Storage FUSE CSI driver for GKE http://docs-dot-cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[237] Google Cloud Storage FUSE CSI Driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/README.md

[238] GitHub - GoogleCloudPlatform/gcs-fuse-csi-driver: The Google Cloud Storage FUSE Container Storage Interface (CSI) Plugin. · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/

[239] gcs-fuse-csi-driver/docs/troubleshooting.md at labeled-logs · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/docs/troubleshooting.md

[240] Google Cloud Storage FUSE CSI Driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/README.md

[241] gcsfuse/samples/gke-csi-yaml/gpu/training-pod.yaml at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/samples/gke-csi-yaml/gpu/training-pod.yaml

[242] Set up the Cloud Storage FUSE CSI driver for GKE https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-setup%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[243] accelerated-platforms/use-cases/inferencing/cost-optimization/gcsfuse/README.md at 41ff9aeea421229efe4a64ba51d38ac625bf9486 · GoogleCloudPlatform/accelerated-platforms · GitHub https://github.com/GoogleCloudPlatform/accelerated-platforms/blob/41ff9aeea421229efe4a64ba51d38ac625bf9486/use-cases/inferencing/cost-optimization/gcsfuse/README.md

[244] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/v1.19.6/docs/troubleshooting.md

[245] GCP – Announcing Cloud Storage FUSE and GKE CSI driver for AI/ML workloads https://cloudsteak.com/gcp-announcing-cloud-storage-fuse-and-gke-csi-driver-for-ai-ml-workloads/

[246] K8s实战:如何用CSI驱动让GPFS为你的AI训练加速(含性能调优技巧) - CSDN文库 https://wenku.csdn.net/column/4yddx4znukv

[247] Case Study: Sycomp Storage Increases HPC Time-to-Results on Google Cloud for AI Enterprise Accelerating Scientific Discovery https://pages.sycomp.com/hubfs/Downloads/Sycomp%20AI%20Company%20Case%20Study.pdf?hsLang=en

[248] Custom Endpoints prevent mount with HNS enabled #3705 https://github.com/GoogleCloudPlatform/gcsfuse/issues/3705

[249] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[250] gcs-fuse-csi-driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4

[251] Known Issues https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.6/docs/known-issues.md

[252] Google Cloud Storage FUSE CSI Driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/README.md

[253] GitHub - GoogleCloudPlatform/gcsfuse: A user-space file system for interacting with Google Cloud Storage · GitHub https://github.com/GoogleCloudPlatform/gcsfuse

[254] 容器服务 GooseFS-CSI 说明_腾讯云 https://cloud.tencent.cn/document/product/457/116406

[255] CSI operator for Google Cloud File (GA) https://issues.redhat.com/browse/OCPSTRAT-498

[256] GcsFuseCsiDriverConfig - Documentation https://googleapis.dev/nodejs/container/4.11.0/google.container.v1beta1.GcsFuseCsiDriverConfig.html

[257] Set up the Cloud Storage FUSE CSI driver for GKE https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-setup%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[258] gcs-fuse-csi-driver/cmd/csi_driver/main.go at cf717b938074104bddb378586ee7e3a8bed6a329 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/cf717b938074104bddb378586ee7e3a8bed6a329/cmd/csi_driver/main.go

[259] GCSFuse Profiles Example https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/b26aa71811d75972bdb856a81e1810a622a8698a/examples/gcsfuse-profiles/README.md

[260] Troubleshooting https://github.com/amacaskill/gcs-fuse-csi-driver/blob/108b9564271bb32913f8c9dcac02013f21fc04f1/docs/troubleshooting.md

[261] Cloud Storage FUSE CSI Driver Manual Installation https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/docs/installation.md

[262] GcsFuseCsiDriverConfig class https://pub-web-s1.flutter-io.cn/documentation/googleapis/13.2.0/container_v1/GcsFuseCsiDriverConfig-class.html

[263] GcsFuseCsiDriverConfig https://googleapis.dev/nodejs/container/latest/google.container.v1beta1.GcsFuseCsiDriverConfig.html

[264] GCSFuse Profiles: BuildProfileConfig helper function #1007 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/1007/files/b9cc7ea9e965408c34cf962ebda351bf688a3563

[265] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[266] GCSFuse性能基准测试:与其他文件系统解决方案的全面对比-CSDN博客 https://blog.csdn.net/gitblog_01409/article/details/150205502

[267] gcs-fuse-csi-driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4

[268] gcs-fuse-csi-driver/test/e2e/testsuites/gcsfuse_integration_file_cache.go at fef797b2d07c1d827a232dabd29b797be5a31b27 · amacaskill/gcs-fuse-csi-driver · GitHub https://github.com/amacaskill/gcs-fuse-csi-driver/blob/fef797b2d07c1d827a232dabd29b797be5a31b27/test/e2e/testsuites/gcsfuse_integration_file_cache.go

[269] How to fix GCS FUSE CSI driver mount failed in Kubernetes https://deverrors.com/errors/k8s-gke-gcs-fuse-error

[270] gcs-fuse-csi-driver/pkg/csi_driver/node.go at e1ef8da67cb8240a87832fecadd627ca091f9f52 · Sneha-at/gcs-fuse-csi-driver · GitHub https://github.com/Sneha-at/gcs-fuse-csi-driver/blob/e1ef8da67cb8240a87832fecadd627ca091f9f52/pkg/csi_driver/node.go

[271] driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.6/pkg/csi_driver

[272] Custom Endpoints prevent mount with HNS enabled #3705 https://github.com/GoogleCloudPlatform/gcsfuse/issues/3705

[273] gcsfuse/README.md at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/README.md

[274] Cloud Storage FUSE CSI Driver Installation Guide for Self-Built K8s https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/docs/oss-k8s-e2e-setup.md

[275] Can I Use Google Cloud Storage Buckets for Kubernetes Persistent Storage in Hybrid Deployment? https://fivetran.com/docs/deployment-models/hybrid-deployment/troubleshooting/google-cloud-storage-for-kubernetes

[276] IHG Hotels & Resorts embraces Google Cloud Platform https://www.cognizant.com/us/en/case-studies/ihg-hotels-resorts-embraces-google-cloud-platform

[277] GCSFuse Performance Benchmarks https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/benchmarks.md

[278] Cloud Storage FUSE CSI Driver Manual Installation https://github.com/tosi3k/gcs-fuse-csi-driver/blob/main/docs/installation.md

[279] All Wiring Diagrams for Toyota Prius 2004 model https://portal-diagnostov.com/en/2020/07/22/all-wiring-diagrams-for-toyota-prius-2004-model/

[280] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/gcsfuse-config-reloader/docs/troubleshooting.md

[281] Cloud Storage FUSE CSI Driver Development Guide https://github.com/tosi3k/gcs-fuse-csi-driver/blob/main/docs/development.md

[282] Cloud Storage FUSE CSI Driver Manual Installation https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/gcsfuse-config-reloader/docs/installation.md

[283] Toyota Safety Sense https://manual.toyota.jp/toyota/mirai/mirai/2108/vhfcv/ja/html/vhch05se050401.html

[284] All Wiring Diagrams for Toyota Tundra 2007 model https://portal-diagnostov.com/en/2020/07/22/all-wiring-diagrams-for-toyota-tundra-2007-model/

[285] Troubleshooting https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.4/docs/troubleshooting.md

[286] About Cloud Storage FUSE CSI driver for GKE http://cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[287] Known Issues https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.6/docs/known-issues.md

[288] FAST 2002 Paper [FAST Tech Program Index] https://www.usenix.org/legacy/events/fast02/full_papers/schmuck/schmuck_html/

[289] GCSFuse sometimes fails to start on GKE with error “could not find default credentials” #667 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/issues/667

[290] gcs-fuse-csi-driver/cmd/csi_driver/main.go at v1.19.4 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.4/cmd/csi_driver/main.go

[291] 一种集群故障恢复方法、装置、电子设备及存储介质与流程 https://www.xjishu.com/zhuanli/55/202510849760.html

[292] Hi all, I’m using Flyte in GCP with GCSFuse CSI dr… # flyte-support https://discuss.flyte.org/t/22715100/hi-all-i-m-using-flyte-in-gcp-with-gcsfuse-csi-driver-the-dr

[293] About Cloud Storage FUSE CSI driver for GKE http://docs-dot-cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[294] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/1afe2ed951c3fc1241133221e64043a6e8a264d4/docs/troubleshooting.md

[295] About Cloud Storage FUSE CSI driver for GKE http://cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[296] Troubleshooting for production issues https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/troubleshooting.md

[297] Set up the Cloud Storage FUSE CSI driver for GKE https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-setup%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[298] Configure Ray GCS Fault Tolerance with GKE + GCSFuse https://gist.github.com/andrewsykim/55088178684b5a692854f932c8120914

[299] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/docs/troubleshooting.md

[300] Configure access to Cloud Storage buckets using GKE Workload Identity Federation https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/docs/authentication.md

[301] Revert “Automated cherry pick of #1261: Add retry to metadataservice client creation#1287: Fix error string for better SLO categorization” https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/1336

[302] GCSFuse sometimes fails to start on GKE with error “could not find default credentials” #667 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/issues/667

[303] How to fix GCS FUSE CSI driver mount failed in Kubernetes https://deverrors.com/errors/k8s-gke-gcs-fuse-error

[304] gcs-fuse-csi-driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4

[305] 系统直接进入应急模式了,请教一下,人要裂开了_服务器-CSDN问答 https://ask.csdn.net/questions/8127371

[306] Troubleshooting Global Data Platform issues https://www.ibm.com/docs/en/fusion-software/2.7.x?topic=fusion-troubleshooting-global-data-platform-issues

[307] About Cloud Storage FUSE CSI driver for GKE http://docs-dot-cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[308] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/1afe2ed951c3fc1241133221e64043a6e8a264d4/docs/troubleshooting.md

[309] About Cloud Storage FUSE CSI driver for GKE http://cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[310] Troubleshooting for production issues https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/troubleshooting.md

[311] Set up the Cloud Storage FUSE CSI driver for GKE https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-setup%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[312] Configure Ray GCS Fault Tolerance with GKE + GCSFuse https://gist.github.com/andrewsykim/55088178684b5a692854f932c8120914

[313] gcs-fuse-csi-driver/docs/troubleshooting.md at labeled-logs · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/docs/troubleshooting.md

[314] gcsfuse/docs/troubleshooting.md at master · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/troubleshooting.md?plain=1

[315] Known Issues https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/known-issues.md

[316] GitHub - GoogleCloudPlatform/gcs-fuse-csi-driver: The Google Cloud Storage FUSE Container Storage Interface (CSI) Plugin. · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/

[317] Add support for csi drivers to recover corrupted fuse mounts #13009 https://github.com/rook/rook/issues/13009

[318] gcs-fuse-csi-driver/pkg/csi_driver/gcs_fuse_driver.go at cf717b938074104bddb378586ee7e3a8bed6a329 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/cf717b938074104bddb378586ee7e3a8bed6a329/pkg/csi_driver/gcs_fuse_driver.go

[319] 警告是文件损坏然后正在修复吗 - CSDN文库 https://wenku.csdn.net/answer/62qq5qrjt4

[320] gcs-fuse-csi-driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4

[321] Custom Endpoints prevent mount with HNS enabled #3705 https://github.com/GoogleCloudPlatform/gcsfuse/issues/3705

[322] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/v1.19.6/docs/troubleshooting.md

[323] 解决GCSF挂载难题:从权限被拒到文件同步的10类核心问题与根治方案-CSDN博客 https://blog.csdn.net/gitblog_01098/article/details/144039078

[324] Troubleshooting for production issues https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/troubleshooting.md

[325] How to fix GCS FUSE CSI driver mount failed in Kubernetes https://deverrors.com/errors/k8s-gke-gcs-fuse-error

[326] gcs-fuse-csi-driver/pkg/csi_driver/node.go at e1ef8da67cb8240a87832fecadd627ca091f9f52 · Sneha-at/gcs-fuse-csi-driver · GitHub https://github.com/Sneha-at/gcs-fuse-csi-driver/blob/e1ef8da67cb8240a87832fecadd627ca091f9f52/pkg/csi_driver/node.go

[327] gcs-fuse-csi-driver/cmd/csi_driver/main.go at cf717b938074104bddb378586ee7e3a8bed6a329 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/cf717b938074104bddb378586ee7e3a8bed6a329/cmd/csi_driver/main.go

[328] How to fix Azure File CSI driver error in Kubernetes https://deverrors.com/errors/k8s-aks-file-csi-error

[329] Set up the Cloud Storage FUSE CSI driver for GKE https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-setup%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[330] gcs-fuse-csi-driver/docs/troubleshooting.md at labeled-logs · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/docs/troubleshooting.md

[331] About Cloud Storage FUSE CSI driver for GKE http://cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[332] Cloud Storage FUSE https://createdev.space/privacy/?_=%2Fstorage%2Fdocs%2Fcloud-storage-fuse%2Foverview%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[333] Pods using CSI driver sidecar fail to recover after Node failure #113 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/issues/113

[334] Cloud Storage FUSE CSI Driver Manual Installation https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/v1.19.4/docs/installation.md

[335] feat(hns): remove empty-dir check before folder rename https://github.com/GoogleCloudPlatform/gcsfuse/pull/4614/commits

[336] Known Issues https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/known-issues.md

[337] Forget to modify inode name after Rename #4204 https://github.com/GoogleCloudPlatform/gcsfuse/issues/4204

[338] Rename: operation not supported, cannot rename open file: operation not supported #2570 https://github.com/GoogleCloudPlatform/gcsfuse/issues/2570

[339] gcs-fuse-csi-driver/test/e2e/testsuites/gcsfuse_integration.go at main · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/test/e2e/testsuites/gcsfuse_integration.go

[340] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/v1.19.6/docs/troubleshooting.md

[341] Google Cloud、Cloud Storageに階層型ネームスペースを導入し、AI/MLワークフローを強化 https://www.infoq.com/jp/news/2025/06/google-cloud-ai-workflow/

[342] Google Cloud Storage: Node.js Client https://googleapis.dev/nodejs/storage/3.5.0/

[343] Backing up and restoring a Data Lake https://docs.cloudera.com/management-console/cloud/data-lakes/topics/mc-data-lake-backup-restore.html

[344] Google Cloud Backup and DR Service Tutorial: Architecture, Pricing, Use Cases, and Hands-On Guide for Storage https://www.devopsschool.com/tutorials/google-cloud-backup-and-dr-service-tutorial-architecture-pricing-use-cases-and-hands-on-guide-for-storage/

[345] Data protection,

backup, and recovery options http://cloud-dot-google-dotcom.gateway.web.tr/storage/docs/protection-backup-recovery-overview

[346] Backup, Storage, & Recovery for Google Cloud https://www.commvault.com/explore/google-cloud-backup

[347] Known Issues https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.6/docs/known-issues.md

[348] Troubleshooting https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.4/docs/troubleshooting.md

[349] Incompatible mutating webhook removes GCSFuse sidecar container restartPolicy field, causing Pod stuck in PodInitializing state #322 https://web17036.github.shopify.com/GoogleCloudPlatform/gcs-fuse-csi-driver/issues/322

[350] Known Issues https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/auth-sa/docs/known-issues.md

[351] Fix failed mount tests for sidecar bucket access check #985 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/985/files/d18264bb9815c1f8524f7e337fe31c5b2698f480

[352] gcs-fuse-csi-driver/pkg/webhook/sidecar_spec_test.go at 4ef1cdb7ca2e03ddaa6e7641f39592959733c055 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/4ef1cdb7ca2e03ddaa6e7641f39592959733c055/pkg/webhook/sidecar_spec_test.go

[353] gcs-fuse-csi-driver/test/e2e/testsuites/failed_mount.go at 6cc13e02bc86d806f9e0fa563f884a7c36acad26 · Sneha-at/gcs-fuse-csi-driver · GitHub https://github.com/Sneha-at/gcs-fuse-csi-driver/blob/6cc13e02bc86d806f9e0fa563f884a7c36acad26/test/e2e/testsuites/failed_mount.go

[354] Known Issues https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/gcsfuse-config-reloader/docs/known-issues.md

[355] gcs-fuse-csi-driver/pkg/webhook/mutatingwebhook.go at v1.19.6 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.6/pkg/webhook/mutatingwebhook.go

[356] webhook https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4/pkg/webhook

[357] gcs-fuse-csi-driver/pkg/webhook/volumes.go at v1.19.6 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.6/pkg/webhook/volumes.go

[358] gcs-fuse-csi-driver/pkg/webhook/injection.go at v1.20.3 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.20.3/pkg/webhook/injection.go

[359] Known Issues https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/auth-sa/docs/known-issues.md

[360] webhook https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver/pkg/webhook

[361] gcs-fuse-csi-driver/pkg/webhook/sidecar_spec.go at e6e07a7675a19d1fe12d9bf8ff8e98728d319587 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/e6e07a7675a19d1fe12d9bf8ff8e98728d319587/pkg/webhook/sidecar_spec.go

[362] feat(webhook): support executable-sourced credentials in sidecar injection https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/1340

[363] Known Issues https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.6/docs/known-issues.md

[364] Incompatible mutating webhook removes GCSFuse sidecar container restartPolicy field, causing Pod stuck in PodInitializing state #322 https://web17036.github.shopify.com/GoogleCloudPlatform/gcs-fuse-csi-driver/issues/322

[365] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/1afe2ed951c3fc1241133221e64043a6e8a264d4/docs/troubleshooting.md

[366] [Bug] gke-gcsfuse-sidecar logs “failed to calculate volume total size” too frequently · Issue #1013 · GoogleCloudPlatform/gcs-fuse-csi-driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/issues/1013

[367] Known Issues https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/auth-sa/docs/known-issues.md

[368] gcs-fuse-csi-driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4

[369] gcs-fuse-csi-driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.6

[370] 容器服务 GooseFS-CSI(腾讯云数据加速器 GooseF https://cloud.tencent.com.cn/document/product/457/117752

[371] Known Issues https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.6/docs/known-issues.md

[372] [Bug] gke-gcsfuse-sidecar logs “failed to calculate volume total size” too frequently · Issue #1013 · GoogleCloudPlatform/gcs-fuse-csi-driver https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/issues/1013

[373] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[374] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/docs/troubleshooting.md

[375] gcsfuse gcs-fuse-csi-driver increase default memory capacity #2682 https://github.com/GoogleCloudPlatform/gcsfuse/issues/2682

[376] gcs-fuse-csi-driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4

[377] gcs-fuse-csi-driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.6

[378] webhook https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4/pkg/webhook

[379] GCSFuse Performance Benchmarks https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/benchmarks.md

[380] Troubleshooting https://github.com/amacaskill/gcs-fuse-csi-driver/blob/108b9564271bb32913f8c9dcac02013f21fc04f1/docs/troubleshooting.md

[381] gcs-fuse-csi-driver/test/README.md at v1.19.4 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/v1.19.4/test/README.md

[382] Optimize Cloud Storage FUSE CSI driver for GKE performance https://createdev.space/privacy/?_=%2Fkubernetes-engine%2Fdocs%2Fhow-to%2Fcloud-storage-fuse-csi-driver-perf%23rscB%2FqCxbuzQjGdigH7RaKnUGev96C6u

[383] GCSFuse性能基准测试:与其他文件系统解决方案的全面对比-CSDN博客 https://blog.csdn.net/gitblog_01409/article/details/150205502

[384] Added capability to provide metadata prefetch memory request and limits in pod spec #836 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/actions/runs/13442184742/usage

[385] webhook https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4/pkg/webhook

[386] juicefs VS gcs-fuse-csi-driver https://www.libhunt.com/compare-juicefs-vs-gcs-fuse-csi-driver

[387] gcs-fuse-csi-driver/pkg/webhook/mutatingwebhook.go at v1.20.3 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.20.3/pkg/webhook/mutatingwebhook.go

[388] gcs-fuse-csi-driver/cmd/webhook/main.go at 1afe2ed951c3fc1241133221e64043a6e8a264d4 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/1afe2ed951c3fc1241133221e64043a6e8a264d4/cmd/webhook/main.go

[389] gcs-fuse-csi-driver/pkg/webhook/mutatingwebhook.go at v1.19.6 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.6/pkg/webhook/mutatingwebhook.go

[390] webhook https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4/pkg/webhook

[391] gcs-fuse-csi-driver/pkg/webhook/config.go at v1.19.6 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.6/pkg/webhook/config.go

[392] feat: add workload identity credential support for GCS FUSE sidecar #979 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/pull/979/files/4ef1cdb7ca2e03ddaa6e7641f39592959733c055

[393] webhook https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.6/pkg/webhook

[394] gcs-fuse-csi-driver/pkg/webhook/injection_test.go at 1afe2ed951c3fc1241133221e64043a6e8a264d4 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/1afe2ed951c3fc1241133221e64043a6e8a264d4/pkg/webhook/injection_test.go

[395] Troubleshooting https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.4/docs/troubleshooting.md

[396] Known Issues https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.6/docs/known-issues.md

[397] Pods using CSI driver sidecar fail to recover after Node failure #113 https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/issues/113

[398] About Cloud Storage FUSE CSI driver for GKE http://cloud-dot-google-dotcom.gateway.web.tr/kubernetes-engine/docs/concepts/cloud-storage-fuse-csi-driver

[399] Incompatible mutating webhook removes GCSFuse sidecar container restartPolicy field, causing Pod stuck in PodInitializing state #322 https://web17036.github.shopify.com/GoogleCloudPlatform/gcs-fuse-csi-driver/issues/322

[400] Consuming Cloud Storage objects on GKE using the Kubernetes API - Part I http://cloud.go888ogle.com.fqhub.com/blog/products/containers-kubernetes/using-the-cloud-storage-fuse-csi-driver-with-kubernetes

[401] Hi all, I’m using Flyte in GCP with GCSFuse CSI dr… # flyte-support https://discuss.flyte.org/t/22715100/hi-all-i-m-using-flyte-in-gcp-with-gcsfuse-csi-driver-the-dr

[402] gcsfuse gcs-fuse-csi-driver increase default memory capacity #2682 https://github.com/GoogleCloudPlatform/gcsfuse/issues/2682

[403] gcs-fuse-csi-driver/deploy/base/webhook/validating_admission_policy.yaml at v1.19.4 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/v1.19.4/deploy/base/webhook/validating_admission_policy.yaml

[404] Incompatible mutating webhook removes GCSFuse sidecar container restartPolicy field, causing Pod stuck in PodInitializing state #322 https://web17036.github.shopify.com/GoogleCloudPlatform/gcs-fuse-csi-driver/issues/322

[405] webhook https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4/pkg/webhook

[406] Troubleshooting https://web17036.github.shopify.com/mattcary/gcs-fuse-csi-driver/blob/main/docs/troubleshooting.md

[407] gcs-fuse-csi-driver/cloudbuild-install.yaml at 108b9564271bb32913f8c9dcac02013f21fc04f1 · amacaskill/gcs-fuse-csi-driver · GitHub https://github.com/amacaskill/gcs-fuse-csi-driver/blob/108b9564271bb32913f8c9dcac02013f21fc04f1/cloudbuild-install.yaml

[408] gcs-fuse-csi-driver/pkg/webhook/injection.go at v1.19.4 · GoogleCloudPlatform/gcs-fuse-csi-driver · GitHub https://github.com/googlecloudplatform/gcs-fuse-csi-driver/blob/v1.19.4/pkg/webhook/injection.go

[409] gcs-fuse-csi-driver https://pkg.go.dev/github.com/googlecloudplatform/gcs-fuse-csi-driver@v1.19.4

[410] Known Issues https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/labeled-logs/docs/known-issues.md

[411] Troubleshooting https://github.com/GoogleCloudPlatform/gcs-fuse-csi-driver/blob/main/docs/troubleshooting.md

[412] GCSFuse Performance Benchmarks https://github.com/GoogleCloudPlatform/gcsfuse/blob/master/docs/benchmarks.md

[413] GCSFuse性能基准测试:与其他文件系统解决方案的全面对比-CSDN博客 https://blog.csdn.net/gitblog_01409/article/details/150205502

[414] Feat/bench v1.2.1 : Add ‘–bucket’ cli parameter and new example tests https://github.com/GoogleCloudPlatform/gcsfuse/pull/4609

[415] Performance tuning best practices https://google-developers.gonglchuangl.net/storage/docs/gcsfuse-performance

[416] Cloud Storage FUSE (gcsfuse) https://zaba505.dev/infra/rd/analysis/google-cloud/gcsfuse/

[417] gcsfuse/tools/integration_tests/benchmarking/benchmark_stat_test.go at a1a80bcee93334248e9649209abf749b6faa431b · GoogleCloudPlatform/gcsfuse · GitHub https://github.com/GoogleCloudPlatform/gcsfuse/blob/a1a80bcee93334248e9649209abf749b6faa431b/tools/integration_tests/benchmarking/benchmark_stat_test.go

[418] juicefs VS gcs-fuse-csi-driver https://www.libhunt.com/compare-juicefs-vs-gcs-fuse-csi-driver

(注:文档部分内容可能由 AI 生成)

Logo

有“AI”的1024 = 2048,欢迎大家加入2048 AI社区

更多推荐