Hide Forgot
Description of problem: As an admin I would like to be able to see the sync status of objects in logs in a multisite configuration. Currently I can get the number of shards that are to be synced by checking radosgw-admin command "sync status". But it would be easier to check what objects need to be synced and corresponding errors upon failure in rgw log file in /var/log.
Upstream tracker: http://tracker.ceph.com/issues/15483
Are you thinking of this as a production setup? Seems like this may generate a potentially very large increase in log traffic at a realistic scale.
(In reply to Matt Benjamin (redhat) from comment #3) > Are you thinking of this as a production setup? Seems like this may > generate a potentially very large increase in log traffic at a realistic > scale. May be the shard numbers could be logged. That way I can atleast see what shard has failed. We could use that shard index to look up the rgw pools to see what files the shard contains. Or logging the objects that have failed to sync would be helpful. Not sure if it is feasible.
There is a log that logs failed sync operations. You can see that via: $ radosgw-admin sync error list
Is the command in comment #5 enough to close this bug?
> There is a log that logs failed sync operations. You can see that via: > > $ radosgw-admin sync error list Thanks that works.