Project

General

Profile

Actions

Bug #41585

closed

mds: client evicted twice in one tick

Added by Erqi Chen over 4 years ago. Updated over 4 years ago.

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

0%

Source:
Community (dev)
Tags:
Backport:
nautilus,mimic
Regression:
No
Severity:
3 - minor
Reviewed:
Affected Versions:
ceph-qa-suite:
Component(FS):
MDS
Labels (FS):
Pull request ID:
Crash signature (v1):
Crash signature (v2):

Description

2019-08-09 14:41:39.292140 7fd33eba7700 0 log_channel(cluster) log [WRN] : client id 2646901 has not responded to cap revoke by MDS for over 30 seconds, evicting
2019-08-09 14:41:42.431933 7fd33eba7700 0 log_channel(cluster) log [WRN] : client id 2646901 has not responded to cap revoke by MDS for over 30 seconds, evicting

std::vector<client_t> Locker::get_late_revoking_clients(double timeout) const
{
  std::vector<client_t> result;

  if (any_late_revoking_caps(revoking_caps, timeout)) {
    // Slow path: execute in O(N_clients)
    for (auto &p : revoking_caps_by_client) {
      if (any_late_revoking_caps(p.second, timeout)) {
        result.push_back(p.first);
      }
    }
  } else {
    // Fast path: no misbehaving clients, execute in O(1)
  }
  return result;
}

client is put to to_evict vector twice in the situation client does't response two caps revoke.


Related issues 2 (0 open2 closed)

Copied to CephFS - Backport #41885: mimic: mds: client evicted twice in one tickResolvedSidharth AnupkrishnanActions
Copied to CephFS - Backport #41886: nautilus: mds: client evicted twice in one tickResolvedSidharth AnupkrishnanActions
Actions

Also available in: Atom PDF