Project

General

Profile

Bug #46176

Updated by Tatjana Dehler almost 4 years ago

The NFS overview list is returning a timeout error if the related pool contains too many objects. The error seems to occur because of the following code lines: https://github.com/ceph/ceph/blob/master/src/pybind/mgr/dashboard/services/ganesha.py#L798-L817 
 The for-loop needs to iterate all objects returned by `ioctx.list_objects()` which may take a lot of time if the pool contains many objects. Would it be possible to get the information in another way than iterating the whole list of objects?

Back