DAOS Prune analyzed 1149 objects, 1127 of which were deleted

I did a prune 0 and at the end of the process, I got the following message on the console:

DAOS Prune analyzed 1149 objects, 1127 of which were deleted

25.07.2009 07:08:35 DAOSMGR: Prune 0 completed

I just wonder, how to interpret the message.

What about the 22 object that where not deleted?

Are they still there and if so, why are they not deleted?

Subject: DAOS Prune info

DAOS Prune analyzed 1149 objects, 1127 of which were deleted25.07.2009 07:08:35 DAOSMGR: Prune 0 completed

I just wonder, how to interpret the message.

What about the 22 object that where not deleted?

Are they still there and if so, why are they not deleted?

At the beginning of the prune task, we grab the current system time and adjust it for the prune interval (0 in your case ). We then iterate all of the pending DAOS objects (1149) with refcount 0 and iterate the ones which are older than the specified time. The 22 objects failed to meet the timedate comparison or could not be deleted at this time for other reasons. This could indicate that these items were being deleted during the prune cycle (in which case they will get picked up to next prune cycle). There are a few other things that could cause them to be skipped as well (if a user session still had a cached file handle, etc) but they should cycle out fairly quickly.

Subject: Thanks for the info

Thanks for the info