当连续地将数据添加到从VM实例挂载的GCS存储桶上的文件时,会发生以下错误。
info info Aug 20 13:20:07 myserver gcsfuse gcsfuse: fuse: 2018/08/20 13:20:07.807693 *fuseops.FlushFileOp error: FileInode.Sync: SyncObject: Create: CreateObject: googleapi: Error 429: The total number of changes to the object myproject/mydir/WORK.csv exceeds the rate limit. Please reduce the rate of create, update, and delete requests., rateLimitExceeded我们可以选择不受限制的请求数量。
ExecStart=/bin/gcsfuse -o allow_other -file-mode=777 -dir-mode=777 --limit-ops-per-sec -1 --only-dir mydir/ --foreground myproject /etc/mount请告诉我解决办法。
发布于 2018-08-20 08:27:38
看起来,由于试图上传超过1倍x秒的对象,您得到了这个错误。标志--limit-ops-per-sec是请求的速率,看起来您超过了它。
https://serverfault.com/questions/927134
复制相似问题