Project

General

Profile

Actions

Bug #61350

closed

In the readonly mode of cache tier, the object isn't be promoted, which is writed just now.

Added by Qin Wei 11 months ago. Updated 11 months ago.

Status:
Rejected
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
% Done:

0%

Source:
Tags:
Backport:
Regression:
No
Severity:
3 - minor
Reviewed:
Affected Versions:
ceph-qa-suite:
rados
Component(RADOS):
OSD
Pull request ID:
Crash signature (v1):
Crash signature (v2):

Description

Steps to Reproduce::
1. creat cache iter of cephfs data pool.
2. copy a file to the mounted cephfs directory.
3. "ceph df" display the OBJECTS of cache pool is zero.
4. read the file with dirctio mode (skiping the client cache).
5. "ceph df" display the OBJECTS of cache pool is still zero.(expecting is objects of the writed files).

I also test reading the file which is exsiting before cache tier created. That can be promoted correctly.

After analysis the log and source code, I found the check condition of CACHEMODE_READONLY is defective.
When reading the file just writed, the r=0, !obc.get()=fasle and obc->obs.exists=0.
So, do_cache_redirect() is called in this situation, although which is the reading operation.

  case pg_pool_t::CACHEMODE_READONLY:
    // TODO: clean this case up
    if (!obc.get() && r == -ENOENT) {
      // we don't have the object and op's a read
      promote_object(obc, missing_oid, oloc, op, promote_obc);
      return cache_result_t::BLOCKED_PROMOTE;
    }
    if (!r) { // it must be a write
      do_cache_redirect(op);
      return cache_result_t::HANDLED_REDIRECT;
    }

I test it in V14.2.23, but the souce code of CACHEMODE_READONLY is not changed in master branch now.


Files

tyds-osd.1.log.redirect (33.7 KB) tyds-osd.1.log.redirect Qin Wei, 05/23/2023 01:59 AM
Actions #1

Updated by Radoslaw Zarzynski 11 months ago

  • Status changed from New to Rejected

Nautilus is EOL.

Please also note the cache tiering will be depreacted in Reef.

Actions

Also available in: Atom PDF