惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fortinet All Blogs
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
WordPress大学
WordPress大学
Jina AI
Jina AI
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
腾讯CDC
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub Blog
V
Visual Studio Blog
Google DeepMind News
Google DeepMind News
月光博客
月光博客
博客园 - Franky
Y
Y Combinator Blog
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
雷峰网
雷峰网
小众软件
小众软件
H
Hackread – Cybersecurity News, Data Breaches, AI and More

OneUptime Blog

How to Monitor Azure App Services (PaaS) with OpenTelemetry Grafana Stack vs OneUptime: DIY Observability or Unified Platform? Your AI Workloads Are About to Blow Up Your Observability Bill The Great Observability Consolidation Is Here How to Write Custom Object Classes for Ceph How to Write Custom Ceph Manager Modules How to Write a ceph.conf Configuration File How to Use Rook-Ceph with OpenShift How to Use Rook-Ceph with Longhorn for Comparison How to Configure Volume Snapshot Class for RBD in Rook How to Configure VolumeReplicationClass Scheduling Intervals in Rook How to Set Up Volume Replication with Rook-Ceph How to Create Volume Group Snapshots with Rook CSI How to Visualize Ceph Network Performance in Grafana How to Enable Virtual Host-Style Bucket Access in Rook How to View Runtime Configuration via Admin Socket How to View PG Scaling Recommendations with autoscale-status How to View PG Distribution via Admin Socket How to View Performance Metrics in the Ceph Dashboard How to View OSD Performance Counters in Ceph How to View Connection Status via Admin Socket How to View Ceph Cluster Summary Dashboard via CLI How to Version Control Rook-Ceph Configuration How to Version Control Ceph Infrastructure with Terraform How to Verify Kubernetes Node Requirements for Rook-Ceph Deployment How to Verify Health Before and After Rook Upgrades How to Verify Data Integrity with Deep Scrubbing How to Verify Complete Rook-Ceph Cleanup How to Verify Backup Integrity from Ceph Snapshots How to Use Rook-Ceph with Velero for Kubernetes Backup
How to View Quota Settings and Update Stats in Ceph RGW
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Ceph RGW updates quota statistics asynchronously, which means user stats may lag behind the actual current usage. To get the latest quota usage numbers, run user stats with --sync-stats before reading them. This guide covers how to view quota settings and update stats effectively.

Why Stats Need to Be Synced

Quota stats are updated asynchronously. The documented way to refresh the latest user quota usage is to run radosgw-admin user stats --uid <uid> --sync-stats before reading user stats output. Ceph also caches quota statistics on each RGW instance, so quota enforcement across multiple gateways is not perfectly synchronized unless those cache and sync intervals are tuned.

Viewing User Quota and Current Stats

Always sync before viewing to get accurate numbers:

# Sync and view current user usage
radosgw-admin user stats --uid alice --sync-stats

# View configured quota settings
radosgw-admin user info --uid alice

Look for the stats section in user stats output:

{
  "stats": {
    "size": 5368709120,
    "size_actual": 5368709120,
    "num_objects": 45000
  }
}

Look for the user_quota section in user info output:

{
  "user_id": "alice",
  "user_quota": {
    "enabled": true,
    "max_size_kb": 10485760,
    "max_objects": 1000000
  }
}

Viewing Bucket Quota and Stats

# View bucket stats
radosgw-admin bucket stats --bucket mybucket

# View the bucket quota configured for buckets owned by alice
radosgw-admin user info --uid alice | jq '.bucket_quota'

Unlike user stats, the documented --sync-stats flag does not apply to bucket stats. The bucket sync enable and bucket sync disable commands are multisite sync controls, not usage refresh commands.

Getting Quota Settings Only

# User quota settings
radosgw-admin user info --uid alice | jq '.user_quota'

# Bucket quota settings for buckets owned by the user
radosgw-admin user info --uid alice | jq '.bucket_quota'

Syncing Stats for All Buckets of a User

# Refresh the user's quota stats from the current bucket indexes
radosgw-admin user stats --uid alice --sync-stats

Global Stats Sync

To refresh quota stats for all users:

radosgw-admin user list | jq -r '.[]' | while read -r USER_ID; do
  radosgw-admin user stats --uid "$USER_ID" --sync-stats
done

Monitoring Quota Usage Percentage

A script to check quota utilization:

#!/bin/bash
USER_ID=$1
STATS=$(radosgw-admin user stats --uid "$USER_ID" --sync-stats)
USED=$(echo "$STATS" | jq -r '.stats.size // 0')
MAX_KB=$(radosgw-admin user info --uid "$USER_ID" | jq -r '.user_quota.max_size_kb // -1')

if [ "$MAX_KB" != "-1" ] && [ "$MAX_KB" -gt 0 ]; then
  MAX=$((MAX_KB * 1024))
  PERCENT=$(echo "scale=1; $USED * 100 / $MAX" | bc)
  echo "User $USER_ID: ${PERCENT}% of quota used ($USED / $MAX bytes)"
else
  echo "User $USER_ID: no quota limit set"
fi

Summary

Accurate quota and usage reporting in Ceph RGW requires syncing user stats with --sync-stats before reading them, since RGW updates quota stats asynchronously. Use user info for the configured limits and user stats or bucket stats for current consumption. Build periodic stat-sync jobs to keep user quota reporting current and reduce stale usage data.