Project

General

Profile

Bug #59626

Updated by Rishabh Dave about 1 year ago

Two separate jobs fail due to this issue 
 * TestMirroring.test_cephfs_mirror_cancel_sync: https://pulpito.ceph.com/yuriw-2023-04-27_14:53:50-fs-pacific-release-distro-default-smithi/7256090/ (and other pacific runs). 
 * TestMDSMetrics.test_delayed_metrics: https://pulpito.ceph.com/yuriw-2023-04-27_14:53:50-fs-pacific-release-distro-default-smithi/7256111 

 The traceback shows the test setup trying to initialize a client mount, however, the filesystem is not in the fsmap. 

 <pre> 
 2023-04-27T17:30:30.030 INFO:tasks.cephfs_test_runner:Traceback (most recent call last): 
 2023-04-27T17:30:30.030 INFO:tasks.cephfs_test_runner:    File "/home/teuthworker/src/github.com_rishabh-d-dave_ceph_acbc33208f1a8ff19138ed7b704f4ebf04cece8c/qa/tasks/cephfs/test_mirroring.py", line 25, in setUp 
 2023-04-27T17:30:30.030 INFO:tasks.cephfs_test_runner:      super(TestMirroring, self).setUp() 
 2023-04-27T17:30:30.030 INFO:tasks.cephfs_test_runner:    File "/home/teuthworker/src/github.com_rishabh-d-dave_ceph_acbc33208f1a8ff19138ed7b704f4ebf04cece8c/qa/tasks/cephfs/cephfs_test_case.py", line 181, in setUp 
 2023-04-27T17:30:30.030 INFO:tasks.cephfs_test_runner:      self.mounts[i].mount_wait() 
 2023-04-27T17:30:30.031 INFO:tasks.cephfs_test_runner:    File "/home/teuthworker/src/github.com_rishabh-d-dave_ceph_acbc33208f1a8ff19138ed7b704f4ebf04cece8c/qa/tasks/cephfs/mount.py", line 409, in mount_wait 
 2023-04-27T17:30:30.031 INFO:tasks.cephfs_test_runner:      self.mount(**kwargs) 
 2023-04-27T17:30:30.031 INFO:tasks.cephfs_test_runner:    File "/home/teuthworker/src/github.com_rishabh-d-dave_ceph_acbc33208f1a8ff19138ed7b704f4ebf04cece8c/qa/tasks/cephfs/fuse_mount.py", line 44, in mount 
 2023-04-27T17:30:30.031 INFO:tasks.cephfs_test_runner:      self.setupfs(name=self.cephfs_name) 
 2023-04-27T17:30:30.031 INFO:tasks.cephfs_test_runner:    File "/home/teuthworker/src/github.com_rishabh-d-dave_ceph_acbc33208f1a8ff19138ed7b704f4ebf04cece8c/qa/tasks/cephfs/mount.py", line 161, in setupfs 
 2023-04-27T17:30:30.031 INFO:tasks.cephfs_test_runner:      self.fs.wait_for_daemons() 
 2023-04-27T17:30:30.032 INFO:tasks.cephfs_test_runner:    File "/home/teuthworker/src/github.com_rishabh-d-dave_ceph_acbc33208f1a8ff19138ed7b704f4ebf04cece8c/qa/tasks/cephfs/filesystem.py", line 1140, in wait_for_daemons 
 2023-04-27T17:30:30.032 INFO:tasks.cephfs_test_runner:      status = self.getinfo(refresh=True) 
 2023-04-27T17:30:30.032 INFO:tasks.cephfs_test_runner:    File "/home/teuthworker/src/github.com_rishabh-d-dave_ceph_acbc33208f1a8ff19138ed7b704f4ebf04cece8c/qa/tasks/cephfs/filesystem.py", line 549, in getinfo 
 2023-04-27T17:30:30.032 INFO:tasks.cephfs_test_runner:      fsmap = status.get_fsmap_byname(self.name) 
 2023-04-27T17:30:30.032 INFO:tasks.cephfs_test_runner:    File "/home/teuthworker/src/github.com_rishabh-d-dave_ceph_acbc33208f1a8ff19138ed7b704f4ebf04cece8c/qa/tasks/cephfs/filesystem.py", line 131, in get_fsmap_byname 
 2023-04-27T17:30:30.033 INFO:tasks.cephfs_test_runner:      raise FSMissing(name) 
 2023-04-27T17:30:30.033 INFO:tasks.cephfs_test_runner:tasks.cephfs.filesystem.FSMissing: File system backup_fs does not exist in the map 
 </pre> 

Back