2024-09-20T19:50:56.932 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-20T19:50:56.949 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-20T19:50:57.044 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/adking-2024-09-20_18:25:04-orch:cephadm-wip-adk-testing-2024-09-20-0910-distro-default-smithi/7912850 branch: wip-adk-testing-2024-09-20-0910 description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: adking@redhat.com first_in_suite: false job_id: '7912850' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: adking-2024-09-20_18:25:04-orch:cephadm-wip-adk-testing-2024-09-20-0910-distro-default-smithi no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: wip-adk-testing-2024-09-20-0910 ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - CEPHADM_DAEMON_PLACE_FAIL - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 workunit: branch: wip-adk-testing-2024-09-20-0910 sha1: e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 owner: scheduled_adking@teuthology priority: 80 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 8031 sha1: e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 sleep_before_teardown: 0 subset: 1/20 suite: orch:cephadm suite_branch: wip-adk-testing-2024-09-20-0910 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 targets: smithi094.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOTU+inD4vzJITSyK4KkOCfnbS7tm768o3dR4CLkEXZ3+KJh+Sx9k4LIcF7FPd2vDJDSiU8JhJfI0NSe9fQoZEU= smithi110.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOtUNYvZ28BldqxaSCAxQIZpp1NVc9CwwvDG+9sxjnNWtlDUa4Yjh3b9eLNDSsrzbCVGU1BOP6yZvtfdkTsXpp0= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foobucket - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-20_18:25:04 tube: smithi user: adking verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2902 2024-09-20T19:50:57.044 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa; will attempt to use it 2024-09-20T19:50:57.044 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa/tasks 2024-09-20T19:50:57.045 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-20T19:50:57.046 INFO:teuthology.task.internal:Checking packages... 2024-09-20T19:50:57.066 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'e8baca1eac6c3c9c88bf2ea4493e448bd54936a7' 2024-09-20T19:50:57.066 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-20T19:50:57.066 INFO:teuthology.packaging:ref: None 2024-09-20T19:50:57.067 INFO:teuthology.packaging:tag: None 2024-09-20T19:50:57.067 INFO:teuthology.packaging:branch: wip-adk-testing-2024-09-20-0910 2024-09-20T19:50:57.067 INFO:teuthology.packaging:sha1: e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 2024-09-20T19:50:57.067 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=wip-adk-testing-2024-09-20-0910 2024-09-20T19:50:57.206 INFO:teuthology.task.internal:Found packages for ceph version 19.3.0-5127-ge8baca1e-1jammy 2024-09-20T19:50:57.208 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-20T19:50:57.215 INFO:teuthology.task.internal:no buildpackages task found 2024-09-20T19:50:57.215 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-20T19:50:57.247 INFO:teuthology.task.internal:Saving configuration 2024-09-20T19:50:57.260 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-20T19:50:57.277 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-20T19:50:57.303 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi094.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-09-20_18:25:04-orch:cephadm-wip-adk-testing-2024-09-20-0910-distro-default-smithi/7912850', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-20 19:45:22.521801', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMNljWMICEoFH/xVfGyMVszmHOXYt3bFODuFnCUJF6lE'} 2024-09-20T19:50:57.328 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi110.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-09-20_18:25:04-orch:cephadm-wip-adk-testing-2024-09-20-0910-distro-default-smithi/7912850', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-20 19:45:22.520607', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFcziF4eCtXQBTwhX4Z2CR4EBdaZ26K6Hk6So57Nr346'} 2024-09-20T19:50:57.329 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-20T19:50:57.339 INFO:teuthology.task.internal:roles: ubuntu@smithi094.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-09-20T19:50:57.339 INFO:teuthology.task.internal:roles: ubuntu@smithi110.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-09-20T19:50:57.339 INFO:teuthology.run_tasks:Running task console_log... 2024-09-20T19:50:57.404 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f9e2709c280>, signals=[15]) 2024-09-20T19:50:57.404 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-20T19:50:57.409 INFO:teuthology.task.internal:Opening connections... 2024-09-20T19:50:57.409 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi094.front.sepia.ceph.com 2024-09-20T19:50:57.410 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi094.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T19:50:57.491 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi110.front.sepia.ceph.com 2024-09-20T19:50:57.491 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T19:50:57.581 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-20T19:50:57.587 DEBUG:teuthology.orchestra.run.smithi094:> uname -m 2024-09-20T19:50:57.592 INFO:teuthology.orchestra.run.smithi094.stdout:x86_64 2024-09-20T19:50:57.592 DEBUG:teuthology.orchestra.run.smithi094:> cat /etc/os-release 2024-09-20T19:50:57.645 INFO:teuthology.orchestra.run.smithi094.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-20T19:50:57.645 INFO:teuthology.orchestra.run.smithi094.stdout:NAME="Ubuntu" 2024-09-20T19:50:57.645 INFO:teuthology.orchestra.run.smithi094.stdout:VERSION_ID="22.04" 2024-09-20T19:50:57.645 INFO:teuthology.orchestra.run.smithi094.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-20T19:50:57.645 INFO:teuthology.orchestra.run.smithi094.stdout:VERSION_CODENAME=jammy 2024-09-20T19:50:57.645 INFO:teuthology.orchestra.run.smithi094.stdout:ID=ubuntu 2024-09-20T19:50:57.645 INFO:teuthology.orchestra.run.smithi094.stdout:ID_LIKE=debian 2024-09-20T19:50:57.645 INFO:teuthology.orchestra.run.smithi094.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-20T19:50:57.645 INFO:teuthology.orchestra.run.smithi094.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-20T19:50:57.646 INFO:teuthology.orchestra.run.smithi094.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-20T19:50:57.646 INFO:teuthology.orchestra.run.smithi094.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-20T19:50:57.646 INFO:teuthology.orchestra.run.smithi094.stdout:UBUNTU_CODENAME=jammy 2024-09-20T19:50:57.646 INFO:teuthology.lock.ops:Updating smithi094.front.sepia.ceph.com on lock server 2024-09-20T19:50:57.670 DEBUG:teuthology.orchestra.run.smithi110:> uname -m 2024-09-20T19:50:57.675 INFO:teuthology.orchestra.run.smithi110.stdout:x86_64 2024-09-20T19:50:57.675 DEBUG:teuthology.orchestra.run.smithi110:> cat /etc/os-release 2024-09-20T19:50:57.722 INFO:teuthology.orchestra.run.smithi110.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-20T19:50:57.722 INFO:teuthology.orchestra.run.smithi110.stdout:NAME="Ubuntu" 2024-09-20T19:50:57.722 INFO:teuthology.orchestra.run.smithi110.stdout:VERSION_ID="22.04" 2024-09-20T19:50:57.722 INFO:teuthology.orchestra.run.smithi110.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-20T19:50:57.723 INFO:teuthology.orchestra.run.smithi110.stdout:VERSION_CODENAME=jammy 2024-09-20T19:50:57.723 INFO:teuthology.orchestra.run.smithi110.stdout:ID=ubuntu 2024-09-20T19:50:57.723 INFO:teuthology.orchestra.run.smithi110.stdout:ID_LIKE=debian 2024-09-20T19:50:57.723 INFO:teuthology.orchestra.run.smithi110.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-20T19:50:57.723 INFO:teuthology.orchestra.run.smithi110.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-20T19:50:57.723 INFO:teuthology.orchestra.run.smithi110.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-20T19:50:57.723 INFO:teuthology.orchestra.run.smithi110.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-20T19:50:57.723 INFO:teuthology.orchestra.run.smithi110.stdout:UBUNTU_CODENAME=jammy 2024-09-20T19:50:57.723 INFO:teuthology.lock.ops:Updating smithi110.front.sepia.ceph.com on lock server 2024-09-20T19:50:57.753 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-20T19:50:57.764 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-20T19:50:57.771 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-20T19:50:57.771 DEBUG:teuthology.orchestra.run.smithi094:> test '!' -e /home/ubuntu/cephtest 2024-09-20T19:50:57.773 DEBUG:teuthology.orchestra.run.smithi110:> test '!' -e /home/ubuntu/cephtest 2024-09-20T19:50:57.778 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-20T19:50:57.784 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-20T19:50:57.784 DEBUG:teuthology.orchestra.run.smithi094:> test -z $(ls -A /var/lib/ceph) 2024-09-20T19:50:57.822 DEBUG:teuthology.orchestra.run.smithi110:> test -z $(ls -A /var/lib/ceph) 2024-09-20T19:50:57.914 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-20T19:50:57.967 INFO:teuthology.run_tasks:Running task kernel... 2024-09-20T19:50:57.982 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-20T19:50:57.982 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-20T19:50:57.983 DEBUG:teuthology.orchestra.run.smithi094:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-20T19:50:57.983 DEBUG:teuthology.orchestra.run.smithi110:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-20T19:50:57.987 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T19:50:57.988 DEBUG:teuthology.orchestra.run.smithi094:> uname -r 2024-09-20T19:50:57.988 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T19:50:57.989 DEBUG:teuthology.orchestra.run.smithi110:> uname -r 2024-09-20T19:50:58.033 INFO:teuthology.orchestra.run.smithi094.stdout:5.15.0-56-generic 2024-09-20T19:50:58.033 INFO:teuthology.task.kernel:Running kernel on smithi094: 5.15.0-56-generic 2024-09-20T19:50:58.033 DEBUG:teuthology.orchestra.run.smithi094:> sudo apt-get clean 2024-09-20T19:50:58.034 INFO:teuthology.orchestra.run.smithi110.stdout:5.15.0-56-generic 2024-09-20T19:50:58.035 INFO:teuthology.task.kernel:Running kernel on smithi110: 5.15.0-56-generic 2024-09-20T19:50:58.035 DEBUG:teuthology.orchestra.run.smithi110:> sudo apt-get clean 2024-09-20T19:50:58.153 DEBUG:teuthology.orchestra.run.smithi094:> sudo apt-get update 2024-09-20T19:50:58.162 DEBUG:teuthology.orchestra.run.smithi110:> sudo apt-get update 2024-09-20T19:50:58.424 INFO:teuthology.orchestra.run.smithi094.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-20T19:50:58.424 INFO:teuthology.orchestra.run.smithi094.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-20T19:50:58.449 INFO:teuthology.orchestra.run.smithi110.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-20T19:50:58.450 INFO:teuthology.orchestra.run.smithi110.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-20T19:50:58.480 INFO:teuthology.orchestra.run.smithi094.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-20T19:50:58.495 INFO:teuthology.orchestra.run.smithi110.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-20T19:50:58.838 INFO:teuthology.orchestra.run.smithi094.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-20T19:50:58.849 INFO:teuthology.orchestra.run.smithi110.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-20T19:50:58.857 INFO:teuthology.orchestra.run.smithi094.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [544 kB] 2024-09-20T19:50:58.869 INFO:teuthology.orchestra.run.smithi110.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,839 kB] 2024-09-20T19:50:58.976 INFO:teuthology.orchestra.run.smithi094.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [703 kB] 2024-09-20T19:50:58.987 INFO:teuthology.orchestra.run.smithi110.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [703 kB] 2024-09-20T19:50:59.163 INFO:teuthology.orchestra.run.smithi094.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,839 kB] 2024-09-20T19:50:59.173 INFO:teuthology.orchestra.run.smithi094.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,062 kB] 2024-09-20T19:50:59.194 INFO:teuthology.orchestra.run.smithi110.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,062 kB] 2024-09-20T19:50:59.292 INFO:teuthology.orchestra.run.smithi110.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [544 kB] 2024-09-20T19:50:59.308 INFO:teuthology.orchestra.run.smithi110.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [298 kB] 2024-09-20T19:50:59.317 INFO:teuthology.orchestra.run.smithi110.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-20T19:50:59.317 INFO:teuthology.orchestra.run.smithi110.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-20T19:50:59.319 INFO:teuthology.orchestra.run.smithi110.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,431 kB] 2024-09-20T19:50:59.334 INFO:teuthology.orchestra.run.smithi094.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [356 kB] 2024-09-20T19:50:59.338 INFO:teuthology.orchestra.run.smithi094.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [298 kB] 2024-09-20T19:50:59.344 INFO:teuthology.orchestra.run.smithi110.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [356 kB] 2024-09-20T19:50:59.347 INFO:teuthology.orchestra.run.smithi094.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-20T19:50:59.348 INFO:teuthology.orchestra.run.smithi094.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,499 kB] 2024-09-20T19:50:59.350 INFO:teuthology.orchestra.run.smithi094.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-20T19:50:59.351 INFO:teuthology.orchestra.run.smithi094.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,431 kB] 2024-09-20T19:50:59.357 INFO:teuthology.orchestra.run.smithi110.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-20T19:50:59.357 INFO:teuthology.orchestra.run.smithi110.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-20T19:50:59.359 INFO:teuthology.orchestra.run.smithi110.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,499 kB] 2024-09-20T19:50:59.414 INFO:teuthology.orchestra.run.smithi110.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [418 kB] 2024-09-20T19:50:59.418 INFO:teuthology.orchestra.run.smithi094.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-20T19:50:59.422 INFO:teuthology.orchestra.run.smithi094.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [430 kB] 2024-09-20T19:50:59.465 INFO:teuthology.orchestra.run.smithi094.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-20T19:50:59.465 INFO:teuthology.orchestra.run.smithi094.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-20T19:50:59.465 INFO:teuthology.orchestra.run.smithi094.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,125 kB] 2024-09-20T19:50:59.466 INFO:teuthology.orchestra.run.smithi094.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [418 kB] 2024-09-20T19:50:59.470 INFO:teuthology.orchestra.run.smithi110.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [430 kB] 2024-09-20T19:50:59.471 INFO:teuthology.orchestra.run.smithi110.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-20T19:50:59.471 INFO:teuthology.orchestra.run.smithi110.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [629 kB] 2024-09-20T19:50:59.474 INFO:teuthology.orchestra.run.smithi094.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-20T19:50:59.474 INFO:teuthology.orchestra.run.smithi094.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [629 kB] 2024-09-20T19:50:59.479 INFO:teuthology.orchestra.run.smithi110.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-20T19:50:59.479 INFO:teuthology.orchestra.run.smithi110.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [733 kB] 2024-09-20T19:50:59.482 INFO:teuthology.orchestra.run.smithi110.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [905 kB] 2024-09-20T19:50:59.485 INFO:teuthology.orchestra.run.smithi094.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [905 kB] 2024-09-20T19:50:59.486 INFO:teuthology.orchestra.run.smithi094.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [733 kB] 2024-09-20T19:50:59.492 INFO:teuthology.orchestra.run.smithi110.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,125 kB] 2024-09-20T19:50:59.498 INFO:teuthology.orchestra.run.smithi110.stdout:Get:25 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [177 kB] 2024-09-20T19:50:59.499 INFO:teuthology.orchestra.run.smithi094.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-20T19:50:59.500 INFO:teuthology.orchestra.run.smithi094.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [177 kB] 2024-09-20T19:50:59.502 INFO:teuthology.orchestra.run.smithi110.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-20T19:50:59.503 INFO:teuthology.orchestra.run.smithi110.stdout:Get:27 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-20T19:50:59.503 INFO:teuthology.orchestra.run.smithi094.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-20T19:50:59.503 INFO:teuthology.orchestra.run.smithi110.stdout:Get:28 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-20T19:50:59.504 INFO:teuthology.orchestra.run.smithi094.stdout:Get:28 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-20T19:50:59.504 INFO:teuthology.orchestra.run.smithi094.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-20T19:50:59.504 INFO:teuthology.orchestra.run.smithi094.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-20T19:50:59.504 INFO:teuthology.orchestra.run.smithi110.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-20T19:50:59.505 INFO:teuthology.orchestra.run.smithi094.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-20T19:50:59.509 INFO:teuthology.orchestra.run.smithi110.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-20T19:50:59.513 INFO:teuthology.orchestra.run.smithi110.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-20T19:50:59.514 INFO:teuthology.orchestra.run.smithi110.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-20T19:50:59.515 INFO:teuthology.orchestra.run.smithi110.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-20T19:50:59.515 INFO:teuthology.orchestra.run.smithi110.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-20T19:50:59.556 INFO:teuthology.orchestra.run.smithi110.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-20T19:50:59.563 INFO:teuthology.orchestra.run.smithi094.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-20T19:50:59.564 INFO:teuthology.orchestra.run.smithi094.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-20T19:50:59.585 INFO:teuthology.orchestra.run.smithi094.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-20T19:50:59.585 INFO:teuthology.orchestra.run.smithi094.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-20T19:50:59.585 INFO:teuthology.orchestra.run.smithi094.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-20T19:50:59.586 INFO:teuthology.orchestra.run.smithi094.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-20T19:50:59.586 INFO:teuthology.orchestra.run.smithi094.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-20T19:50:59.587 INFO:teuthology.orchestra.run.smithi094.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-20T19:50:59.587 INFO:teuthology.orchestra.run.smithi094.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-20T19:50:59.589 INFO:teuthology.orchestra.run.smithi110.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-20T19:50:59.589 INFO:teuthology.orchestra.run.smithi110.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-20T19:50:59.590 INFO:teuthology.orchestra.run.smithi110.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-20T19:50:59.591 INFO:teuthology.orchestra.run.smithi110.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-20T19:50:59.666 INFO:teuthology.orchestra.run.smithi094.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-20T19:50:59.667 INFO:teuthology.orchestra.run.smithi094.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-20T19:50:59.667 INFO:teuthology.orchestra.run.smithi094.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-20T19:50:59.668 INFO:teuthology.orchestra.run.smithi094.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-20T19:50:59.671 INFO:teuthology.orchestra.run.smithi110.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-20T19:50:59.671 INFO:teuthology.orchestra.run.smithi110.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-20T19:50:59.671 INFO:teuthology.orchestra.run.smithi110.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-20T19:50:59.672 INFO:teuthology.orchestra.run.smithi110.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-20T19:50:59.672 INFO:teuthology.orchestra.run.smithi110.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-20T19:51:05.532 INFO:teuthology.orchestra.run.smithi110.stdout:Fetched 16.3 MB in 3s (5,869 kB/s) 2024-09-20T19:51:05.632 INFO:teuthology.orchestra.run.smithi094.stdout:Fetched 16.3 MB in 3s (5,874 kB/s) 2024-09-20T19:51:06.974 INFO:teuthology.orchestra.run.smithi110.stdout:Reading package lists... 2024-09-20T19:51:06.993 DEBUG:teuthology.orchestra.run.smithi110:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-20T19:51:07.004 INFO:teuthology.orchestra.run.smithi094.stdout:Reading package lists... 2024-09-20T19:51:07.022 DEBUG:teuthology.orchestra.run.smithi094:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-20T19:51:07.056 INFO:teuthology.orchestra.run.smithi110.stdout:Reading package lists... 2024-09-20T19:51:07.075 INFO:teuthology.orchestra.run.smithi094.stdout:Reading package lists... 2024-09-20T19:51:07.243 INFO:teuthology.orchestra.run.smithi110.stdout:Building dependency tree... 2024-09-20T19:51:07.243 INFO:teuthology.orchestra.run.smithi110.stdout:Reading state information... 2024-09-20T19:51:07.261 INFO:teuthology.orchestra.run.smithi094.stdout:Building dependency tree... 2024-09-20T19:51:07.262 INFO:teuthology.orchestra.run.smithi094.stdout:Reading state information... 2024-09-20T19:51:07.411 INFO:teuthology.orchestra.run.smithi110.stdout:The following packages were automatically installed and are no longer required: 2024-09-20T19:51:07.411 INFO:teuthology.orchestra.run.smithi110.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-20T19:51:07.411 INFO:teuthology.orchestra.run.smithi110.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-20T19:51:07.412 INFO:teuthology.orchestra.run.smithi110.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-20T19:51:07.412 INFO:teuthology.orchestra.run.smithi110.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-20T19:51:07.412 INFO:teuthology.orchestra.run.smithi110.stdout: python2.7-minimal 2024-09-20T19:51:07.412 INFO:teuthology.orchestra.run.smithi110.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-20T19:51:07.413 INFO:teuthology.orchestra.run.smithi110.stdout:The following additional packages will be installed: 2024-09-20T19:51:07.413 INFO:teuthology.orchestra.run.smithi110.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-20T19:51:07.413 INFO:teuthology.orchestra.run.smithi110.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-20T19:51:07.413 INFO:teuthology.orchestra.run.smithi110.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-20T19:51:07.415 INFO:teuthology.orchestra.run.smithi110.stdout:Suggested packages: 2024-09-20T19:51:07.415 INFO:teuthology.orchestra.run.smithi110.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-20T19:51:07.415 INFO:teuthology.orchestra.run.smithi110.stdout:Recommended packages: 2024-09-20T19:51:07.415 INFO:teuthology.orchestra.run.smithi110.stdout: thermald 2024-09-20T19:51:07.427 INFO:teuthology.orchestra.run.smithi094.stdout:The following packages were automatically installed and are no longer required: 2024-09-20T19:51:07.428 INFO:teuthology.orchestra.run.smithi094.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-20T19:51:07.428 INFO:teuthology.orchestra.run.smithi094.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-20T19:51:07.428 INFO:teuthology.orchestra.run.smithi094.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-20T19:51:07.428 INFO:teuthology.orchestra.run.smithi094.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-20T19:51:07.428 INFO:teuthology.orchestra.run.smithi094.stdout: python2.7-minimal 2024-09-20T19:51:07.429 INFO:teuthology.orchestra.run.smithi094.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-20T19:51:07.430 INFO:teuthology.orchestra.run.smithi094.stdout:The following additional packages will be installed: 2024-09-20T19:51:07.430 INFO:teuthology.orchestra.run.smithi094.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-20T19:51:07.430 INFO:teuthology.orchestra.run.smithi094.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-20T19:51:07.430 INFO:teuthology.orchestra.run.smithi094.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-20T19:51:07.431 INFO:teuthology.orchestra.run.smithi094.stdout:Suggested packages: 2024-09-20T19:51:07.431 INFO:teuthology.orchestra.run.smithi094.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-20T19:51:07.431 INFO:teuthology.orchestra.run.smithi094.stdout:Recommended packages: 2024-09-20T19:51:07.432 INFO:teuthology.orchestra.run.smithi094.stdout: thermald 2024-09-20T19:51:07.470 INFO:teuthology.orchestra.run.smithi110.stdout:The following NEW packages will be installed: 2024-09-20T19:51:07.470 INFO:teuthology.orchestra.run.smithi110.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-20T19:51:07.470 INFO:teuthology.orchestra.run.smithi110.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-20T19:51:07.471 INFO:teuthology.orchestra.run.smithi110.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-20T19:51:07.472 INFO:teuthology.orchestra.run.smithi110.stdout:The following packages will be upgraded: 2024-09-20T19:51:07.473 INFO:teuthology.orchestra.run.smithi110.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-20T19:51:07.479 INFO:teuthology.orchestra.run.smithi094.stdout:The following NEW packages will be installed: 2024-09-20T19:51:07.479 INFO:teuthology.orchestra.run.smithi094.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-20T19:51:07.479 INFO:teuthology.orchestra.run.smithi094.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-20T19:51:07.480 INFO:teuthology.orchestra.run.smithi094.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-20T19:51:07.481 INFO:teuthology.orchestra.run.smithi094.stdout:The following packages will be upgraded: 2024-09-20T19:51:07.481 INFO:teuthology.orchestra.run.smithi094.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-20T19:51:07.524 INFO:teuthology.orchestra.run.smithi110.stdout:3 upgraded, 5 newly installed, 0 to remove and 345 not upgraded. 2024-09-20T19:51:07.524 INFO:teuthology.orchestra.run.smithi110.stdout:Need to get 113 MB of archives. 2024-09-20T19:51:07.524 INFO:teuthology.orchestra.run.smithi110.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-20T19:51:07.524 INFO:teuthology.orchestra.run.smithi110.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-122-generic amd64 5.15.0-122.132 [22.7 MB] 2024-09-20T19:51:07.660 INFO:teuthology.orchestra.run.smithi094.stdout:3 upgraded, 5 newly installed, 0 to remove and 345 not upgraded. 2024-09-20T19:51:07.661 INFO:teuthology.orchestra.run.smithi094.stdout:Need to get 113 MB of archives. 2024-09-20T19:51:07.661 INFO:teuthology.orchestra.run.smithi094.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-20T19:51:07.661 INFO:teuthology.orchestra.run.smithi094.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-122-generic amd64 5.15.0-122.132 [22.7 MB] 2024-09-20T19:51:07.963 INFO:teuthology.orchestra.run.smithi110.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-122-generic amd64 5.15.0-122.132 [11.5 MB] 2024-09-20T19:51:08.065 INFO:teuthology.orchestra.run.smithi110.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-122-generic amd64 5.15.0-122.132 [63.9 MB] 2024-09-20T19:51:08.861 INFO:teuthology.orchestra.run.smithi110.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.122.122 [1,692 B] 2024-09-20T19:51:08.861 INFO:teuthology.orchestra.run.smithi110.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.122.122 [2,436 B] 2024-09-20T19:51:08.861 INFO:teuthology.orchestra.run.smithi110.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122 all 5.15.0-122.132 [12.3 MB] 2024-09-20T19:51:08.981 INFO:teuthology.orchestra.run.smithi110.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122-generic amd64 5.15.0-122.132 [2,827 kB] 2024-09-20T19:51:09.003 INFO:teuthology.orchestra.run.smithi110.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.122.122 [2,294 B] 2024-09-20T19:51:09.053 INFO:teuthology.orchestra.run.smithi094.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-122-generic amd64 5.15.0-122.132 [11.5 MB] 2024-09-20T19:51:09.396 INFO:teuthology.orchestra.run.smithi110.stdout:Fetched 113 MB in 2s (74.4 MB/s) 2024-09-20T19:51:09.402 INFO:teuthology.orchestra.run.smithi094.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-122-generic amd64 5.15.0-122.132 [63.9 MB] 2024-09-20T19:51:09.555 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-20T19:51:11.556 INFO:teuthology.orchestra.run.smithi110.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-09-20T19:51:11.560 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T19:51:11.587 INFO:teuthology.orchestra.run.smithi094.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.122.122 [1,692 B] 2024-09-20T19:51:11.587 INFO:teuthology.orchestra.run.smithi094.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.122.122 [2,436 B] 2024-09-20T19:51:11.587 INFO:teuthology.orchestra.run.smithi094.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122 all 5.15.0-122.132 [12.3 MB] 2024-09-20T19:51:11.703 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:11.981 INFO:teuthology.orchestra.run.smithi094.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122-generic amd64 5.15.0-122.132 [2,827 kB] 2024-09-20T19:51:12.032 INFO:teuthology.orchestra.run.smithi094.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.122.122 [2,294 B] 2024-09-20T19:51:12.426 INFO:teuthology.orchestra.run.smithi094.stdout:Fetched 113 MB in 5s (24.9 MB/s) 2024-09-20T19:51:12.619 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-20T19:51:14.105 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-20T19:51:14.126 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T19:51:14.210 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:14.658 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-20T19:51:14.668 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T19:51:14.700 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:14.714 INFO:teuthology.orchestra.run.smithi094.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-09-20T19:51:14.718 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T19:51:14.857 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:17.340 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-20T19:51:17.361 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T19:51:17.443 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:17.913 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-20T19:51:17.933 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T19:51:17.971 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:20.528 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T19:51:20.638 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T19:51:20.980 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T19:51:21.117 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T19:51:21.395 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-20T19:51:21.406 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-20T19:51:21.454 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-20T19:51:24.498 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T19:51:24.626 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T19:51:24.950 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T19:51:25.072 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T19:51:25.359 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-20T19:51:25.381 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-20T19:51:25.425 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-20T19:51:27.226 INFO:teuthology.orchestra.run.smithi110.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-20T19:51:27.244 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T19:51:27.284 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:29.740 INFO:teuthology.orchestra.run.smithi110.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T19:51:29.864 INFO:teuthology.orchestra.run.smithi110.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T19:51:30.206 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-20T19:51:30.327 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:30.445 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-20T19:51:30.574 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:31.213 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-20T19:51:31.250 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T19:51:31.288 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:31.895 INFO:teuthology.orchestra.run.smithi110.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-20T19:51:31.895 INFO:teuthology.orchestra.run.smithi110.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-20T19:51:31.895 INFO:teuthology.orchestra.run.smithi110.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-20T19:51:31.895 INFO:teuthology.orchestra.run.smithi110.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-20T19:51:32.069 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:33.453 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-20T19:51:33.554 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-20T19:51:33.681 INFO:teuthology.orchestra.run.smithi110.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:34.832 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T19:51:34.957 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T19:51:35.224 INFO:teuthology.orchestra.run.smithi110.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:35.277 INFO:teuthology.orchestra.run.smithi110.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-20T19:51:35.278 INFO:teuthology.orchestra.run.smithi110.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-20T19:51:35.282 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-20T19:51:35.414 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:35.539 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-20T19:51:35.668 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:36.987 INFO:teuthology.orchestra.run.smithi094.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-20T19:51:36.987 INFO:teuthology.orchestra.run.smithi094.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-20T19:51:36.987 INFO:teuthology.orchestra.run.smithi094.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-20T19:51:36.987 INFO:teuthology.orchestra.run.smithi094.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-20T19:51:37.139 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:38.515 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-20T19:51:38.642 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-20T19:51:38.767 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:40.703 INFO:teuthology.orchestra.run.smithi094.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T19:51:40.765 INFO:teuthology.orchestra.run.smithi094.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-20T19:51:40.765 INFO:teuthology.orchestra.run.smithi094.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-20T19:51:49.828 INFO:teuthology.orchestra.run.smithi110.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-20T19:51:49.828 INFO:teuthology.orchestra.run.smithi110.stdout:Sourcing file `/etc/default/grub' 2024-09-20T19:51:49.857 INFO:teuthology.orchestra.run.smithi110.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-20T19:51:49.880 INFO:teuthology.orchestra.run.smithi110.stdout:Generating grub configuration file ... 2024-09-20T19:51:50.200 INFO:teuthology.orchestra.run.smithi110.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-20T19:51:50.218 INFO:teuthology.orchestra.run.smithi110.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-20T19:51:50.554 INFO:teuthology.orchestra.run.smithi110.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-20T19:51:50.560 INFO:teuthology.orchestra.run.smithi110.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-20T19:51:50.629 INFO:teuthology.orchestra.run.smithi110.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-20T19:51:50.634 INFO:teuthology.orchestra.run.smithi110.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-20T19:51:50.812 INFO:teuthology.orchestra.run.smithi110.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-20T19:51:50.813 INFO:teuthology.orchestra.run.smithi110.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-20T19:51:50.813 INFO:teuthology.orchestra.run.smithi110.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-20T19:51:50.853 INFO:teuthology.orchestra.run.smithi110.stdout:done 2024-09-20T19:51:51.313 DEBUG:teuthology.orchestra.run.smithi110:> dpkg -s linux-image-generic 2024-09-20T19:51:51.335 INFO:teuthology.orchestra.run.smithi110.stdout:Package: linux-image-generic 2024-09-20T19:51:51.335 INFO:teuthology.orchestra.run.smithi110.stdout:Status: install ok installed 2024-09-20T19:51:51.335 INFO:teuthology.orchestra.run.smithi110.stdout:Priority: optional 2024-09-20T19:51:51.335 INFO:teuthology.orchestra.run.smithi110.stdout:Section: kernel 2024-09-20T19:51:51.335 INFO:teuthology.orchestra.run.smithi110.stdout:Installed-Size: 21 2024-09-20T19:51:51.335 INFO:teuthology.orchestra.run.smithi110.stdout:Maintainer: Ubuntu Kernel Team 2024-09-20T19:51:51.335 INFO:teuthology.orchestra.run.smithi110.stdout:Architecture: amd64 2024-09-20T19:51:51.335 INFO:teuthology.orchestra.run.smithi110.stdout:Source: linux-meta 2024-09-20T19:51:51.335 INFO:teuthology.orchestra.run.smithi110.stdout:Version: 5.15.0.122.122 2024-09-20T19:51:51.335 INFO:teuthology.orchestra.run.smithi110.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-20T19:51:51.336 INFO:teuthology.orchestra.run.smithi110.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-20T19:51:51.336 INFO:teuthology.orchestra.run.smithi110.stdout:Recommends: thermald 2024-09-20T19:51:51.336 INFO:teuthology.orchestra.run.smithi110.stdout:Description: Generic Linux kernel image 2024-09-20T19:51:51.336 INFO:teuthology.orchestra.run.smithi110.stdout: This package will always depend on the latest generic kernel image 2024-09-20T19:51:51.336 INFO:teuthology.orchestra.run.smithi110.stdout: available. 2024-09-20T19:51:51.336 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-20T19:51:51.336 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-20T19:51:51.336 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-20T19:51:51.336 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-20T19:51:51.336 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi110.front.sepia.ceph.com, path=None, version=distro) 2024-09-20T19:51:51.337 DEBUG:teuthology.orchestra.run.smithi110:> sudo apt-get clean 2024-09-20T19:51:51.503 DEBUG:teuthology.orchestra.run.smithi110:> sudo apt-get update 2024-09-20T19:51:51.615 INFO:teuthology.orchestra.run.smithi110.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-20T19:51:51.739 INFO:teuthology.orchestra.run.smithi110.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-20T19:51:51.838 INFO:teuthology.orchestra.run.smithi110.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-20T19:51:51.901 INFO:teuthology.orchestra.run.smithi110.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-20T19:51:53.026 INFO:teuthology.orchestra.run.smithi110.stdout:Reading package lists... 2024-09-20T19:51:53.045 DEBUG:teuthology.orchestra.run.smithi110:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-20T19:51:53.098 INFO:teuthology.orchestra.run.smithi110.stdout:Reading package lists... 2024-09-20T19:51:53.284 INFO:teuthology.orchestra.run.smithi110.stdout:Building dependency tree... 2024-09-20T19:51:53.285 INFO:teuthology.orchestra.run.smithi110.stdout:Reading state information... 2024-09-20T19:51:53.451 INFO:teuthology.orchestra.run.smithi110.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-20T19:51:53.451 INFO:teuthology.orchestra.run.smithi110.stdout:The following packages were automatically installed and are no longer required: 2024-09-20T19:51:53.451 INFO:teuthology.orchestra.run.smithi110.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-20T19:51:53.451 INFO:teuthology.orchestra.run.smithi110.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-20T19:51:53.451 INFO:teuthology.orchestra.run.smithi110.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-20T19:51:53.451 INFO:teuthology.orchestra.run.smithi110.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-20T19:51:53.452 INFO:teuthology.orchestra.run.smithi110.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-20T19:51:53.452 INFO:teuthology.orchestra.run.smithi110.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-20T19:51:53.491 INFO:teuthology.orchestra.run.smithi110.stdout:0 upgraded, 0 newly installed, 0 to remove and 345 not upgraded. 2024-09-20T19:51:53.493 DEBUG:teuthology.orchestra.run.smithi110:> dpkg -s linux-image-generic 2024-09-20T19:51:53.548 INFO:teuthology.orchestra.run.smithi110.stdout:Package: linux-image-generic 2024-09-20T19:51:53.549 INFO:teuthology.orchestra.run.smithi110.stdout:Status: install ok installed 2024-09-20T19:51:53.549 INFO:teuthology.orchestra.run.smithi110.stdout:Priority: optional 2024-09-20T19:51:53.549 INFO:teuthology.orchestra.run.smithi110.stdout:Section: kernel 2024-09-20T19:51:53.549 INFO:teuthology.orchestra.run.smithi110.stdout:Installed-Size: 21 2024-09-20T19:51:53.549 INFO:teuthology.orchestra.run.smithi110.stdout:Maintainer: Ubuntu Kernel Team 2024-09-20T19:51:53.549 INFO:teuthology.orchestra.run.smithi110.stdout:Architecture: amd64 2024-09-20T19:51:53.549 INFO:teuthology.orchestra.run.smithi110.stdout:Source: linux-meta 2024-09-20T19:51:53.549 INFO:teuthology.orchestra.run.smithi110.stdout:Version: 5.15.0.122.122 2024-09-20T19:51:53.549 INFO:teuthology.orchestra.run.smithi110.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-20T19:51:53.549 INFO:teuthology.orchestra.run.smithi110.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-20T19:51:53.549 INFO:teuthology.orchestra.run.smithi110.stdout:Recommends: thermald 2024-09-20T19:51:53.549 INFO:teuthology.orchestra.run.smithi110.stdout:Description: Generic Linux kernel image 2024-09-20T19:51:53.550 INFO:teuthology.orchestra.run.smithi110.stdout: This package will always depend on the latest generic kernel image 2024-09-20T19:51:53.550 INFO:teuthology.orchestra.run.smithi110.stdout: available. 2024-09-20T19:51:53.550 DEBUG:teuthology.orchestra.run.smithi110:> mktemp 2024-09-20T19:51:53.594 INFO:teuthology.orchestra.run.smithi110.stdout:/tmp/tmp.WKY9rtFs2H 2024-09-20T19:51:53.594 DEBUG:teuthology.orchestra.run.smithi110:> sudo cp /boot/grub/grub.cfg /tmp/tmp.WKY9rtFs2H 2024-09-20T19:51:53.650 DEBUG:teuthology.orchestra.run.smithi110:> sudo chmod 0666 /tmp/tmp.WKY9rtFs2H 2024-09-20T19:51:53.782 DEBUG:teuthology.orchestra.remote:smithi110:/tmp/tmp.WKY9rtFs2H is 10KB 2024-09-20T19:51:53.795 DEBUG:teuthology.orchestra.run.smithi110:> rm -fr /tmp/tmp.WKY9rtFs2H 2024-09-20T19:51:53.800 DEBUG:teuthology.orchestra.run.smithi110:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-20T19:51:53.854 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-09-20T19:51:53.854 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-20T19:51:53.854 DEBUG:teuthology.orchestra.run.smithi110:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-20T19:51:53.921 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-20T19:51:53.922 DEBUG:teuthology.orchestra.run.smithi110:> sudo update-grub 2024-09-20T19:51:54.979 INFO:teuthology.orchestra.run.smithi094.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-20T19:51:54.979 INFO:teuthology.orchestra.run.smithi094.stdout:Sourcing file `/etc/default/grub' 2024-09-20T19:51:54.995 INFO:teuthology.orchestra.run.smithi094.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-20T19:51:55.011 INFO:teuthology.orchestra.run.smithi094.stdout:Generating grub configuration file ... 2024-09-20T19:51:55.083 INFO:teuthology.orchestra.run.smithi110.stderr:Sourcing file `/etc/default/grub' 2024-09-20T19:51:55.084 INFO:teuthology.orchestra.run.smithi110.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-20T19:51:55.086 INFO:teuthology.orchestra.run.smithi110.stderr:Generating grub configuration file ... 2024-09-20T19:51:55.250 INFO:teuthology.orchestra.run.smithi094.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-20T19:51:55.266 INFO:teuthology.orchestra.run.smithi094.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-20T19:51:55.331 INFO:teuthology.orchestra.run.smithi110.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-20T19:51:55.338 INFO:teuthology.orchestra.run.smithi110.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-20T19:51:55.603 INFO:teuthology.orchestra.run.smithi094.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-20T19:51:55.608 INFO:teuthology.orchestra.run.smithi094.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-20T19:51:55.629 INFO:teuthology.orchestra.run.smithi110.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-20T19:51:55.635 INFO:teuthology.orchestra.run.smithi110.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-20T19:51:55.674 INFO:teuthology.orchestra.run.smithi094.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-20T19:51:55.677 INFO:teuthology.orchestra.run.smithi110.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-20T19:51:55.679 INFO:teuthology.orchestra.run.smithi094.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-20T19:51:55.682 INFO:teuthology.orchestra.run.smithi110.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-20T19:51:55.825 INFO:teuthology.orchestra.run.smithi110.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-20T19:51:55.825 INFO:teuthology.orchestra.run.smithi110.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-20T19:51:55.825 INFO:teuthology.orchestra.run.smithi110.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-20T19:51:55.838 INFO:teuthology.orchestra.run.smithi110.stderr:done 2024-09-20T19:51:55.839 INFO:teuthology.orchestra.run.smithi094.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-20T19:51:55.839 INFO:teuthology.orchestra.run.smithi094.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-20T19:51:55.840 INFO:teuthology.orchestra.run.smithi094.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-20T19:51:55.851 DEBUG:teuthology.orchestra.run.smithi110:> sudo shutdown -r now 2024-09-20T19:51:55.888 INFO:teuthology.orchestra.run.smithi094.stdout:done 2024-09-20T19:51:56.383 DEBUG:teuthology.orchestra.run.smithi094:> dpkg -s linux-image-generic 2024-09-20T19:51:56.413 INFO:teuthology.orchestra.run.smithi094.stdout:Package: linux-image-generic 2024-09-20T19:51:56.413 INFO:teuthology.orchestra.run.smithi094.stdout:Status: install ok installed 2024-09-20T19:51:56.413 INFO:teuthology.orchestra.run.smithi094.stdout:Priority: optional 2024-09-20T19:51:56.414 INFO:teuthology.orchestra.run.smithi094.stdout:Section: kernel 2024-09-20T19:51:56.414 INFO:teuthology.orchestra.run.smithi094.stdout:Installed-Size: 21 2024-09-20T19:51:56.414 INFO:teuthology.orchestra.run.smithi094.stdout:Maintainer: Ubuntu Kernel Team 2024-09-20T19:51:56.414 INFO:teuthology.orchestra.run.smithi094.stdout:Architecture: amd64 2024-09-20T19:51:56.414 INFO:teuthology.orchestra.run.smithi094.stdout:Source: linux-meta 2024-09-20T19:51:56.414 INFO:teuthology.orchestra.run.smithi094.stdout:Version: 5.15.0.122.122 2024-09-20T19:51:56.414 INFO:teuthology.orchestra.run.smithi094.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-20T19:51:56.414 INFO:teuthology.orchestra.run.smithi094.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-20T19:51:56.414 INFO:teuthology.orchestra.run.smithi094.stdout:Recommends: thermald 2024-09-20T19:51:56.414 INFO:teuthology.orchestra.run.smithi094.stdout:Description: Generic Linux kernel image 2024-09-20T19:51:56.414 INFO:teuthology.orchestra.run.smithi094.stdout: This package will always depend on the latest generic kernel image 2024-09-20T19:51:56.415 INFO:teuthology.orchestra.run.smithi094.stdout: available. 2024-09-20T19:51:56.415 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-20T19:51:56.415 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-20T19:51:56.415 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-20T19:51:56.415 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-20T19:51:56.415 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi094.front.sepia.ceph.com, path=None, version=distro) 2024-09-20T19:51:56.415 DEBUG:teuthology.orchestra.run.smithi094:> sudo apt-get clean 2024-09-20T19:51:56.608 DEBUG:teuthology.orchestra.run.smithi094:> sudo apt-get update 2024-09-20T19:51:56.719 INFO:teuthology.orchestra.run.smithi094.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-20T19:51:56.730 INFO:teuthology.orchestra.run.smithi094.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-20T19:51:56.747 INFO:teuthology.orchestra.run.smithi094.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-20T19:51:56.841 INFO:teuthology.orchestra.run.smithi094.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-20T19:51:58.050 INFO:teuthology.orchestra.run.smithi094.stdout:Reading package lists... 2024-09-20T19:51:58.068 DEBUG:teuthology.orchestra.run.smithi094:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-20T19:51:58.131 INFO:teuthology.orchestra.run.smithi094.stdout:Reading package lists... 2024-09-20T19:51:58.337 INFO:teuthology.orchestra.run.smithi094.stdout:Building dependency tree... 2024-09-20T19:51:58.337 INFO:teuthology.orchestra.run.smithi094.stdout:Reading state information... 2024-09-20T19:51:58.527 INFO:teuthology.orchestra.run.smithi094.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-20T19:51:58.527 INFO:teuthology.orchestra.run.smithi094.stdout:The following packages were automatically installed and are no longer required: 2024-09-20T19:51:58.527 INFO:teuthology.orchestra.run.smithi094.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-20T19:51:58.527 INFO:teuthology.orchestra.run.smithi094.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-20T19:51:58.527 INFO:teuthology.orchestra.run.smithi094.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-20T19:51:58.527 INFO:teuthology.orchestra.run.smithi094.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-20T19:51:58.528 INFO:teuthology.orchestra.run.smithi094.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-20T19:51:58.528 INFO:teuthology.orchestra.run.smithi094.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-20T19:51:58.570 INFO:teuthology.orchestra.run.smithi094.stdout:0 upgraded, 0 newly installed, 0 to remove and 345 not upgraded. 2024-09-20T19:51:58.572 DEBUG:teuthology.orchestra.run.smithi094:> dpkg -s linux-image-generic 2024-09-20T19:51:58.588 INFO:teuthology.orchestra.run.smithi094.stdout:Package: linux-image-generic 2024-09-20T19:51:58.588 INFO:teuthology.orchestra.run.smithi094.stdout:Status: install ok installed 2024-09-20T19:51:58.588 INFO:teuthology.orchestra.run.smithi094.stdout:Priority: optional 2024-09-20T19:51:58.588 INFO:teuthology.orchestra.run.smithi094.stdout:Section: kernel 2024-09-20T19:51:58.588 INFO:teuthology.orchestra.run.smithi094.stdout:Installed-Size: 21 2024-09-20T19:51:58.588 INFO:teuthology.orchestra.run.smithi094.stdout:Maintainer: Ubuntu Kernel Team 2024-09-20T19:51:58.588 INFO:teuthology.orchestra.run.smithi094.stdout:Architecture: amd64 2024-09-20T19:51:58.588 INFO:teuthology.orchestra.run.smithi094.stdout:Source: linux-meta 2024-09-20T19:51:58.588 INFO:teuthology.orchestra.run.smithi094.stdout:Version: 5.15.0.122.122 2024-09-20T19:51:58.588 INFO:teuthology.orchestra.run.smithi094.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-20T19:51:58.588 INFO:teuthology.orchestra.run.smithi094.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-20T19:51:58.589 INFO:teuthology.orchestra.run.smithi094.stdout:Recommends: thermald 2024-09-20T19:51:58.589 INFO:teuthology.orchestra.run.smithi094.stdout:Description: Generic Linux kernel image 2024-09-20T19:51:58.589 INFO:teuthology.orchestra.run.smithi094.stdout: This package will always depend on the latest generic kernel image 2024-09-20T19:51:58.589 INFO:teuthology.orchestra.run.smithi094.stdout: available. 2024-09-20T19:51:58.589 DEBUG:teuthology.orchestra.run.smithi094:> mktemp 2024-09-20T19:51:58.635 INFO:teuthology.orchestra.run.smithi094.stdout:/tmp/tmp.6nDdWjD8AT 2024-09-20T19:51:58.636 DEBUG:teuthology.orchestra.run.smithi094:> sudo cp /boot/grub/grub.cfg /tmp/tmp.6nDdWjD8AT 2024-09-20T19:51:58.692 DEBUG:teuthology.orchestra.run.smithi094:> sudo chmod 0666 /tmp/tmp.6nDdWjD8AT 2024-09-20T19:51:58.807 DEBUG:teuthology.orchestra.remote:smithi094:/tmp/tmp.6nDdWjD8AT is 10KB 2024-09-20T19:51:58.821 DEBUG:teuthology.orchestra.run.smithi094:> rm -fr /tmp/tmp.6nDdWjD8AT 2024-09-20T19:51:58.826 DEBUG:teuthology.orchestra.run.smithi094:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-20T19:51:58.879 DEBUG:teuthology.orchestra.run.smithi094:> set -ex 2024-09-20T19:51:58.880 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-20T19:51:58.880 DEBUG:teuthology.orchestra.run.smithi094:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-20T19:51:58.949 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-20T19:51:58.949 DEBUG:teuthology.orchestra.run.smithi094:> sudo update-grub 2024-09-20T19:52:00.273 INFO:teuthology.orchestra.run.smithi094.stderr:Sourcing file `/etc/default/grub' 2024-09-20T19:52:00.274 INFO:teuthology.orchestra.run.smithi094.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-20T19:52:00.276 INFO:teuthology.orchestra.run.smithi094.stderr:Generating grub configuration file ... 2024-09-20T19:52:00.447 INFO:teuthology.orchestra.run.smithi094.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-20T19:52:00.453 INFO:teuthology.orchestra.run.smithi094.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-20T19:52:00.690 INFO:teuthology.orchestra.run.smithi094.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-20T19:52:00.695 INFO:teuthology.orchestra.run.smithi094.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-20T19:52:00.738 INFO:teuthology.orchestra.run.smithi094.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-20T19:52:00.744 INFO:teuthology.orchestra.run.smithi094.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-20T19:52:00.918 INFO:teuthology.orchestra.run.smithi094.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-20T19:52:00.918 INFO:teuthology.orchestra.run.smithi094.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-20T19:52:00.919 INFO:teuthology.orchestra.run.smithi094.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-20T19:52:00.949 INFO:teuthology.orchestra.run.smithi094.stderr:done 2024-09-20T19:52:00.967 DEBUG:teuthology.orchestra.run.smithi094:> sudo shutdown -r now 2024-09-20T19:52:25.878 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-20T19:52:25.879 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-09-20T19:52:25.879 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T19:52:30.970 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-20T19:52:30.971 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi094.front.sepia.ceph.com' 2024-09-20T19:52:30.971 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi094.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T19:52:44.275 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.110 2024-09-20T19:52:49.391 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.94 2024-09-20T19:52:53.278 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-09-20T19:52:53.279 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T19:52:56.335 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.110 2024-09-20T19:52:58.394 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi094.front.sepia.ceph.com' 2024-09-20T19:52:58.394 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi094.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T19:53:01.459 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.94 2024-09-20T19:53:08.336 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-09-20T19:53:08.337 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T19:53:11.407 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.110 2024-09-20T19:53:13.461 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi094.front.sepia.ceph.com' 2024-09-20T19:53:13.462 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi094.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T19:53:26.418 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-09-20T19:53:26.419 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T19:53:29.491 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.110 2024-09-20T19:53:31.891 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.94 2024-09-20T19:53:46.902 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi094.front.sepia.ceph.com' 2024-09-20T19:53:46.903 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi094.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T19:53:47.221 DEBUG:teuthology.orchestra.run.smithi094:> true 2024-09-20T19:53:47.492 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-09-20T19:53:47.492 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T19:53:47.897 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi094.front.sepia.ceph.com' 2024-09-20T19:53:47.897 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-122-generic"... 2024-09-20T19:53:47.897 DEBUG:teuthology.orchestra.run.smithi094:> uname -r 2024-09-20T19:53:47.916 DEBUG:teuthology.orchestra.run.smithi110:> true 2024-09-20T19:53:47.942 INFO:teuthology.orchestra.run.smithi094.stdout:5.15.0-122-generic 2024-09-20T19:53:47.943 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-20T19:53:47.943 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-20T19:53:47.943 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-20T19:53:48.393 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-09-20T19:53:48.394 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-122-generic"... 2024-09-20T19:53:48.394 DEBUG:teuthology.orchestra.run.smithi110:> uname -r 2024-09-20T19:53:48.442 INFO:teuthology.orchestra.run.smithi110.stdout:5.15.0-122-generic 2024-09-20T19:53:48.442 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-20T19:53:48.442 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-20T19:53:48.442 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-20T19:53:48.944 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-20T19:53:48.944 DEBUG:teuthology.orchestra.run.smithi094:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-20T19:53:49.302 INFO:teuthology.orchestra.run.smithi094.stdout:ttyS1 2024-09-20T19:53:49.336 DEBUG:teuthology.parallel:result is None 2024-09-20T19:53:49.443 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-20T19:53:49.444 DEBUG:teuthology.orchestra.run.smithi110:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-20T19:53:49.794 INFO:teuthology.orchestra.run.smithi110.stdout:ttyS1 2024-09-20T19:53:49.820 DEBUG:teuthology.parallel:result is None 2024-09-20T19:53:49.820 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-20T19:53:49.831 INFO:teuthology.task.internal:Creating test directory... 2024-09-20T19:53:49.831 DEBUG:teuthology.orchestra.run.smithi094:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-20T19:53:49.834 DEBUG:teuthology.orchestra.run.smithi110:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-20T19:53:49.839 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-20T19:53:49.853 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-20T19:53:49.868 INFO:teuthology.task.internal:Creating archive directory... 2024-09-20T19:53:49.868 DEBUG:teuthology.orchestra.run.smithi094:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-20T19:53:49.879 DEBUG:teuthology.orchestra.run.smithi110:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-20T19:53:49.903 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-20T19:53:49.911 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-20T19:53:49.912 DEBUG:teuthology.orchestra.run.smithi094:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-20T19:53:49.939 DEBUG:teuthology.orchestra.run.smithi110:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-20T19:53:49.957 INFO:teuthology.orchestra.run.smithi110.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-20T19:53:49.961 INFO:teuthology.orchestra.run.smithi094.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-20T19:53:49.967 INFO:teuthology.orchestra.run.smithi110.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-20T19:53:49.970 INFO:teuthology.orchestra.run.smithi094.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-20T19:53:49.972 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-20T19:53:49.981 INFO:teuthology.task.internal:Configuring sudo... 2024-09-20T19:53:49.981 DEBUG:teuthology.orchestra.run.smithi094:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-20T19:53:50.019 DEBUG:teuthology.orchestra.run.smithi110:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-20T19:53:50.054 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-20T19:53:50.066 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-20T19:53:50.066 DEBUG:teuthology.orchestra.run.smithi094:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-20T19:53:50.100 DEBUG:teuthology.orchestra.run.smithi110:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-20T19:53:50.106 DEBUG:teuthology.orchestra.run.smithi094:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-20T19:53:50.151 DEBUG:teuthology.orchestra.run.smithi094:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-20T19:53:50.199 DEBUG:teuthology.orchestra.run.smithi094:> set -ex 2024-09-20T19:53:50.199 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-20T19:53:50.264 DEBUG:teuthology.orchestra.run.smithi110:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-20T19:53:50.270 DEBUG:teuthology.orchestra.run.smithi110:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-20T19:53:50.318 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-09-20T19:53:50.319 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-20T19:53:50.391 DEBUG:teuthology.orchestra.run.smithi094:> sudo service rsyslog restart 2024-09-20T19:53:50.393 DEBUG:teuthology.orchestra.run.smithi110:> sudo service rsyslog restart 2024-09-20T19:53:50.467 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-20T19:53:50.476 INFO:teuthology.task.internal:Starting timer... 2024-09-20T19:53:50.476 INFO:teuthology.run_tasks:Running task pcp... 2024-09-20T19:53:50.492 INFO:teuthology.run_tasks:Running task selinux... 2024-09-20T19:53:50.505 DEBUG:teuthology.task.selinux:Excluding smithi094: OS 'ubuntu' does not support SELinux 2024-09-20T19:53:50.505 DEBUG:teuthology.task.selinux:Excluding smithi110: OS 'ubuntu' does not support SELinux 2024-09-20T19:53:50.505 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-20T19:53:50.505 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-09-20T19:53:50.505 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-20T19:53:50.505 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-20T19:53:50.519 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-20T19:53:50.530 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-09-20T19:53:50.531 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi094.front.sepia.ceph.com,smithi110.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-20T20:01:16.605 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi094.front.sepia.ceph.com'), Remote(name='ubuntu@smithi110.front.sepia.ceph.com')] 2024-09-20T20:01:16.606 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi094.front.sepia.ceph.com' 2024-09-20T20:01:16.606 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi094.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T20:01:16.689 DEBUG:teuthology.orchestra.run.smithi094:> true 2024-09-20T20:01:16.767 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi094.front.sepia.ceph.com' 2024-09-20T20:01:16.768 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-09-20T20:01:16.768 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T20:01:16.850 DEBUG:teuthology.orchestra.run.smithi110:> true 2024-09-20T20:01:16.926 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-09-20T20:01:16.926 INFO:teuthology.run_tasks:Running task clock... 2024-09-20T20:01:16.943 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-20T20:01:16.943 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-20T20:01:16.944 DEBUG:teuthology.orchestra.run.smithi094:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-20T20:01:16.946 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-20T20:01:16.946 DEBUG:teuthology.orchestra.run.smithi110:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-20T20:01:16.972 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-20T20:01:16.972 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: Command line: ntpd -gq 2024-09-20T20:01:16.972 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: ---------------------------------------------------- 2024-09-20T20:01:16.972 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: ntp-4 is maintained by Network Time Foundation, 2024-09-20T20:01:16.973 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-20T20:01:16.973 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: corporation. Support and training for ntp-4 are 2024-09-20T20:01:16.973 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: available at https://www.nwtime.org/support 2024-09-20T20:01:16.973 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: ---------------------------------------------------- 2024-09-20T20:01:16.973 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: proto: precision = 0.060 usec (-24) 2024-09-20T20:01:16.973 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: basedate set to 2022-02-04 2024-09-20T20:01:16.974 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: gps base set to 2022-02-06 (week 2196) 2024-09-20T20:01:16.974 INFO:teuthology.orchestra.run.smithi094.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-20T20:01:16.974 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-20T20:01:16.974 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: restrict ::: KOD does nothing without LIMITED. 2024-09-20T20:01:16.974 INFO:teuthology.orchestra.run.smithi094.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-20T20:01:16.975 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: Listen and drop on 0 v6wildcard [::]:123 2024-09-20T20:01:16.975 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-20T20:01:16.976 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: Listen normally on 2 lo 127.0.0.1:123 2024-09-20T20:01:16.976 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: Listen normally on 3 enp3s0f1 172.21.15.94:123 2024-09-20T20:01:16.976 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: Listen normally on 4 lo [::1]:123 2024-09-20T20:01:16.976 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d763%5]:123 2024-09-20T20:01:16.976 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:16 ntpd[18511]: Listening on routing socket on fd #22 for interface updates 2024-09-20T20:01:16.998 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-20T20:01:16.999 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: Command line: ntpd -gq 2024-09-20T20:01:16.999 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: ---------------------------------------------------- 2024-09-20T20:01:16.999 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: ntp-4 is maintained by Network Time Foundation, 2024-09-20T20:01:16.999 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-20T20:01:16.999 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: corporation. Support and training for ntp-4 are 2024-09-20T20:01:16.999 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: available at https://www.nwtime.org/support 2024-09-20T20:01:16.999 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: ---------------------------------------------------- 2024-09-20T20:01:16.999 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: proto: precision = 0.044 usec (-24) 2024-09-20T20:01:16.999 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: basedate set to 2022-02-04 2024-09-20T20:01:16.999 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: gps base set to 2022-02-06 (week 2196) 2024-09-20T20:01:17.000 INFO:teuthology.orchestra.run.smithi110.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-20T20:01:17.000 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-20T20:01:17.000 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: restrict ::: KOD does nothing without LIMITED. 2024-09-20T20:01:17.000 INFO:teuthology.orchestra.run.smithi110.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-20T20:01:17.001 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: Listen and drop on 0 v6wildcard [::]:123 2024-09-20T20:01:17.001 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-20T20:01:17.001 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: Listen normally on 2 lo 127.0.0.1:123 2024-09-20T20:01:17.001 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: Listen normally on 3 enp3s0f1 172.21.15.110:123 2024-09-20T20:01:17.001 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: Listen normally on 4 lo [::1]:123 2024-09-20T20:01:17.001 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:cc35%5]:123 2024-09-20T20:01:17.002 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:16 ntpd[18463]: Listening on routing socket on fd #22 for interface updates 2024-09-20T20:01:17.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:17 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:17.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:17 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:17.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:17 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:17.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:17 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:17.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:17 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:17.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:17 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:17.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:17 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:17.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:17 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:17.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:17 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:17.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:17 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:18.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:17 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:18.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:17 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:18.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:18 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:18.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:18 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:18.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:18 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:18.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:18 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:18.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:18 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:18.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:18 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:19.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:19 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:19.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:19 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:19.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:19 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:19.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:19 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:19.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:19 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:19.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:19 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:19.998 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:19 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:19.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:19 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:19.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:19 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:19.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:19 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:19.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:19 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:19.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:19 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:20.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:20 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:20.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:20 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:20.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:20 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:20.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:20 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:20.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:20 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:20.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:20 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:21.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:20 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:21.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:20 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:21.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:20 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:21.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:20 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:21.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:20 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:21.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:20 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:21.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:20 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:21.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:20 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:21.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:20 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:21.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:20 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:21.001 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:20 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:21.001 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:20 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:21.001 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:20 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:21.001 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:20 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:21.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:21 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:21.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:21 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:21.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:21 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:21.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:21 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:21.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:21 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:21.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:21 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:21.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:21 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:21.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:21 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:21.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:21 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:21.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:21 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:21.975 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:21 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:21.975 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:21 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:21.975 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:21 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:21.975 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:21 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:21.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:21 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:21.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:21 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:21.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:21 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:21.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:21 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:21.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:21 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:21.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:21 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:22.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:22 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:22.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:22 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:22.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:22 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:22.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:22 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:22.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:22 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:22.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:22 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:22.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:22 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:22.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:22 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:23.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:22 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:23.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:22 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:23.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:22 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:23.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:22 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:23.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:22 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:23.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:22 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:23.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:22 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:23.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:22 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:23.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:22 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:23.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:22 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:23.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:23 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:23.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:23 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:23.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:23 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:23.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:23 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:23.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:23 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:23.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:23 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:23.973 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:23 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:23.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:23 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:23.974 INFO:teuthology.orchestra.run.smithi094.stdout:20 Sep 20:01:23 ntpd[18511]: ntpd: time slew -0.000647 s 2024-09-20T20:01:23.974 INFO:teuthology.orchestra.run.smithi094.stdout:ntpd: time slew -0.000647s 2024-09-20T20:01:23.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:23 ntpd[18511]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-20T20:01:23.974 INFO:teuthology.orchestra.run.smithi094.stderr:20 Sep 20:01:23 ntpd[18511]: can't open /var/log/ntpstats/loopstats.20240920: Permission denied 2024-09-20T20:01:23.998 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:23 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:23.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:23 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:23.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:23 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T20:01:23.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:23 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T20:01:23.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:23 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T20:01:23.999 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:23 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T20:01:23.999 INFO:teuthology.orchestra.run.smithi110.stdout:20 Sep 20:01:23 ntpd[18463]: ntpd: time slew -0.000847 s 2024-09-20T20:01:23.999 INFO:teuthology.orchestra.run.smithi110.stdout:ntpd: time slew -0.000847s 2024-09-20T20:01:24.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:23 ntpd[18463]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-20T20:01:24.000 INFO:teuthology.orchestra.run.smithi110.stderr:20 Sep 20:01:23 ntpd[18463]: can't open /var/log/ntpstats/loopstats.20240920: Permission denied 2024-09-20T20:01:24.029 INFO:teuthology.orchestra.run.smithi094.stdout: remote refid st t when poll reach delay offset jitter 2024-09-20T20:01:24.029 INFO:teuthology.orchestra.run.smithi094.stdout:============================================================================== 2024-09-20T20:01:24.029 INFO:teuthology.orchestra.run.smithi094.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T20:01:24.029 INFO:teuthology.orchestra.run.smithi094.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T20:01:24.029 INFO:teuthology.orchestra.run.smithi094.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T20:01:24.029 INFO:teuthology.orchestra.run.smithi094.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T20:01:24.050 INFO:teuthology.orchestra.run.smithi110.stdout: remote refid st t when poll reach delay offset jitter 2024-09-20T20:01:24.050 INFO:teuthology.orchestra.run.smithi110.stdout:============================================================================== 2024-09-20T20:01:24.050 INFO:teuthology.orchestra.run.smithi110.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T20:01:24.050 INFO:teuthology.orchestra.run.smithi110.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T20:01:24.050 INFO:teuthology.orchestra.run.smithi110.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T20:01:24.050 INFO:teuthology.orchestra.run.smithi110.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T20:01:24.051 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-09-20T20:01:24.062 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-09-20T20:01:24.062 DEBUG:teuthology.orchestra.run.smithi094:> set -ex 2024-09-20T20:01:24.062 DEBUG:teuthology.orchestra.run.smithi094:> dd if=/scratch_devs of=/dev/stdout 2024-09-20T20:01:24.076 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-20T20:01:24.077 DEBUG:teuthology.orchestra.run.smithi094:> stat /dev/vg_nvme/lv_1 2024-09-20T20:01:24.124 INFO:teuthology.orchestra.run.smithi094.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-20T20:01:24.124 INFO:teuthology.orchestra.run.smithi094.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T20:01:24.125 INFO:teuthology.orchestra.run.smithi094.stdout:Device: 5h/5d Inode: 881 Links: 1 2024-09-20T20:01:24.125 INFO:teuthology.orchestra.run.smithi094.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T20:01:24.125 INFO:teuthology.orchestra.run.smithi094.stdout:Access: 2024-09-20 19:57:47.275516675 +0000 2024-09-20T20:01:24.125 INFO:teuthology.orchestra.run.smithi094.stdout:Modify: 2024-09-20 19:57:47.031518855 +0000 2024-09-20T20:01:24.125 INFO:teuthology.orchestra.run.smithi094.stdout:Change: 2024-09-20 19:57:47.031518855 +0000 2024-09-20T20:01:24.125 INFO:teuthology.orchestra.run.smithi094.stdout: Birth: - 2024-09-20T20:01:24.125 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-20T20:01:24.179 INFO:teuthology.orchestra.run.smithi094.stderr:1+0 records in 2024-09-20T20:01:24.179 INFO:teuthology.orchestra.run.smithi094.stderr:1+0 records out 2024-09-20T20:01:24.179 INFO:teuthology.orchestra.run.smithi094.stderr:512 bytes copied, 0.000309127 s, 1.7 MB/s 2024-09-20T20:01:24.180 DEBUG:teuthology.orchestra.run.smithi094:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-20T20:01:24.233 DEBUG:teuthology.orchestra.run.smithi094:> stat /dev/vg_nvme/lv_2 2024-09-20T20:01:24.281 INFO:teuthology.orchestra.run.smithi094.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-20T20:01:24.281 INFO:teuthology.orchestra.run.smithi094.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T20:01:24.281 INFO:teuthology.orchestra.run.smithi094.stdout:Device: 5h/5d Inode: 892 Links: 1 2024-09-20T20:01:24.281 INFO:teuthology.orchestra.run.smithi094.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T20:01:24.281 INFO:teuthology.orchestra.run.smithi094.stdout:Access: 2024-09-20 19:57:47.755512388 +0000 2024-09-20T20:01:24.281 INFO:teuthology.orchestra.run.smithi094.stdout:Modify: 2024-09-20 19:57:47.515514532 +0000 2024-09-20T20:01:24.281 INFO:teuthology.orchestra.run.smithi094.stdout:Change: 2024-09-20 19:57:47.515514532 +0000 2024-09-20T20:01:24.281 INFO:teuthology.orchestra.run.smithi094.stdout: Birth: - 2024-09-20T20:01:24.282 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-20T20:01:24.335 INFO:teuthology.orchestra.run.smithi094.stderr:1+0 records in 2024-09-20T20:01:24.335 INFO:teuthology.orchestra.run.smithi094.stderr:1+0 records out 2024-09-20T20:01:24.335 INFO:teuthology.orchestra.run.smithi094.stderr:512 bytes copied, 0.000323442 s, 1.6 MB/s 2024-09-20T20:01:24.336 DEBUG:teuthology.orchestra.run.smithi094:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-20T20:01:24.386 DEBUG:teuthology.orchestra.run.smithi094:> stat /dev/vg_nvme/lv_3 2024-09-20T20:01:24.433 INFO:teuthology.orchestra.run.smithi094.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-20T20:01:24.433 INFO:teuthology.orchestra.run.smithi094.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T20:01:24.433 INFO:teuthology.orchestra.run.smithi094.stdout:Device: 5h/5d Inode: 912 Links: 1 2024-09-20T20:01:24.433 INFO:teuthology.orchestra.run.smithi094.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T20:01:24.433 INFO:teuthology.orchestra.run.smithi094.stdout:Access: 2024-09-20 19:57:48.215508280 +0000 2024-09-20T20:01:24.433 INFO:teuthology.orchestra.run.smithi094.stdout:Modify: 2024-09-20 19:57:47.967510495 +0000 2024-09-20T20:01:24.433 INFO:teuthology.orchestra.run.smithi094.stdout:Change: 2024-09-20 19:57:47.967510495 +0000 2024-09-20T20:01:24.433 INFO:teuthology.orchestra.run.smithi094.stdout: Birth: - 2024-09-20T20:01:24.433 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-20T20:01:24.486 INFO:teuthology.orchestra.run.smithi094.stderr:1+0 records in 2024-09-20T20:01:24.487 INFO:teuthology.orchestra.run.smithi094.stderr:1+0 records out 2024-09-20T20:01:24.487 INFO:teuthology.orchestra.run.smithi094.stderr:512 bytes copied, 0.000194661 s, 2.6 MB/s 2024-09-20T20:01:24.488 DEBUG:teuthology.orchestra.run.smithi094:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-20T20:01:24.538 DEBUG:teuthology.orchestra.run.smithi094:> stat /dev/vg_nvme/lv_4 2024-09-20T20:01:24.585 INFO:teuthology.orchestra.run.smithi094.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-20T20:01:24.585 INFO:teuthology.orchestra.run.smithi094.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T20:01:24.585 INFO:teuthology.orchestra.run.smithi094.stdout:Device: 5h/5d Inode: 931 Links: 1 2024-09-20T20:01:24.585 INFO:teuthology.orchestra.run.smithi094.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T20:01:24.586 INFO:teuthology.orchestra.run.smithi094.stdout:Access: 2024-09-20 19:57:48.687504064 +0000 2024-09-20T20:01:24.586 INFO:teuthology.orchestra.run.smithi094.stdout:Modify: 2024-09-20 19:57:48.435506315 +0000 2024-09-20T20:01:24.586 INFO:teuthology.orchestra.run.smithi094.stdout:Change: 2024-09-20 19:57:48.435506315 +0000 2024-09-20T20:01:24.586 INFO:teuthology.orchestra.run.smithi094.stdout: Birth: - 2024-09-20T20:01:24.586 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-20T20:01:24.639 INFO:teuthology.orchestra.run.smithi094.stderr:1+0 records in 2024-09-20T20:01:24.639 INFO:teuthology.orchestra.run.smithi094.stderr:1+0 records out 2024-09-20T20:01:24.639 INFO:teuthology.orchestra.run.smithi094.stderr:512 bytes copied, 0.00025355 s, 2.0 MB/s 2024-09-20T20:01:24.640 DEBUG:teuthology.orchestra.run.smithi094:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-20T20:01:24.690 DEBUG:teuthology.orchestra.run.smithi094:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-09-20T20:01:24.832 INFO:teuthology.orchestra.run.smithi094.stdout:loop 2024-09-20T20:01:24.834 INFO:tasks.nvme_loop:Connecting nvme_loop smithi094:/dev/vg_nvme/lv_1... 2024-09-20T20:01:24.834 DEBUG:teuthology.orchestra.run.smithi094:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-09-20T20:01:24.852 INFO:teuthology.orchestra.run.smithi094.stdout:1 2024-09-20T20:01:24.871 INFO:teuthology.orchestra.run.smithi094.stdout:/dev/vg_nvme/lv_11 2024-09-20T20:01:24.888 INFO:tasks.nvme_loop:Connecting nvme_loop smithi094:/dev/vg_nvme/lv_2... 2024-09-20T20:01:24.888 DEBUG:teuthology.orchestra.run.smithi094:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-09-20T20:01:24.950 INFO:teuthology.orchestra.run.smithi094.stdout:1 2024-09-20T20:01:24.972 INFO:teuthology.orchestra.run.smithi094.stdout:/dev/vg_nvme/lv_21 2024-09-20T20:01:24.989 INFO:tasks.nvme_loop:Connecting nvme_loop smithi094:/dev/vg_nvme/lv_3... 2024-09-20T20:01:24.989 DEBUG:teuthology.orchestra.run.smithi094:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-09-20T20:01:25.049 INFO:teuthology.orchestra.run.smithi094.stdout:1 2024-09-20T20:01:25.069 INFO:teuthology.orchestra.run.smithi094.stdout:/dev/vg_nvme/lv_31 2024-09-20T20:01:25.085 INFO:tasks.nvme_loop:Connecting nvme_loop smithi094:/dev/vg_nvme/lv_4... 2024-09-20T20:01:25.085 DEBUG:teuthology.orchestra.run.smithi094:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-09-20T20:01:25.148 INFO:teuthology.orchestra.run.smithi094.stdout:1 2024-09-20T20:01:25.167 INFO:teuthology.orchestra.run.smithi094.stdout:/dev/vg_nvme/lv_41 2024-09-20T20:01:25.185 DEBUG:teuthology.orchestra.run.smithi094:> set -ex 2024-09-20T20:01:25.185 DEBUG:teuthology.orchestra.run.smithi094:> dd if=/scratch_devs of=/dev/stdout 2024-09-20T20:01:25.234 DEBUG:teuthology.orchestra.run.smithi094:> sudo nvme list -o json 2024-09-20T20:01:25.287 INFO:teuthology.orchestra.run.smithi094.stdout:{ 2024-09-20T20:01:25.287 INFO:teuthology.orchestra.run.smithi094.stdout: "Devices" : [ 2024-09-20T20:01:25.288 INFO:teuthology.orchestra.run.smithi094.stdout: { 2024-09-20T20:01:25.288 INFO:teuthology.orchestra.run.smithi094.stdout: "DevicePath" : "/dev/nvme0n1", 2024-09-20T20:01:25.288 INFO:teuthology.orchestra.run.smithi094.stdout: "Firmware" : "E2010325", 2024-09-20T20:01:25.288 INFO:teuthology.orchestra.run.smithi094.stdout: "Index" : 0, 2024-09-20T20:01:25.288 INFO:teuthology.orchestra.run.smithi094.stdout: "ModelNumber" : "INTEL SSDPED1D480GA", 2024-09-20T20:01:25.288 INFO:teuthology.orchestra.run.smithi094.stdout: "ProductName" : "Unknown Device", 2024-09-20T20:01:25.288 INFO:teuthology.orchestra.run.smithi094.stdout: "SerialNumber" : "PHMB7513001L480DGN" 2024-09-20T20:01:25.288 INFO:teuthology.orchestra.run.smithi094.stdout: }, 2024-09-20T20:01:25.288 INFO:teuthology.orchestra.run.smithi094.stdout: { 2024-09-20T20:01:25.288 INFO:teuthology.orchestra.run.smithi094.stdout: "DevicePath" : "/dev/nvme1n1", 2024-09-20T20:01:25.289 INFO:teuthology.orchestra.run.smithi094.stdout: "Firmware" : "5.15.0-1", 2024-09-20T20:01:25.289 INFO:teuthology.orchestra.run.smithi094.stdout: "Index" : 1, 2024-09-20T20:01:25.289 INFO:teuthology.orchestra.run.smithi094.stdout: "ModelNumber" : "Linux", 2024-09-20T20:01:25.289 INFO:teuthology.orchestra.run.smithi094.stdout: "ProductName" : "Unknown Device", 2024-09-20T20:01:25.289 INFO:teuthology.orchestra.run.smithi094.stdout: "SerialNumber" : "efc2baaed21ce2205bbf" 2024-09-20T20:01:25.289 INFO:teuthology.orchestra.run.smithi094.stdout: }, 2024-09-20T20:01:25.289 INFO:teuthology.orchestra.run.smithi094.stdout: { 2024-09-20T20:01:25.289 INFO:teuthology.orchestra.run.smithi094.stdout: "DevicePath" : "/dev/nvme2n1", 2024-09-20T20:01:25.289 INFO:teuthology.orchestra.run.smithi094.stdout: "Firmware" : "5.15.0-1", 2024-09-20T20:01:25.289 INFO:teuthology.orchestra.run.smithi094.stdout: "Index" : 2, 2024-09-20T20:01:25.289 INFO:teuthology.orchestra.run.smithi094.stdout: "ModelNumber" : "Linux", 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: "ProductName" : "Unknown Device", 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: "SerialNumber" : "cb144361848c50d5760f" 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: }, 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: { 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: "DevicePath" : "/dev/nvme3n1", 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: "Firmware" : "5.15.0-1", 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: "Index" : 3, 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: "ModelNumber" : "Linux", 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: "ProductName" : "Unknown Device", 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: "SerialNumber" : "30aeb41f2b9db936898b" 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: }, 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: { 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: "DevicePath" : "/dev/nvme4n1", 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: "Firmware" : "5.15.0-1", 2024-09-20T20:01:25.290 INFO:teuthology.orchestra.run.smithi094.stdout: "Index" : 4, 2024-09-20T20:01:25.291 INFO:teuthology.orchestra.run.smithi094.stdout: "ModelNumber" : "Linux", 2024-09-20T20:01:25.291 INFO:teuthology.orchestra.run.smithi094.stdout: "ProductName" : "Unknown Device", 2024-09-20T20:01:25.291 INFO:teuthology.orchestra.run.smithi094.stdout: "SerialNumber" : "8a484dc9431e0a6fd803" 2024-09-20T20:01:25.291 INFO:teuthology.orchestra.run.smithi094.stdout: } 2024-09-20T20:01:25.291 INFO:teuthology.orchestra.run.smithi094.stdout: ] 2024-09-20T20:01:25.292 INFO:teuthology.orchestra.run.smithi094.stdout:} 2024-09-20T20:01:25.292 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-20T20:01:25.293 DEBUG:teuthology.orchestra.run.smithi094:> set -ex 2024-09-20T20:01:25.293 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd of=/scratch_devs 2024-09-20T20:01:25.349 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-09-20T20:01:25.349 DEBUG:teuthology.orchestra.run.smithi110:> dd if=/scratch_devs of=/dev/stdout 2024-09-20T20:01:25.355 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-20T20:01:25.355 DEBUG:teuthology.orchestra.run.smithi110:> stat /dev/vg_nvme/lv_1 2024-09-20T20:01:25.403 INFO:teuthology.orchestra.run.smithi110.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-20T20:01:25.403 INFO:teuthology.orchestra.run.smithi110.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T20:01:25.403 INFO:teuthology.orchestra.run.smithi110.stdout:Device: 5h/5d Inode: 876 Links: 1 2024-09-20T20:01:25.403 INFO:teuthology.orchestra.run.smithi110.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T20:01:25.403 INFO:teuthology.orchestra.run.smithi110.stdout:Access: 2024-09-20 19:57:47.159316714 +0000 2024-09-20T20:01:25.403 INFO:teuthology.orchestra.run.smithi110.stdout:Modify: 2024-09-20 19:57:46.915318894 +0000 2024-09-20T20:01:25.404 INFO:teuthology.orchestra.run.smithi110.stdout:Change: 2024-09-20 19:57:46.915318894 +0000 2024-09-20T20:01:25.404 INFO:teuthology.orchestra.run.smithi110.stdout: Birth: - 2024-09-20T20:01:25.404 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-20T20:01:25.458 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records in 2024-09-20T20:01:25.458 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records out 2024-09-20T20:01:25.458 INFO:teuthology.orchestra.run.smithi110.stderr:512 bytes copied, 0.000319587 s, 1.6 MB/s 2024-09-20T20:01:25.459 DEBUG:teuthology.orchestra.run.smithi110:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-20T20:01:25.508 DEBUG:teuthology.orchestra.run.smithi110:> stat /dev/vg_nvme/lv_2 2024-09-20T20:01:25.581 INFO:teuthology.orchestra.run.smithi110.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-20T20:01:25.581 INFO:teuthology.orchestra.run.smithi110.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T20:01:25.581 INFO:teuthology.orchestra.run.smithi110.stdout:Device: 5h/5d Inode: 892 Links: 1 2024-09-20T20:01:25.581 INFO:teuthology.orchestra.run.smithi110.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T20:01:25.582 INFO:teuthology.orchestra.run.smithi110.stdout:Access: 2024-09-20 19:57:47.631312498 +0000 2024-09-20T20:01:25.582 INFO:teuthology.orchestra.run.smithi110.stdout:Modify: 2024-09-20 19:57:47.383314713 +0000 2024-09-20T20:01:25.582 INFO:teuthology.orchestra.run.smithi110.stdout:Change: 2024-09-20 19:57:47.383314713 +0000 2024-09-20T20:01:25.582 INFO:teuthology.orchestra.run.smithi110.stdout: Birth: - 2024-09-20T20:01:25.582 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-20T20:01:25.633 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records in 2024-09-20T20:01:25.633 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records out 2024-09-20T20:01:25.633 INFO:teuthology.orchestra.run.smithi110.stderr:512 bytes copied, 0.000202998 s, 2.5 MB/s 2024-09-20T20:01:25.634 DEBUG:teuthology.orchestra.run.smithi110:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-20T20:01:25.685 DEBUG:teuthology.orchestra.run.smithi110:> stat /dev/vg_nvme/lv_3 2024-09-20T20:01:25.732 INFO:teuthology.orchestra.run.smithi110.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-20T20:01:25.732 INFO:teuthology.orchestra.run.smithi110.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T20:01:25.732 INFO:teuthology.orchestra.run.smithi110.stdout:Device: 5h/5d Inode: 910 Links: 1 2024-09-20T20:01:25.732 INFO:teuthology.orchestra.run.smithi110.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T20:01:25.732 INFO:teuthology.orchestra.run.smithi110.stdout:Access: 2024-09-20 19:57:47.851310533 +0000 2024-09-20T20:01:25.733 INFO:teuthology.orchestra.run.smithi110.stdout:Modify: 2024-09-20 19:57:47.847310569 +0000 2024-09-20T20:01:25.733 INFO:teuthology.orchestra.run.smithi110.stdout:Change: 2024-09-20 19:57:47.847310569 +0000 2024-09-20T20:01:25.733 INFO:teuthology.orchestra.run.smithi110.stdout: Birth: - 2024-09-20T20:01:25.733 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-20T20:01:25.785 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records in 2024-09-20T20:01:25.785 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records out 2024-09-20T20:01:25.785 INFO:teuthology.orchestra.run.smithi110.stderr:512 bytes copied, 0.000201169 s, 2.5 MB/s 2024-09-20T20:01:25.787 DEBUG:teuthology.orchestra.run.smithi110:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-20T20:01:25.837 DEBUG:teuthology.orchestra.run.smithi110:> stat /dev/vg_nvme/lv_4 2024-09-20T20:01:25.883 INFO:teuthology.orchestra.run.smithi110.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-20T20:01:25.884 INFO:teuthology.orchestra.run.smithi110.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T20:01:25.884 INFO:teuthology.orchestra.run.smithi110.stdout:Device: 5h/5d Inode: 926 Links: 1 2024-09-20T20:01:25.884 INFO:teuthology.orchestra.run.smithi110.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T20:01:25.884 INFO:teuthology.orchestra.run.smithi110.stdout:Access: 2024-09-20 19:57:48.619303673 +0000 2024-09-20T20:01:25.884 INFO:teuthology.orchestra.run.smithi110.stdout:Modify: 2024-09-20 19:57:48.367305923 +0000 2024-09-20T20:01:25.884 INFO:teuthology.orchestra.run.smithi110.stdout:Change: 2024-09-20 19:57:48.367305923 +0000 2024-09-20T20:01:25.884 INFO:teuthology.orchestra.run.smithi110.stdout: Birth: - 2024-09-20T20:01:25.884 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-20T20:01:25.937 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records in 2024-09-20T20:01:25.938 INFO:teuthology.orchestra.run.smithi110.stderr:1+0 records out 2024-09-20T20:01:25.938 INFO:teuthology.orchestra.run.smithi110.stderr:512 bytes copied, 0.000207735 s, 2.5 MB/s 2024-09-20T20:01:25.939 DEBUG:teuthology.orchestra.run.smithi110:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-20T20:01:25.989 DEBUG:teuthology.orchestra.run.smithi110:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-09-20T20:01:26.114 INFO:teuthology.orchestra.run.smithi110.stdout:loop 2024-09-20T20:01:26.115 INFO:tasks.nvme_loop:Connecting nvme_loop smithi110:/dev/vg_nvme/lv_1... 2024-09-20T20:01:26.115 DEBUG:teuthology.orchestra.run.smithi110:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-09-20T20:01:26.133 INFO:teuthology.orchestra.run.smithi110.stdout:1 2024-09-20T20:01:26.151 INFO:teuthology.orchestra.run.smithi110.stdout:/dev/vg_nvme/lv_11 2024-09-20T20:01:26.167 INFO:tasks.nvme_loop:Connecting nvme_loop smithi110:/dev/vg_nvme/lv_2... 2024-09-20T20:01:26.167 DEBUG:teuthology.orchestra.run.smithi110:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-09-20T20:01:26.226 INFO:teuthology.orchestra.run.smithi110.stdout:1 2024-09-20T20:01:26.246 INFO:teuthology.orchestra.run.smithi110.stdout:/dev/vg_nvme/lv_21 2024-09-20T20:01:26.262 INFO:tasks.nvme_loop:Connecting nvme_loop smithi110:/dev/vg_nvme/lv_3... 2024-09-20T20:01:26.262 DEBUG:teuthology.orchestra.run.smithi110:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-09-20T20:01:26.320 INFO:teuthology.orchestra.run.smithi110.stdout:1 2024-09-20T20:01:26.341 INFO:teuthology.orchestra.run.smithi110.stdout:/dev/vg_nvme/lv_31 2024-09-20T20:01:26.359 INFO:tasks.nvme_loop:Connecting nvme_loop smithi110:/dev/vg_nvme/lv_4... 2024-09-20T20:01:26.359 DEBUG:teuthology.orchestra.run.smithi110:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-09-20T20:01:26.418 INFO:teuthology.orchestra.run.smithi110.stdout:1 2024-09-20T20:01:26.439 INFO:teuthology.orchestra.run.smithi110.stdout:/dev/vg_nvme/lv_41 2024-09-20T20:01:26.454 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-09-20T20:01:26.454 DEBUG:teuthology.orchestra.run.smithi110:> dd if=/scratch_devs of=/dev/stdout 2024-09-20T20:01:26.508 DEBUG:teuthology.orchestra.run.smithi110:> sudo nvme list -o json 2024-09-20T20:01:26.564 INFO:teuthology.orchestra.run.smithi110.stdout:{ 2024-09-20T20:01:26.564 INFO:teuthology.orchestra.run.smithi110.stdout: "Devices" : [ 2024-09-20T20:01:26.564 INFO:teuthology.orchestra.run.smithi110.stdout: { 2024-09-20T20:01:26.564 INFO:teuthology.orchestra.run.smithi110.stdout: "DevicePath" : "/dev/nvme0n1", 2024-09-20T20:01:26.564 INFO:teuthology.orchestra.run.smithi110.stdout: "Firmware" : "E2010325", 2024-09-20T20:01:26.564 INFO:teuthology.orchestra.run.smithi110.stdout: "Index" : 0, 2024-09-20T20:01:26.564 INFO:teuthology.orchestra.run.smithi110.stdout: "ModelNumber" : "INTEL SSDPED1D480GA", 2024-09-20T20:01:26.564 INFO:teuthology.orchestra.run.smithi110.stdout: "ProductName" : "Unknown Device", 2024-09-20T20:01:26.564 INFO:teuthology.orchestra.run.smithi110.stdout: "SerialNumber" : "PHMB7476002T480DGN" 2024-09-20T20:01:26.564 INFO:teuthology.orchestra.run.smithi110.stdout: }, 2024-09-20T20:01:26.564 INFO:teuthology.orchestra.run.smithi110.stdout: { 2024-09-20T20:01:26.565 INFO:teuthology.orchestra.run.smithi110.stdout: "DevicePath" : "/dev/nvme1n1", 2024-09-20T20:01:26.565 INFO:teuthology.orchestra.run.smithi110.stdout: "Firmware" : "5.15.0-1", 2024-09-20T20:01:26.565 INFO:teuthology.orchestra.run.smithi110.stdout: "Index" : 1, 2024-09-20T20:01:26.565 INFO:teuthology.orchestra.run.smithi110.stdout: "ModelNumber" : "Linux", 2024-09-20T20:01:26.565 INFO:teuthology.orchestra.run.smithi110.stdout: "ProductName" : "Unknown Device", 2024-09-20T20:01:26.565 INFO:teuthology.orchestra.run.smithi110.stdout: "SerialNumber" : "f0a8f92faf52d0b99031" 2024-09-20T20:01:26.565 INFO:teuthology.orchestra.run.smithi110.stdout: }, 2024-09-20T20:01:26.565 INFO:teuthology.orchestra.run.smithi110.stdout: { 2024-09-20T20:01:26.565 INFO:teuthology.orchestra.run.smithi110.stdout: "DevicePath" : "/dev/nvme2n1", 2024-09-20T20:01:26.565 INFO:teuthology.orchestra.run.smithi110.stdout: "Firmware" : "5.15.0-1", 2024-09-20T20:01:26.565 INFO:teuthology.orchestra.run.smithi110.stdout: "Index" : 2, 2024-09-20T20:01:26.565 INFO:teuthology.orchestra.run.smithi110.stdout: "ModelNumber" : "Linux", 2024-09-20T20:01:26.565 INFO:teuthology.orchestra.run.smithi110.stdout: "ProductName" : "Unknown Device", 2024-09-20T20:01:26.565 INFO:teuthology.orchestra.run.smithi110.stdout: "SerialNumber" : "c2a5465deeeebeeef338" 2024-09-20T20:01:26.566 INFO:teuthology.orchestra.run.smithi110.stdout: }, 2024-09-20T20:01:26.566 INFO:teuthology.orchestra.run.smithi110.stdout: { 2024-09-20T20:01:26.566 INFO:teuthology.orchestra.run.smithi110.stdout: "DevicePath" : "/dev/nvme3n1", 2024-09-20T20:01:26.566 INFO:teuthology.orchestra.run.smithi110.stdout: "Firmware" : "5.15.0-1", 2024-09-20T20:01:26.566 INFO:teuthology.orchestra.run.smithi110.stdout: "Index" : 3, 2024-09-20T20:01:26.566 INFO:teuthology.orchestra.run.smithi110.stdout: "ModelNumber" : "Linux", 2024-09-20T20:01:26.566 INFO:teuthology.orchestra.run.smithi110.stdout: "ProductName" : "Unknown Device", 2024-09-20T20:01:26.566 INFO:teuthology.orchestra.run.smithi110.stdout: "SerialNumber" : "83b3f8398fc3354581bf" 2024-09-20T20:01:26.566 INFO:teuthology.orchestra.run.smithi110.stdout: }, 2024-09-20T20:01:26.566 INFO:teuthology.orchestra.run.smithi110.stdout: { 2024-09-20T20:01:26.566 INFO:teuthology.orchestra.run.smithi110.stdout: "DevicePath" : "/dev/nvme4n1", 2024-09-20T20:01:26.566 INFO:teuthology.orchestra.run.smithi110.stdout: "Firmware" : "5.15.0-1", 2024-09-20T20:01:26.566 INFO:teuthology.orchestra.run.smithi110.stdout: "Index" : 4, 2024-09-20T20:01:26.566 INFO:teuthology.orchestra.run.smithi110.stdout: "ModelNumber" : "Linux", 2024-09-20T20:01:26.567 INFO:teuthology.orchestra.run.smithi110.stdout: "ProductName" : "Unknown Device", 2024-09-20T20:01:26.567 INFO:teuthology.orchestra.run.smithi110.stdout: "SerialNumber" : "24f96a32a7e76e0f73a6" 2024-09-20T20:01:26.567 INFO:teuthology.orchestra.run.smithi110.stdout: } 2024-09-20T20:01:26.567 INFO:teuthology.orchestra.run.smithi110.stdout: ] 2024-09-20T20:01:26.567 INFO:teuthology.orchestra.run.smithi110.stdout:} 2024-09-20T20:01:26.568 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-20T20:01:26.568 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-09-20T20:01:26.568 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd of=/scratch_devs 2024-09-20T20:01:26.620 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-20T20:01:26.714 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'CEPHADM_DAEMON_PLACE_FAIL', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': 'e8baca1eac6c3c9c88bf2ea4493e448bd54936a7'} 2024-09-20T20:01:26.714 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 2024-09-20T20:01:26.715 INFO:tasks.cephadm:Cluster fsid is 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:01:26.715 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-20T20:01:26.715 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-09-20T20:01:26.715 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi094': '172.21.15.94', 'mon.smithi110': '172.21.15.110'} 2024-09-20T20:01:26.715 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-20T20:01:26.715 DEBUG:teuthology.orchestra.run.smithi094:> sudo hostname $(hostname -s) 2024-09-20T20:01:26.730 DEBUG:teuthology.orchestra.run.smithi110:> sudo hostname $(hostname -s) 2024-09-20T20:01:26.743 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-20T20:01:26.743 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 2024-09-20T20:01:26.882 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'e8baca1eac6c3c9c88bf2ea4493e448bd54936a7', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic/83188/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.3.0-5127-ge8baca1e', 'node_name': '172.21.5.33+adami03', 'job_name': 'ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.3.0-5127-ge8baca1e-1jammy'}, 'url': 'https://3.chacra.ceph.com/r/ceph/wip-adk-testing-2024-09-20-0910/e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-09-20 14:31:41.725915', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-adk-testing-2024-09-20-0910', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/wip-adk-testing-2024-09-20-0910/e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-09-20T20:01:27.016 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref wip-adk-testing-2024-09-20-0910, sha1 e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 2024-09-20T20:01:27.018 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-09-20-0910/e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-20T20:01:27.019 INFO:tasks.cephadm:Downloading cephadm from url: https://3.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-09-20-0910/e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-20T20:01:27.019 DEBUG:teuthology.orchestra.run.smithi094:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-09-20-0910/e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-20T20:01:27.655 INFO:teuthology.orchestra.run.smithi094.stdout:-rw-rw-r-- 1 ubuntu ubuntu 811827 Sep 20 20:01 /home/ubuntu/cephtest/cephadm 2024-09-20T20:01:27.655 DEBUG:teuthology.orchestra.run.smithi110:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-09-20-0910/e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-20T20:01:28.315 INFO:teuthology.orchestra.run.smithi110.stdout:-rw-rw-r-- 1 ubuntu ubuntu 811827 Sep 20 20:01 /home/ubuntu/cephtest/cephadm 2024-09-20T20:01:28.316 DEBUG:teuthology.orchestra.run.smithi094:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-20T20:01:28.324 DEBUG:teuthology.orchestra.run.smithi110:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-20T20:01:28.347 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 on all hosts... 2024-09-20T20:01:28.347 DEBUG:teuthology.orchestra.run.smithi094:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 pull 2024-09-20T20:01:28.370 DEBUG:teuthology.orchestra.run.smithi110:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 pull 2024-09-20T20:01:28.550 INFO:teuthology.orchestra.run.smithi094.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7... 2024-09-20T20:01:28.556 INFO:teuthology.orchestra.run.smithi110.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7... 2024-09-20T20:02:41.294 INFO:teuthology.orchestra.run.smithi110.stdout:{ 2024-09-20T20:02:41.294 INFO:teuthology.orchestra.run.smithi110.stdout: "ceph_version": "ceph version 19.3.0-5127-ge8baca1e (e8baca1eac6c3c9c88bf2ea4493e448bd54936a7) squid (dev)", 2024-09-20T20:02:41.294 INFO:teuthology.orchestra.run.smithi110.stdout: "image_id": "82f5f45939a4d8f62db4f02ae9374981c40785acf9bb0102013462d795122b30", 2024-09-20T20:02:41.294 INFO:teuthology.orchestra.run.smithi110.stdout: "repo_digests": [ 2024-09-20T20:02:41.294 INFO:teuthology.orchestra.run.smithi110.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:dc9dc647e3e3360d1adc5cf221a5bec436cbf643c6188f083c790ea05138208d" 2024-09-20T20:02:41.294 INFO:teuthology.orchestra.run.smithi110.stdout: ] 2024-09-20T20:02:41.294 INFO:teuthology.orchestra.run.smithi110.stdout:} 2024-09-20T20:02:42.618 INFO:teuthology.orchestra.run.smithi094.stdout:{ 2024-09-20T20:02:42.618 INFO:teuthology.orchestra.run.smithi094.stdout: "ceph_version": "ceph version 19.3.0-5127-ge8baca1e (e8baca1eac6c3c9c88bf2ea4493e448bd54936a7) squid (dev)", 2024-09-20T20:02:42.618 INFO:teuthology.orchestra.run.smithi094.stdout: "image_id": "82f5f45939a4d8f62db4f02ae9374981c40785acf9bb0102013462d795122b30", 2024-09-20T20:02:42.618 INFO:teuthology.orchestra.run.smithi094.stdout: "repo_digests": [ 2024-09-20T20:02:42.619 INFO:teuthology.orchestra.run.smithi094.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:dc9dc647e3e3360d1adc5cf221a5bec436cbf643c6188f083c790ea05138208d" 2024-09-20T20:02:42.619 INFO:teuthology.orchestra.run.smithi094.stdout: ] 2024-09-20T20:02:42.619 INFO:teuthology.orchestra.run.smithi094.stdout:} 2024-09-20T20:02:42.664 DEBUG:teuthology.orchestra.run.smithi094:> sudo mkdir -p /etc/ceph 2024-09-20T20:02:42.677 DEBUG:teuthology.orchestra.run.smithi110:> sudo mkdir -p /etc/ceph 2024-09-20T20:02:42.691 DEBUG:teuthology.orchestra.run.smithi094:> sudo chmod 777 /etc/ceph 2024-09-20T20:02:42.731 DEBUG:teuthology.orchestra.run.smithi110:> sudo chmod 777 /etc/ceph 2024-09-20T20:02:42.746 INFO:tasks.cephadm:Writing seed config... 2024-09-20T20:02:42.747 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-20T20:02:42.747 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-20T20:02:42.747 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-20T20:02:42.747 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-20T20:02:42.747 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-20T20:02:42.747 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-20T20:02:42.748 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-20T20:02:42.748 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-09-20T20:02:42.748 DEBUG:teuthology.orchestra.run.smithi094:> set -ex 2024-09-20T20:02:42.748 DEBUG:teuthology.orchestra.run.smithi094:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-20T20:02:42.776 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 1e7890e4-778b-11ef-baf5-efdc52797490 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = True bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-09-20T20:02:42.776 DEBUG:teuthology.orchestra.run.smithi094:mon.smithi094> sudo journalctl -f -n 0 -u ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094.service 2024-09-20T20:02:42.821 INFO:tasks.cephadm:Bootstrapping... 2024-09-20T20:02:42.822 DEBUG:teuthology.orchestra.run.smithi094:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 -v bootstrap --fsid 1e7890e4-778b-11ef-baf5-efdc52797490 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.94 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-20T20:02:43.046 INFO:teuthology.orchestra.run.smithi094.stdout:-------------------------------------------------------------------------------- 2024-09-20T20:02:43.046 INFO:teuthology.orchestra.run.smithi094.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7', '-v', 'bootstrap', '--fsid', '1e7890e4-778b-11ef-baf5-efdc52797490', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-ip', '172.21.15.94', '--skip-admin-label'] 2024-09-20T20:02:43.046 INFO:teuthology.orchestra.run.smithi094.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-20T20:02:43.047 INFO:teuthology.orchestra.run.smithi094.stdout:Verifying podman|docker is present... 2024-09-20T20:02:43.047 INFO:teuthology.orchestra.run.smithi094.stdout:Verifying lvm2 is present... 2024-09-20T20:02:43.047 INFO:teuthology.orchestra.run.smithi094.stdout:Verifying time synchronization is in place... 2024-09-20T20:02:43.051 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-20T20:02:43.051 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-20T20:02:43.056 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-20T20:02:43.056 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stdout inactive 2024-09-20T20:02:43.060 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-20T20:02:43.060 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-20T20:02:43.064 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-20T20:02:43.064 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stdout inactive 2024-09-20T20:02:43.067 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-20T20:02:43.067 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stdout masked 2024-09-20T20:02:43.070 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-20T20:02:43.070 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stdout inactive 2024-09-20T20:02:43.074 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-20T20:02:43.074 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-20T20:02:43.077 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-20T20:02:43.077 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stdout inactive 2024-09-20T20:02:43.081 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stdout enabled 2024-09-20T20:02:43.085 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stdout active 2024-09-20T20:02:43.085 INFO:teuthology.orchestra.run.smithi094.stdout:Unit ntp.service is enabled and running 2024-09-20T20:02:43.085 INFO:teuthology.orchestra.run.smithi094.stdout:Repeating the final host check... 2024-09-20T20:02:43.085 INFO:teuthology.orchestra.run.smithi094.stdout:docker (/usr/bin/docker) is present 2024-09-20T20:02:43.085 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl is present 2024-09-20T20:02:43.085 INFO:teuthology.orchestra.run.smithi094.stdout:lvcreate is present 2024-09-20T20:02:43.088 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-20T20:02:43.088 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-20T20:02:43.091 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-20T20:02:43.091 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stdout inactive 2024-09-20T20:02:43.094 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-20T20:02:43.095 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-20T20:02:43.098 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-20T20:02:43.098 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stdout inactive 2024-09-20T20:02:43.101 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-20T20:02:43.101 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stdout masked 2024-09-20T20:02:43.104 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-20T20:02:43.104 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stdout inactive 2024-09-20T20:02:43.107 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-20T20:02:43.107 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-20T20:02:43.110 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-20T20:02:43.110 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stdout inactive 2024-09-20T20:02:43.114 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stdout enabled 2024-09-20T20:02:43.118 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stdout active 2024-09-20T20:02:43.118 INFO:teuthology.orchestra.run.smithi094.stdout:Unit ntp.service is enabled and running 2024-09-20T20:02:43.118 INFO:teuthology.orchestra.run.smithi094.stdout:Host looks OK 2024-09-20T20:02:43.118 INFO:teuthology.orchestra.run.smithi094.stdout:Cluster fsid: 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:02:43.118 INFO:teuthology.orchestra.run.smithi094.stdout:Acquiring lock 139717235506336 on /run/cephadm/1e7890e4-778b-11ef-baf5-efdc52797490.lock 2024-09-20T20:02:43.118 INFO:teuthology.orchestra.run.smithi094.stdout:Lock 139717235506336 acquired on /run/cephadm/1e7890e4-778b-11ef-baf5-efdc52797490.lock 2024-09-20T20:02:43.118 INFO:teuthology.orchestra.run.smithi094.stdout:Verifying IP 172.21.15.94 port 3300 ... 2024-09-20T20:02:43.118 INFO:teuthology.orchestra.run.smithi094.stdout:Verifying IP 172.21.15.94 port 6789 ... 2024-09-20T20:02:43.118 INFO:teuthology.orchestra.run.smithi094.stdout:Base mon IP(s) is [172.21.15.94:3300, 172.21.15.94:6789], mon addrv is [v2:172.21.15.94:3300,v1:172.21.15.94:6789] 2024-09-20T20:02:43.120 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 2024-09-20T20:02:43.121 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.94 metric 100 2024-09-20T20:02:43.121 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout 158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.94 metric 100 2024-09-20T20:02:43.121 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-20T20:02:43.121 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.94 metric 100 2024-09-20T20:02:43.121 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout 172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.94 metric 100 2024-09-20T20:02:43.121 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout 172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.94 metric 100 2024-09-20T20:02:43.121 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout 172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.94 metric 100 2024-09-20T20:02:43.122 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-20T20:02:43.122 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-09-20T20:02:43.122 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 expires 1788sec pref medium 2024-09-20T20:02:43.124 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-20T20:02:43.124 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-20T20:02:43.124 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-20T20:02:43.124 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-09-20T20:02:43.125 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:fe8f:d763/64 scope link 2024-09-20T20:02:43.125 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-20T20:02:43.126 INFO:teuthology.orchestra.run.smithi094.stdout:Mon IP `172.21.15.94` is in CIDR network `172.21.0.0/20` 2024-09-20T20:02:43.126 INFO:teuthology.orchestra.run.smithi094.stdout:Mon IP `172.21.15.94` is in CIDR network `172.21.0.0/20` 2024-09-20T20:02:43.126 INFO:teuthology.orchestra.run.smithi094.stdout:Mon IP `172.21.15.94` is in CIDR network `172.21.0.1/32` 2024-09-20T20:02:43.126 INFO:teuthology.orchestra.run.smithi094.stdout:Mon IP `172.21.15.94` is in CIDR network `172.21.0.1/32` 2024-09-20T20:02:43.126 INFO:teuthology.orchestra.run.smithi094.stdout:Mon IP `172.21.15.94` is in CIDR network `172.21.0.2/32` 2024-09-20T20:02:43.126 INFO:teuthology.orchestra.run.smithi094.stdout:Mon IP `172.21.15.94` is in CIDR network `172.21.0.2/32` 2024-09-20T20:02:43.126 INFO:teuthology.orchestra.run.smithi094.stdout:Mon IP `172.21.15.94` is in CIDR network `172.21.15.254/32` 2024-09-20T20:02:43.126 INFO:teuthology.orchestra.run.smithi094.stdout:Mon IP `172.21.15.94` is in CIDR network `172.21.15.254/32` 2024-09-20T20:02:43.126 INFO:teuthology.orchestra.run.smithi094.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20', '172.21.0.1/32', '172.21.0.1/32', '172.21.0.2/32', '172.21.0.2/32', '172.21.15.254/32', '172.21.15.254/32'] 2024-09-20T20:02:43.126 INFO:teuthology.orchestra.run.smithi094.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-20T20:02:43.127 INFO:teuthology.orchestra.run.smithi094.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7... 2024-09-20T20:02:43.374 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/docker: stdout e8baca1eac6c3c9c88bf2ea4493e448bd54936a7: Pulling from ceph-ci/ceph 2024-09-20T20:02:43.375 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/docker: stdout Digest: sha256:dc9dc647e3e3360d1adc5cf221a5bec436cbf643c6188f083c790ea05138208d 2024-09-20T20:02:43.375 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 2024-09-20T20:02:43.375 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 2024-09-20T20:02:45.025 INFO:teuthology.orchestra.run.smithi094.stdout:ceph: stdout ceph version 19.3.0-5127-ge8baca1e (e8baca1eac6c3c9c88bf2ea4493e448bd54936a7) squid (dev) 2024-09-20T20:02:45.025 INFO:teuthology.orchestra.run.smithi094.stdout:Ceph version: ceph version 19.3.0-5127-ge8baca1e (e8baca1eac6c3c9c88bf2ea4493e448bd54936a7) squid (dev) 2024-09-20T20:02:45.025 INFO:teuthology.orchestra.run.smithi094.stdout:Extracting ceph user uid/gid from container image... 2024-09-20T20:02:46.447 INFO:teuthology.orchestra.run.smithi094.stdout:stat: stdout 167 167 2024-09-20T20:02:46.448 INFO:teuthology.orchestra.run.smithi094.stdout:Creating initial keys... 2024-09-20T20:02:47.896 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-authtool: stdout AQDn1O1moKlPFRAA78Z1am/nKNbRUG5hhpUd2A== 2024-09-20T20:02:49.302 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-authtool: stdout AQDo1O1mVazmLBAA+yaVtIm1iWCXmelCSAtnXw== 2024-09-20T20:02:50.726 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-authtool: stdout AQDq1O1mmksWChAA9tZGHPMTb51t8A6dF7XEBg== 2024-09-20T20:02:50.727 INFO:teuthology.orchestra.run.smithi094.stdout:Creating initial monmap... 2024-09-20T20:02:52.282 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-20T20:02:52.282 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-20T20:02:52.282 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:02:52.282 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-20T20:02:52.282 INFO:teuthology.orchestra.run.smithi094.stdout:monmaptool for smithi094 [v2:172.21.15.94:3300,v1:172.21.15.94:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-20T20:02:52.282 INFO:teuthology.orchestra.run.smithi094.stdout:setting min_mon_release = quincy 2024-09-20T20:02:52.283 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/monmaptool: set fsid to 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:02:52.283 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-20T20:02:52.283 INFO:teuthology.orchestra.run.smithi094.stdout: 2024-09-20T20:02:52.283 INFO:teuthology.orchestra.run.smithi094.stdout:Creating mon... 2024-09-20T20:02:53.777 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.214+0000 7f8e36a89c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-20T20:02:53.777 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.214+0000 7f8e36a89c80 1 imported monmap: 2024-09-20T20:02:53.777 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-09-20T20:02:53.778 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr fsid 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:02:53.778 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-09-20T20:02:51.632126+0000 2024-09-20T20:02:53.778 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr created 2024-09-20T20:02:51.632126+0000 2024-09-20T20:02:53.778 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-09-20T20:02:53.778 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-09-20T20:02:53.778 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.94:3300/0,v1:172.21.15.94:6789/0] mon.smithi094 2024-09-20T20:02:53.779 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.779 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.214+0000 7f8e36a89c80 0 /usr/bin/ceph-mon: set fsid to 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:02:53.779 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-20T20:02:53.779 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.779 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Git sha 0 2024-09-20T20:02:53.779 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Compile date 2024-09-20 13:31:19 2024-09-20T20:02:53.780 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: DB SUMMARY 2024-09-20T20:02:53.780 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.780 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: DB Session ID: ZI6OCCSYNRDW1SAUCJ08 2024-09-20T20:02:53.780 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.780 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi094/store.db dir, Total Num: 0, files: 2024-09-20T20:02:53.780 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.780 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi094/store.db: 2024-09-20T20:02:53.781 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.781 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.error_if_exists: 0 2024-09-20T20:02:53.781 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.create_if_missing: 1 2024-09-20T20:02:53.781 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-20T20:02:53.781 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-20T20:02:53.781 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-20T20:02:53.782 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-20T20:02:53.782 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.env: 0x555cfec91120 2024-09-20T20:02:53.782 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-20T20:02:53.782 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.info_log: 0x555d00cced80 2024-09-20T20:02:53.782 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-20T20:02:53.782 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.statistics: (nil) 2024-09-20T20:02:53.783 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.use_fsync: 0 2024-09-20T20:02:53.783 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-20T20:02:53.783 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-20T20:02:53.783 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-20T20:02:53.783 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-20T20:02:53.783 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-20T20:02:53.784 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-20T20:02:53.784 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-20T20:02:53.784 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-20T20:02:53.784 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-20T20:02:53.784 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-20T20:02:53.784 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-20T20:02:53.785 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.db_log_dir: 2024-09-20T20:02:53.785 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.wal_dir: 2024-09-20T20:02:53.785 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-20T20:02:53.785 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-20T20:02:53.785 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-20T20:02:53.785 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-20T20:02:53.785 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-20T20:02:53.786 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-20T20:02:53.786 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-20T20:02:53.786 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-20T20:02:53.786 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.write_buffer_manager: 0x555d00cc7cc0 2024-09-20T20:02:53.786 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-20T20:02:53.786 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-20T20:02:53.786 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-20T20:02:53.787 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-20T20:02:53.787 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-20T20:02:53.787 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-20T20:02:53.787 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-20T20:02:53.787 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-20T20:02:53.787 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.unordered_write: 0 2024-09-20T20:02:53.787 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-20T20:02:53.787 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-20T20:02:53.788 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-20T20:02:53.788 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-20T20:02:53.788 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.row_cache: None 2024-09-20T20:02:53.788 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.wal_filter: None 2024-09-20T20:02:53.788 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-20T20:02:53.788 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-20T20:02:53.788 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.two_write_queues: 0 2024-09-20T20:02:53.788 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-20T20:02:53.788 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.wal_compression: 0 2024-09-20T20:02:53.788 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.atomic_flush: 0 2024-09-20T20:02:53.789 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-20T20:02:53.789 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-20T20:02:53.790 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-20T20:02:53.790 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-20T20:02:53.790 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-20T20:02:53.790 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-20T20:02:53.790 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-20T20:02:53.790 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-20T20:02:53.791 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-20T20:02:53.791 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-20T20:02:53.791 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-20T20:02:53.791 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-20T20:02:53.791 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-20T20:02:53.791 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-20T20:02:53.791 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-20T20:02:53.792 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-20T20:02:53.792 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-20T20:02:53.792 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-20T20:02:53.792 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-20T20:02:53.792 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-20T20:02:53.792 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-20T20:02:53.793 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-20T20:02:53.793 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_open_files: -1 2024-09-20T20:02:53.793 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-20T20:02:53.793 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-20T20:02:53.793 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-20T20:02:53.793 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-20T20:02:53.793 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-20T20:02:53.794 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Compression algorithms supported: 2024-09-20T20:02:53.794 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: kZSTD supported: 0 2024-09-20T20:02:53.794 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: kXpressCompression supported: 0 2024-09-20T20:02:53.794 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-20T20:02:53.794 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-20T20:02:53.794 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-20T20:02:53.795 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: kZlibCompression supported: 1 2024-09-20T20:02:53.795 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-20T20:02:53.795 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-20T20:02:53.795 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-20T20:02:53.795 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-20T20:02:53.795 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-09-20T20:02:53.795 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.796 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi094/store.db/MANIFEST-000001 2024-09-20T20:02:53.796 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.796 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-20T20:02:53.796 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.796 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-20T20:02:53.796 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.merge_operator: 2024-09-20T20:02:53.797 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compaction_filter: None 2024-09-20T20:02:53.797 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-20T20:02:53.797 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-20T20:02:53.797 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-20T20:02:53.797 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-20T20:02:53.797 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x555d00cce9a0) 2024-09-20T20:02:53.798 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-09-20T20:02:53.798 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-09-20T20:02:53.798 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-20T20:02:53.798 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-09-20T20:02:53.798 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-09-20T20:02:53.798 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-09-20T20:02:53.799 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-09-20T20:02:53.799 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-09-20T20:02:53.799 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-09-20T20:02:53.799 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-09-20T20:02:53.799 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x555d00cb7610 2024-09-20T20:02:53.799 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-09-20T20:02:53.799 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-09-20T20:02:53.800 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-09-20T20:02:53.800 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-09-20T20:02:53.800 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-09-20T20:02:53.800 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-09-20T20:02:53.800 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-09-20T20:02:53.800 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-09-20T20:02:53.800 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-09-20T20:02:53.801 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-09-20T20:02:53.801 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-09-20T20:02:53.801 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-09-20T20:02:53.801 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-09-20T20:02:53.801 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-09-20T20:02:53.801 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-09-20T20:02:53.802 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-09-20T20:02:53.802 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-09-20T20:02:53.802 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-09-20T20:02:53.802 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-09-20T20:02:53.802 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-09-20T20:02:53.803 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-09-20T20:02:53.803 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-09-20T20:02:53.803 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-09-20T20:02:53.803 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-09-20T20:02:53.803 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-09-20T20:02:53.803 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-09-20T20:02:53.803 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.804 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-20T20:02:53.804 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-20T20:02:53.804 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compression: NoCompression 2024-09-20T20:02:53.804 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-20T20:02:53.804 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-20T20:02:53.804 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-20T20:02:53.805 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.num_levels: 7 2024-09-20T20:02:53.805 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-20T20:02:53.805 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-20T20:02:53.805 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-20T20:02:53.805 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-20T20:02:53.805 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-20T20:02:53.805 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-20T20:02:53.805 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-20T20:02:53.805 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-20T20:02:53.805 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-20T20:02:53.805 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-20T20:02:53.806 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-20T20:02:53.806 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-20T20:02:53.806 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-20T20:02:53.806 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-20T20:02:53.806 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-20T20:02:53.806 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-20T20:02:53.806 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-20T20:02:53.806 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-20T20:02:53.806 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-20T20:02:53.806 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-20T20:02:53.806 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-20T20:02:53.806 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-20T20:02:53.806 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-20T20:02:53.806 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-20T20:02:53.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-20T20:02:53.808 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-20T20:02:53.808 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-20T20:02:53.808 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-20T20:02:53.808 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-20T20:02:53.808 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-20T20:02:53.808 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-20T20:02:53.808 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-20T20:02:53.808 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-20T20:02:53.808 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-20T20:02:53.808 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-20T20:02:53.808 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-20T20:02:53.808 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-20T20:02:53.808 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-20T20:02:53.808 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.bloom_locality: 0 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.ttl: 2592000 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-20T20:02:53.809 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-20T20:02:53.810 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-20T20:02:53.810 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.enable_blob_files: false 2024-09-20T20:02:53.810 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.min_blob_size: 0 2024-09-20T20:02:53.810 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-20T20:02:53.810 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-20T20:02:53.810 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-20T20:02:53.810 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-20T20:02:53.810 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-20T20:02:53.810 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-20T20:02:53.810 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-20T20:02:53.810 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-20T20:02:53.810 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi094/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-20T20:02:53.810 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.810 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 111bfcf5-65aa-49eb-924d-e5e60b91dcbe 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.218+0000 7f8e36a89c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.222+0000 7f8e36a89c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x555d00ce6e00 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.222+0000 7f8e36a89c80 4 rocksdb: DB pointer 0x555d00dc8000 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.222+0000 7f8e2e214640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.222+0000 7f8e2e214640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-20T20:02:53.811 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-20T20:02:53.812 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-20T20:02:53.812 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.812 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-20T20:02:53.812 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-20T20:02:53.812 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-20T20:02:53.812 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-09-20T20:02:53.812 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-09-20T20:02:53.812 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.812 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-20T20:02:53.812 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-20T20:02:53.812 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-20T20:02:53.812 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.812 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-20T20:02:53.812 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x555d00cb7610#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.2e-05 secs_since: 0 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T20:02:53.813 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.222+0000 7f8e36a89c80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-09-20T20:02:53.814 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.222+0000 7f8e36a89c80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-09-20T20:02:53.814 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T20:02:53.222+0000 7f8e36a89c80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi094 for mon.smithi094 2024-09-20T20:02:53.814 INFO:teuthology.orchestra.run.smithi094.stdout:create mon.smithi094 on 2024-09-20T20:02:54.287 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-09-20T20:02:54.536 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-1e7890e4-778b-11ef-baf5-efdc52797490.target -> /etc/systemd/system/ceph-1e7890e4-778b-11ef-baf5-efdc52797490.target. 2024-09-20T20:02:54.536 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-1e7890e4-778b-11ef-baf5-efdc52797490.target -> /etc/systemd/system/ceph-1e7890e4-778b-11ef-baf5-efdc52797490.target. 2024-09-20T20:02:54.846 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094 2024-09-20T20:02:54.846 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Failed to reset failed state of unit ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094.service: Unit ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094.service not loaded. 2024-09-20T20:02:55.050 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-1e7890e4-778b-11ef-baf5-efdc52797490.target.wants/ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094.service -> /etc/systemd/system/ceph-1e7890e4-778b-11ef-baf5-efdc52797490@.service. 2024-09-20T20:02:55.060 INFO:teuthology.orchestra.run.smithi094.stdout:firewalld does not appear to be present 2024-09-20T20:02:55.060 INFO:teuthology.orchestra.run.smithi094.stdout:Not possible to enable service . firewalld.service is not available 2024-09-20T20:02:55.060 INFO:teuthology.orchestra.run.smithi094.stdout:Waiting for mon to start... 2024-09-20T20:02:55.060 INFO:teuthology.orchestra.run.smithi094.stdout:Waiting for mon... 2024-09-20T20:02:56.888 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:56 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.672086+0000 mon.smithi094 (mon.0) 1 : cluster [INF] mon.smithi094 is new leader, mons smithi094 in quorum (ranks 0) 2024-09-20T20:02:57.447 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout cluster: 2024-09-20T20:02:57.447 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout id: 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:02:57.447 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-20T20:02:57.447 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 2024-09-20T20:02:57.447 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout services: 2024-09-20T20:02:57.447 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi094 (age 0.200705s) 2024-09-20T20:02:57.447 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-20T20:02:57.447 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-20T20:02:57.447 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 2024-09-20T20:02:57.447 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout data: 2024-09-20T20:02:57.447 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-20T20:02:57.447 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-20T20:02:57.448 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-20T20:02:57.448 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout pgs: 2024-09-20T20:02:57.448 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 2024-09-20T20:02:57.448 INFO:teuthology.orchestra.run.smithi094.stdout:mon is available 2024-09-20T20:02:57.448 INFO:teuthology.orchestra.run.smithi094.stdout:Assimilating anything we can from ceph.conf... 2024-09-20T20:02:57.999 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675737+0000 mon.smithi094 (mon.0) 2 : cluster [INF] mon.smithi094 is new leader, mons smithi094 in quorum (ranks 0) 2024-09-20T20:02:57.999 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675737+0000 mon.smithi094 (mon.0) 2 : cluster [INF] mon.smithi094 is new leader, mons smithi094 in quorum (ranks 0) 2024-09-20T20:02:57.999 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675884+0000 mon.smithi094 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-20T20:02:57.999 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675884+0000 mon.smithi094 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-20T20:02:57.999 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675896+0000 mon.smithi094 (mon.0) 4 : cluster [DBG] fsid 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675896+0000 mon.smithi094 (mon.0) 4 : cluster [DBG] fsid 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675903+0000 mon.smithi094 (mon.0) 5 : cluster [DBG] last_changed 2024-09-20T20:02:51.632126+0000 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675903+0000 mon.smithi094 (mon.0) 5 : cluster [DBG] last_changed 2024-09-20T20:02:51.632126+0000 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675910+0000 mon.smithi094 (mon.0) 6 : cluster [DBG] created 2024-09-20T20:02:51.632126+0000 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675910+0000 mon.smithi094 (mon.0) 6 : cluster [DBG] created 2024-09-20T20:02:51.632126+0000 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675922+0000 mon.smithi094 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675922+0000 mon.smithi094 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675930+0000 mon.smithi094 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675930+0000 mon.smithi094 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675939+0000 mon.smithi094 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.94:3300/0,v1:172.21.15.94:6789/0] mon.smithi094 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.675939+0000 mon.smithi094 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.94:3300/0,v1:172.21.15.94:6789/0] mon.smithi094 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.678072+0000 mon.smithi094 (mon.0) 10 : cluster [DBG] fsmap 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.678072+0000 mon.smithi094 (mon.0) 10 : cluster [DBG] fsmap 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.680352+0000 mon.smithi094 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-20T20:02:58.000 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.680352+0000 mon.smithi094 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-20T20:02:58.001 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.680802+0000 mon.smithi094 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-20T20:02:58.001 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: cluster 2024-09-20T20:02:56.680802+0000 mon.smithi094 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-20T20:02:58.001 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: audit 2024-09-20T20:02:56.876407+0000 mon.smithi094 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.94:0/1402223226' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-20T20:02:58.001 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:57 smithi094 bash[19521]: audit 2024-09-20T20:02:56.876407+0000 mon.smithi094 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.94:0/1402223226' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-20T20:02:58.999 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:58 smithi094 bash[19521]: audit 2024-09-20T20:02:58.515155+0000 mon.smithi094 (mon.0) 14 : audit [INF] from='client.? 172.21.15.94:0/3727958625' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-20T20:02:58.999 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:58 smithi094 bash[19521]: audit 2024-09-20T20:02:58.515155+0000 mon.smithi094 (mon.0) 14 : audit [INF] from='client.? 172.21.15.94:0/3727958625' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-20T20:02:58.999 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:58 smithi094 bash[19521]: audit 2024-09-20T20:02:58.518947+0000 mon.smithi094 (mon.0) 15 : audit [INF] from='client.? 172.21.15.94:0/3727958625' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-20T20:02:58.999 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:02:58 smithi094 bash[19521]: audit 2024-09-20T20:02:58.518947+0000 mon.smithi094 (mon.0) 15 : audit [INF] from='client.? 172.21.15.94:0/3727958625' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-20T20:02:59.087 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 2024-09-20T20:02:59.087 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout [global] 2024-09-20T20:02:59.087 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout fsid = 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:02:59.087 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-20T20:02:59.088 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.94:3300,v1:172.21.15.94:6789] 2024-09-20T20:02:59.088 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-20T20:02:59.088 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-20T20:02:59.088 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-20T20:02:59.088 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-20T20:02:59.088 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 2024-09-20T20:02:59.088 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-20T20:02:59.088 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-20T20:02:59.088 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 2024-09-20T20:02:59.088 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout [osd] 2024-09-20T20:02:59.088 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-20T20:02:59.088 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-20T20:02:59.088 INFO:teuthology.orchestra.run.smithi094.stdout:Generating new minimal ceph.conf... 2024-09-20T20:03:00.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:00 smithi094 bash[19521]: audit 2024-09-20T20:03:00.206875+0000 mon.smithi094 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.94:0/4226673171' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T20:03:00.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:00 smithi094 bash[19521]: audit 2024-09-20T20:03:00.206875+0000 mon.smithi094 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.94:0/4226673171' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T20:03:00.759 INFO:teuthology.orchestra.run.smithi094.stdout:Restarting the monitor... 2024-09-20T20:03:01.120 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:00 smithi094 systemd[1]: Stopping Ceph mon.smithi094 for 1e7890e4-778b-11ef-baf5-efdc52797490... 2024-09-20T20:03:01.121 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:00 smithi094 bash[19521]: debug 2024-09-20T20:03:00.890+0000 7f26b3be7640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi094 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-20T20:03:01.121 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:00 smithi094 bash[19521]: debug 2024-09-20T20:03:00.890+0000 7f26b3be7640 -1 mon.smithi094@0(leader) e1 *** Got Signal Terminated *** 2024-09-20T20:03:01.660 INFO:teuthology.orchestra.run.smithi094.stdout:Setting public_network to 172.21.0.0/20,172.21.0.1/32,172.21.0.2/32,172.21.15.254/32 in mon config section 2024-09-20T20:03:01.773 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:01 smithi094 bash[19900]: ceph-1e7890e4-778b-11ef-baf5-efdc52797490-mon-smithi094 2024-09-20T20:03:01.774 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:01 smithi094 bash[19961]: Error response from daemon: No such container: ceph-1e7890e4-778b-11ef-baf5-efdc52797490-mon-smithi094 2024-09-20T20:03:01.774 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:01 smithi094 systemd[1]: ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094.service: Deactivated successfully. 2024-09-20T20:03:01.774 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:01 smithi094 systemd[1]: Stopped Ceph mon.smithi094 for 1e7890e4-778b-11ef-baf5-efdc52797490. 2024-09-20T20:03:01.774 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:01 smithi094 systemd[1]: Started Ceph mon.smithi094 for 1e7890e4-778b-11ef-baf5-efdc52797490. 2024-09-20T20:03:03.416 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.146+0000 7f59e3b10c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-20T20:03:03.416 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.146+0000 7f59e3b10c80 0 ceph version 19.3.0-5127-ge8baca1e (e8baca1eac6c3c9c88bf2ea4493e448bd54936a7) squid (dev), process ceph-mon, pid 7 2024-09-20T20:03:03.416 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.146+0000 7f59e3b10c80 0 pidfile_write: ignore empty --pid-file 2024-09-20T20:03:03.417 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 0 load: jerasure load: lrc 2024-09-20T20:03:03.417 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-20T20:03:03.417 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Git sha 0 2024-09-20T20:03:03.417 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Compile date 2024-09-20 13:31:19 2024-09-20T20:03:03.417 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: DB SUMMARY 2024-09-20T20:03:03.417 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: DB Session ID: AUI792MDWSA3H4E96W0I 2024-09-20T20:03:03.417 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: CURRENT file: CURRENT 2024-09-20T20:03:03.417 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-20T20:03:03.417 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-20T20:03:03.417 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi094/store.db dir, Total Num: 1, files: 000008.sst 2024-09-20T20:03:03.417 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi094/store.db: 000009.log size: 89080 ; 2024-09-20T20:03:03.417 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.error_if_exists: 0 2024-09-20T20:03:03.417 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.create_if_missing: 0 2024-09-20T20:03:03.418 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-20T20:03:03.418 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-20T20:03:03.418 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-20T20:03:03.418 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-20T20:03:03.418 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.env: 0x55ca80ee0120 2024-09-20T20:03:03.418 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-20T20:03:03.418 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.info_log: 0x55ca82c5f8e0 2024-09-20T20:03:03.418 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-20T20:03:03.418 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.statistics: (nil) 2024-09-20T20:03:03.418 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.use_fsync: 0 2024-09-20T20:03:03.418 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-20T20:03:03.418 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-20T20:03:03.418 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-20T20:03:03.419 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-20T20:03:03.419 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-20T20:03:03.419 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-20T20:03:03.419 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-20T20:03:03.419 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-20T20:03:03.419 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-20T20:03:03.419 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-20T20:03:03.419 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-20T20:03:03.419 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.db_log_dir: 2024-09-20T20:03:03.419 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.wal_dir: 2024-09-20T20:03:03.419 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-20T20:03:03.419 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-20T20:03:03.419 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-20T20:03:03.420 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-20T20:03:03.420 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-20T20:03:03.420 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-20T20:03:03.420 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-20T20:03:03.420 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-20T20:03:03.420 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.write_buffer_manager: 0x55ca82c63b80 2024-09-20T20:03:03.420 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-20T20:03:03.420 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-20T20:03:03.420 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-20T20:03:03.420 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-20T20:03:03.420 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-20T20:03:03.420 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-20T20:03:03.422 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-20T20:03:03.422 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-20T20:03:03.422 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.unordered_write: 0 2024-09-20T20:03:03.422 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-20T20:03:03.422 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-20T20:03:03.422 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-20T20:03:03.422 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-20T20:03:03.422 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.row_cache: None 2024-09-20T20:03:03.422 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.wal_filter: None 2024-09-20T20:03:03.422 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-20T20:03:03.423 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-20T20:03:03.423 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.two_write_queues: 0 2024-09-20T20:03:03.423 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-20T20:03:03.423 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.wal_compression: 0 2024-09-20T20:03:03.423 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.atomic_flush: 0 2024-09-20T20:03:03.423 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-20T20:03:03.423 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-20T20:03:03.423 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-20T20:03:03.423 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-20T20:03:03.423 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-20T20:03:03.423 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-20T20:03:03.423 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-20T20:03:03.423 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-20T20:03:03.424 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-20T20:03:03.424 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-20T20:03:03.424 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-20T20:03:03.424 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-20T20:03:03.424 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-20T20:03:03.424 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-20T20:03:03.424 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-20T20:03:03.424 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-20T20:03:03.424 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-20T20:03:03.424 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-20T20:03:03.424 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-20T20:03:03.424 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-20T20:03:03.424 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-20T20:03:03.425 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-20T20:03:03.425 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_open_files: -1 2024-09-20T20:03:03.425 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-20T20:03:03.425 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-20T20:03:03.425 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-20T20:03:03.425 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-20T20:03:03.425 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-20T20:03:03.425 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Compression algorithms supported: 2024-09-20T20:03:03.425 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: kZSTD supported: 0 2024-09-20T20:03:03.425 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: kXpressCompression supported: 0 2024-09-20T20:03:03.425 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-20T20:03:03.425 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-20T20:03:03.425 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-20T20:03:03.425 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: kZlibCompression supported: 1 2024-09-20T20:03:03.426 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-20T20:03:03.426 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-20T20:03:03.426 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-20T20:03:03.426 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-20T20:03:03.426 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi094/store.db/MANIFEST-000010 2024-09-20T20:03:03.426 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-20T20:03:03.426 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-20T20:03:03.426 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.merge_operator: 2024-09-20T20:03:03.426 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compaction_filter: None 2024-09-20T20:03:03.426 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-20T20:03:03.426 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-20T20:03:03.426 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55ca82c5f540) 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cache_index_and_filter_blocks: 1 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: pin_top_level_index_and_filter: 1 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: index_type: 0 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: data_block_index_type: 0 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: index_shortening: 1 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: data_block_hash_table_util_ratio: 0.750000 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: checksum: 4 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: no_block_cache: 0 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: block_cache: 0x55ca82c55610 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: block_cache_name: BinnedLRUCache 2024-09-20T20:03:03.427 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: block_cache_options: 2024-09-20T20:03:03.428 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: capacity : 536870912 2024-09-20T20:03:03.428 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: num_shard_bits : 4 2024-09-20T20:03:03.428 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: strict_capacity_limit : 0 2024-09-20T20:03:03.428 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: high_pri_pool_ratio: 0.000 2024-09-20T20:03:03.428 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: block_cache_compressed: (nil) 2024-09-20T20:03:03.428 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: persistent_cache: (nil) 2024-09-20T20:03:03.428 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: block_size: 4096 2024-09-20T20:03:03.428 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: block_size_deviation: 10 2024-09-20T20:03:03.428 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: block_restart_interval: 16 2024-09-20T20:03:03.428 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: index_block_restart_interval: 1 2024-09-20T20:03:03.428 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: metadata_block_size: 4096 2024-09-20T20:03:03.428 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: partition_filters: 0 2024-09-20T20:03:03.428 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: use_delta_encoding: 1 2024-09-20T20:03:03.428 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: filter_policy: bloomfilter 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: whole_key_filtering: 1 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: verify_compression: 0 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: read_amp_bytes_per_bit: 0 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: format_version: 5 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: enable_index_compression: 1 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: block_align: 0 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: max_auto_readahead_size: 262144 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: prepopulate_block_cache: 0 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: initial_auto_readahead_size: 8192 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: num_file_reads_for_auto_readahead: 2 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compression: NoCompression 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-20T20:03:03.429 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.num_levels: 7 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-20T20:03:03.430 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-20T20:03:03.431 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-20T20:03:03.432 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.bloom_locality: 0 2024-09-20T20:03:03.433 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.ttl: 2592000 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.enable_blob_files: false 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.min_blob_size: 0 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-20T20:03:03.434 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-20T20:03:03.435 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-20T20:03:03.435 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-20T20:03:03.435 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.150+0000 7f59e3b10c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-20T20:03:03.435 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.154+0000 7f59e3b10c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi094/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-09-20T20:03:03.435 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.154+0000 7f59e3b10c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-20T20:03:03.435 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.154+0000 7f59e3b10c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 111bfcf5-65aa-49eb-924d-e5e60b91dcbe 2024-09-20T20:03:03.435 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.154+0000 7f59e3b10c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726862583158397, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-20T20:03:03.435 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.154+0000 7f59e3b10c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-20T20:03:03.435 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59e3b10c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726862583159542, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85856, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 257, "table_properties": {"data_size": 83996, "index_size": 244, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 10002, "raw_average_key_size": 46, "raw_value_size": 78245, "raw_average_value_size": 362, "num_data_blocks": 11, "num_entries": 216, "num_filter_entries": 216, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1726862583, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "111bfcf5-65aa-49eb-924d-e5e60b91dcbe", "db_session_id": "AUI792MDWSA3H4E96W0I", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-20T20:03:03.435 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59e3b10c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726862583159689, "job": 1, "event": "recovery_finished"} 2024-09-20T20:03:03.435 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59e3b10c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-20T20:03:03.435 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59e3b10c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi094/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-20T20:03:03.436 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59e3b10c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55ca82c82e00 2024-09-20T20:03:03.436 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59e3b10c80 4 rocksdb: DB pointer 0x55ca82d86000 2024-09-20T20:03:03.436 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59d98d8640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-20T20:03:03.436 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59d98d8640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-20T20:03:03.436 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: ** DB Stats ** 2024-09-20T20:03:03.436 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-20T20:03:03.436 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-20T20:03:03.436 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-20T20:03:03.436 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-20T20:03:03.436 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-20T20:03:03.436 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-20T20:03:03.436 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-20T20:03:03.436 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: ** Compaction Stats [default] ** 2024-09-20T20:03:03.436 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-20T20:03:03.437 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-20T20:03:03.437 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: L0 2/0 85.74 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 114.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-20T20:03:03.437 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Sum 2/0 85.74 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 114.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-20T20:03:03.437 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 114.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-20T20:03:03.437 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: ** Compaction Stats [default] ** 2024-09-20T20:03:03.437 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-20T20:03:03.437 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-20T20:03:03.437 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 114.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-20T20:03:03.437 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-20T20:03:03.437 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-20T20:03:03.437 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-20T20:03:03.437 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-20T20:03:03.437 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: AddFile(Total Files): cumulative 0, interval 0 2024-09-20T20:03:03.437 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-20T20:03:03.438 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: AddFile(Keys): cumulative 0, interval 0 2024-09-20T20:03:03.438 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Cumulative compaction: 0.00 GB write, 13.42 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-20T20:03:03.438 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Interval compaction: 0.00 GB write, 13.42 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-20T20:03:03.438 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-20T20:03:03.438 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Block cache BinnedLRUCache@0x55ca82c55610#7 capacity: 512.00 MB usage: 1.20 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.4e-05 secs_since: 0 2024-09-20T20:03:03.438 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.44 KB,8.34465e-05%) Misc(1,0.00 KB,0%) 2024-09-20T20:03:03.438 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: ** File Read Latency Histogram By Level [default] ** 2024-09-20T20:03:03.438 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59e3b10c80 0 starting mon.smithi094 rank 0 at public addrs [v2:172.21.15.94:3300/0,v1:172.21.15.94:6789/0] at bind addrs [v2:172.21.15.94:3300/0,v1:172.21.15.94:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi094 fsid 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:03:03.438 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59e3b10c80 1 mon.smithi094@-1(???) e1 preinit fsid 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:03:03.438 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59e3b10c80 0 mon.smithi094@-1(???).mds e1 new map 2024-09-20T20:03:03.438 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59e3b10c80 0 mon.smithi094@-1(???).mds e1 print_map 2024-09-20T20:03:03.438 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: e1 2024-09-20T20:03:03.438 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: btime 2024-09-20T20:02:56:676356+0000 2024-09-20T20:03:03.438 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-20T20:03:03.439 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-20T20:03:03.439 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: legacy client fscid: -1 2024-09-20T20:03:03.439 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: 2024-09-20T20:03:03.439 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: No filesystems configured 2024-09-20T20:03:03.439 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59e3b10c80 0 mon.smithi094@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-20T20:03:03.439 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59e3b10c80 0 mon.smithi094@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-20T20:03:03.439 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59e3b10c80 0 mon.smithi094@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-20T20:03:03.439 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.158+0000 7f59e3b10c80 0 mon.smithi094@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-20T20:03:03.439 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: debug 2024-09-20T20:03:03.162+0000 7f59e3b10c80 1 mon.smithi094@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-20T20:03:03.439 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184091+0000 mon.smithi094 (mon.0) 1 : cluster [INF] mon.smithi094 is new leader, mons smithi094 in quorum (ranks 0) 2024-09-20T20:03:03.439 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184091+0000 mon.smithi094 (mon.0) 1 : cluster [INF] mon.smithi094 is new leader, mons smithi094 in quorum (ranks 0) 2024-09-20T20:03:03.439 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184231+0000 mon.smithi094 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-20T20:03:03.439 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184231+0000 mon.smithi094 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-20T20:03:03.440 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184250+0000 mon.smithi094 (mon.0) 3 : cluster [DBG] fsid 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:03:03.440 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184250+0000 mon.smithi094 (mon.0) 3 : cluster [DBG] fsid 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:03:03.440 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184265+0000 mon.smithi094 (mon.0) 4 : cluster [DBG] last_changed 2024-09-20T20:02:51.632126+0000 2024-09-20T20:03:03.440 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184265+0000 mon.smithi094 (mon.0) 4 : cluster [DBG] last_changed 2024-09-20T20:02:51.632126+0000 2024-09-20T20:03:03.440 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184279+0000 mon.smithi094 (mon.0) 5 : cluster [DBG] created 2024-09-20T20:02:51.632126+0000 2024-09-20T20:03:03.440 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184279+0000 mon.smithi094 (mon.0) 5 : cluster [DBG] created 2024-09-20T20:02:51.632126+0000 2024-09-20T20:03:03.440 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184293+0000 mon.smithi094 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T20:03:03.440 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184293+0000 mon.smithi094 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T20:03:03.440 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184310+0000 mon.smithi094 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-20T20:03:03.440 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184310+0000 mon.smithi094 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-20T20:03:03.440 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184322+0000 mon.smithi094 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.94:3300/0,v1:172.21.15.94:6789/0] mon.smithi094 2024-09-20T20:03:03.440 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.184322+0000 mon.smithi094 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.94:3300/0,v1:172.21.15.94:6789/0] mon.smithi094 2024-09-20T20:03:03.440 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.208259+0000 mon.smithi094 (mon.0) 9 : cluster [DBG] fsmap 2024-09-20T20:03:03.440 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.208259+0000 mon.smithi094 (mon.0) 9 : cluster [DBG] fsmap 2024-09-20T20:03:03.441 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.208312+0000 mon.smithi094 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-20T20:03:03.441 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.208312+0000 mon.smithi094 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-20T20:03:03.441 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.208873+0000 mon.smithi094 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-20T20:03:03.441 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:03 smithi094 bash[20001]: cluster 2024-09-20T20:03:03.208873+0000 mon.smithi094 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-20T20:03:03.982 INFO:teuthology.orchestra.run.smithi094.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-20T20:03:04.000 INFO:teuthology.orchestra.run.smithi094.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-20T20:03:04.000 INFO:teuthology.orchestra.run.smithi094.stdout:Creating mgr... 2024-09-20T20:03:04.000 INFO:teuthology.orchestra.run.smithi094.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-20T20:03:04.000 INFO:teuthology.orchestra.run.smithi094.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-20T20:03:04.000 INFO:teuthology.orchestra.run.smithi094.stdout:Verifying port 0.0.0.0:8443 ... 2024-09-20T20:03:04.311 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mgr.smithi094.airbml 2024-09-20T20:03:04.311 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Failed to reset failed state of unit ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mgr.smithi094.airbml.service: Unit ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mgr.smithi094.airbml.service not loaded. 2024-09-20T20:03:04.404 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:04 smithi094 systemd[1]: /etc/systemd/system/ceph-1e7890e4-778b-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T20:03:04.514 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-1e7890e4-778b-11ef-baf5-efdc52797490.target.wants/ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mgr.smithi094.airbml.service -> /etc/systemd/system/ceph-1e7890e4-778b-11ef-baf5-efdc52797490@.service. 2024-09-20T20:03:04.522 INFO:teuthology.orchestra.run.smithi094.stdout:firewalld does not appear to be present 2024-09-20T20:03:04.522 INFO:teuthology.orchestra.run.smithi094.stdout:Not possible to enable service . firewalld.service is not available 2024-09-20T20:03:04.522 INFO:teuthology.orchestra.run.smithi094.stdout:firewalld does not appear to be present 2024-09-20T20:03:04.522 INFO:teuthology.orchestra.run.smithi094.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-09-20T20:03:04.522 INFO:teuthology.orchestra.run.smithi094.stdout:Waiting for mgr to start... 2024-09-20T20:03:04.522 INFO:teuthology.orchestra.run.smithi094.stdout:Waiting for mgr... 2024-09-20T20:03:04.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:04 smithi094 bash[20001]: audit 2024-09-20T20:03:03.404289+0000 mon.smithi094 (mon.0) 12 : audit [INF] from='client.? 172.21.15.94:0/4032323159' entity='client.admin' 2024-09-20T20:03:04.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:04 smithi094 bash[20001]: audit 2024-09-20T20:03:03.404289+0000 mon.smithi094 (mon.0) 12 : audit [INF] from='client.? 172.21.15.94:0/4032323159' entity='client.admin' 2024-09-20T20:03:04.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:04 smithi094 systemd[1]: /etc/systemd/system/ceph-1e7890e4-778b-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T20:03:06.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:06 smithi094 bash[20001]: audit 2024-09-20T20:03:06.315919+0000 mon.smithi094 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.94:0/3747003829' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-20T20:03:06.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:06 smithi094 bash[20001]: audit 2024-09-20T20:03:06.315919+0000 mon.smithi094 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.94:0/3747003829' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-20T20:03:06.905 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 2024-09-20T20:03:06.905 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout { 2024-09-20T20:03:06.905 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "fsid": "1e7890e4-778b-11ef-baf5-efdc52797490", 2024-09-20T20:03:06.905 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "health": { 2024-09-20T20:03:06.905 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-20T20:03:06.905 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-20T20:03:06.905 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-20T20:03:06.906 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:06.906 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-20T20:03:06.906 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-20T20:03:06.906 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 0 2024-09-20T20:03:06.906 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout ], 2024-09-20T20:03:06.906 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-20T20:03:06.906 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "smithi094" 2024-09-20T20:03:06.906 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout ], 2024-09-20T20:03:06.906 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-20T20:03:06.906 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-20T20:03:06.906 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T20:03:06.906 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-20T20:03:06.906 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-20T20:03:06.907 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:06.907 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-20T20:03:06.907 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T20:03:06.907 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-20T20:03:06.907 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-20T20:03:06.907 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-20T20:03:06.907 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-20T20:03:06.907 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-20T20:03:06.907 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-20T20:03:06.910 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:06.910 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-20T20:03:06.910 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-20T20:03:06.911 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-20T20:03:06.911 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-20T20:03:06.911 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-20T20:03:06.911 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-20T20:03:06.911 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-20T20:03:06.911 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-20T20:03:06.911 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-20T20:03:06.911 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:06.911 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-20T20:03:06.911 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T20:03:06.911 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "btime": "2024-09-20T20:02:56:676356+0000", 2024-09-20T20:03:06.911 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-20T20:03:06.912 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-20T20:03:06.912 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:06.912 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-20T20:03:06.912 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-20T20:03:06.912 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-20T20:03:06.912 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-20T20:03:06.912 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-20T20:03:06.912 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-20T20:03:06.912 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "restful" 2024-09-20T20:03:06.912 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout ], 2024-09-20T20:03:06.912 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-20T20:03:06.912 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:06.912 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-20T20:03:06.913 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T20:03:06.913 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "modified": "2024-09-20T20:02:56.677128+0000", 2024-09-20T20:03:06.913 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-20T20:03:06.913 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:06.913 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-20T20:03:06.913 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout } 2024-09-20T20:03:06.913 INFO:teuthology.orchestra.run.smithi094.stdout:mgr not available, waiting (1/15)... 2024-09-20T20:03:10.498 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:10 smithi094 bash[20001]: audit 2024-09-20T20:03:10.176283+0000 mon.smithi094 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.94:0/4195315123' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-20T20:03:10.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:10 smithi094 bash[20001]: audit 2024-09-20T20:03:10.176283+0000 mon.smithi094 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.94:0/4195315123' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-20T20:03:10.721 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 2024-09-20T20:03:10.721 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout { 2024-09-20T20:03:10.721 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "fsid": "1e7890e4-778b-11ef-baf5-efdc52797490", 2024-09-20T20:03:10.721 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "health": { 2024-09-20T20:03:10.721 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-20T20:03:10.721 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-20T20:03:10.722 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-20T20:03:10.722 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:10.722 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-20T20:03:10.722 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-20T20:03:10.722 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 0 2024-09-20T20:03:10.722 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout ], 2024-09-20T20:03:10.722 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-20T20:03:10.722 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "smithi094" 2024-09-20T20:03:10.722 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout ], 2024-09-20T20:03:10.722 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-09-20T20:03:10.722 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-20T20:03:10.722 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T20:03:10.722 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-20T20:03:10.723 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-20T20:03:10.723 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:10.723 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-20T20:03:10.723 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T20:03:10.723 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-20T20:03:10.723 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-20T20:03:10.723 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-20T20:03:10.723 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-20T20:03:10.723 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-20T20:03:10.723 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-20T20:03:10.726 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:10.726 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-20T20:03:10.726 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-20T20:03:10.726 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "btime": "2024-09-20T20:02:56:676356+0000", 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-20T20:03:10.727 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "restful" 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout ], 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "modified": "2024-09-20T20:02:56.677128+0000", 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-20T20:03:10.728 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout } 2024-09-20T20:03:10.729 INFO:teuthology.orchestra.run.smithi094.stdout:mgr not available, waiting (2/15)... 2024-09-20T20:03:12.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: cluster 2024-09-20T20:03:12.030355+0000 mon.smithi094 (mon.0) 15 : cluster [INF] Activating manager daemon smithi094.airbml 2024-09-20T20:03:12.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: cluster 2024-09-20T20:03:12.030355+0000 mon.smithi094 (mon.0) 15 : cluster [INF] Activating manager daemon smithi094.airbml 2024-09-20T20:03:12.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: cluster 2024-09-20T20:03:12.038455+0000 mon.smithi094 (mon.0) 16 : cluster [DBG] mgrmap e2: smithi094.airbml(active, starting, since 0.00860842s) 2024-09-20T20:03:12.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: cluster 2024-09-20T20:03:12.038455+0000 mon.smithi094 (mon.0) 16 : cluster [DBG] mgrmap e2: smithi094.airbml(active, starting, since 0.00860842s) 2024-09-20T20:03:12.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: audit 2024-09-20T20:03:12.039774+0000 mon.smithi094 (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' cmd={"prefix": "mds metadata"} : dispatch 2024-09-20T20:03:12.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: audit 2024-09-20T20:03:12.039774+0000 mon.smithi094 (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' cmd={"prefix": "mds metadata"} : dispatch 2024-09-20T20:03:12.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: audit 2024-09-20T20:03:12.040072+0000 mon.smithi094 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' cmd={"prefix": "osd metadata"} : dispatch 2024-09-20T20:03:12.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: audit 2024-09-20T20:03:12.040072+0000 mon.smithi094 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' cmd={"prefix": "osd metadata"} : dispatch 2024-09-20T20:03:12.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: audit 2024-09-20T20:03:12.040327+0000 mon.smithi094 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' cmd={"prefix": "mon metadata"} : dispatch 2024-09-20T20:03:12.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: audit 2024-09-20T20:03:12.040327+0000 mon.smithi094 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' cmd={"prefix": "mon metadata"} : dispatch 2024-09-20T20:03:12.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: audit 2024-09-20T20:03:12.040853+0000 mon.smithi094 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' cmd={"prefix": "mon metadata", "id": "smithi094"} : dispatch 2024-09-20T20:03:12.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: audit 2024-09-20T20:03:12.040853+0000 mon.smithi094 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' cmd={"prefix": "mon metadata", "id": "smithi094"} : dispatch 2024-09-20T20:03:12.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: audit 2024-09-20T20:03:12.041479+0000 mon.smithi094 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' cmd={"prefix": "mgr metadata", "who": "smithi094.airbml", "id": "smithi094.airbml"} : dispatch 2024-09-20T20:03:12.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: audit 2024-09-20T20:03:12.041479+0000 mon.smithi094 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' cmd={"prefix": "mgr metadata", "who": "smithi094.airbml", "id": "smithi094.airbml"} : dispatch 2024-09-20T20:03:12.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: cluster 2024-09-20T20:03:12.065505+0000 mon.smithi094 (mon.0) 22 : cluster [INF] Manager daemon smithi094.airbml is now available 2024-09-20T20:03:12.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: cluster 2024-09-20T20:03:12.065505+0000 mon.smithi094 (mon.0) 22 : cluster [INF] Manager daemon smithi094.airbml is now available 2024-09-20T20:03:12.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: audit 2024-09-20T20:03:12.076877+0000 mon.smithi094 (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi094.airbml/mirror_snapshot_schedule"} : dispatch 2024-09-20T20:03:12.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: audit 2024-09-20T20:03:12.076877+0000 mon.smithi094 (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi094.airbml/mirror_snapshot_schedule"} : dispatch 2024-09-20T20:03:12.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: audit 2024-09-20T20:03:12.078740+0000 mon.smithi094 (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi094.airbml/trash_purge_schedule"} : dispatch 2024-09-20T20:03:12.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:12 smithi094 bash[20001]: audit 2024-09-20T20:03:12.078740+0000 mon.smithi094 (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi094.airbml/trash_purge_schedule"} : dispatch 2024-09-20T20:03:13.086 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:13 smithi094 bash[20001]: audit 2024-09-20T20:03:12.081484+0000 mon.smithi094 (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' 2024-09-20T20:03:13.174 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:13 smithi094 bash[20001]: audit 2024-09-20T20:03:12.081484+0000 mon.smithi094 (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' 2024-09-20T20:03:13.175 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:13 smithi094 bash[20001]: audit 2024-09-20T20:03:12.086485+0000 mon.smithi094 (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' 2024-09-20T20:03:13.175 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:13 smithi094 bash[20001]: audit 2024-09-20T20:03:12.086485+0000 mon.smithi094 (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' 2024-09-20T20:03:13.175 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:13 smithi094 bash[20001]: audit 2024-09-20T20:03:12.088757+0000 mon.smithi094 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' 2024-09-20T20:03:13.175 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:13 smithi094 bash[20001]: audit 2024-09-20T20:03:12.088757+0000 mon.smithi094 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.94:0/2590590912' entity='mgr.smithi094.airbml' 2024-09-20T20:03:13.175 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:13 smithi094 bash[20001]: cluster 2024-09-20T20:03:13.043840+0000 mon.smithi094 (mon.0) 28 : cluster [DBG] mgrmap e3: smithi094.airbml(active, since 1.01398s) 2024-09-20T20:03:13.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:13 smithi094 bash[20001]: cluster 2024-09-20T20:03:13.043840+0000 mon.smithi094 (mon.0) 28 : cluster [DBG] mgrmap e3: smithi094.airbml(active, since 1.01398s) 2024-09-20T20:03:14.989 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 2024-09-20T20:03:14.989 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout { 2024-09-20T20:03:14.989 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "fsid": "1e7890e4-778b-11ef-baf5-efdc52797490", 2024-09-20T20:03:14.989 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "health": { 2024-09-20T20:03:14.989 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-20T20:03:14.989 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-20T20:03:14.989 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-20T20:03:14.989 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:14.989 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-20T20:03:14.990 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-20T20:03:14.990 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 0 2024-09-20T20:03:14.990 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout ], 2024-09-20T20:03:14.990 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-20T20:03:14.990 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "smithi094" 2024-09-20T20:03:14.990 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout ], 2024-09-20T20:03:14.990 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "quorum_age": 11, 2024-09-20T20:03:14.990 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-20T20:03:14.990 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T20:03:14.990 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-20T20:03:14.990 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-20T20:03:14.990 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:14.990 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-20T20:03:14.990 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T20:03:14.991 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-20T20:03:14.991 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-20T20:03:14.991 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-20T20:03:14.991 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-20T20:03:14.991 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-20T20:03:14.991 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-20T20:03:14.994 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:14.994 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-20T20:03:14.994 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-20T20:03:14.995 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-20T20:03:14.995 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-20T20:03:14.995 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-20T20:03:14.995 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-20T20:03:14.995 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-20T20:03:14.995 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-20T20:03:14.995 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-20T20:03:14.995 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:14.995 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-20T20:03:14.995 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T20:03:14.995 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "btime": "2024-09-20T20:02:56:676356+0000", 2024-09-20T20:03:14.995 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "restful" 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout ], 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T20:03:14.996 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "modified": "2024-09-20T20:02:56.677128+0000", 2024-09-20T20:03:14.997 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-20T20:03:14.997 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout }, 2024-09-20T20:03:14.997 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-20T20:03:14.997 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout } 2024-09-20T20:03:14.997 INFO:teuthology.orchestra.run.smithi094.stdout:mgr is available 2024-09-20T20:03:15.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:15 smithi094 bash[20001]: cluster 2024-09-20T20:03:14.088656+0000 mon.smithi094 (mon.0) 29 : cluster [DBG] mgrmap e4: smithi094.airbml(active, since 2s) 2024-09-20T20:03:15.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:15 smithi094 bash[20001]: cluster 2024-09-20T20:03:14.088656+0000 mon.smithi094 (mon.0) 29 : cluster [DBG] mgrmap e4: smithi094.airbml(active, since 2s) 2024-09-20T20:03:15.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:15 smithi094 bash[20001]: audit 2024-09-20T20:03:14.456486+0000 mon.smithi094 (mon.0) 30 : audit [DBG] from='client.? 172.21.15.94:0/2558866042' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-20T20:03:15.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:15 smithi094 bash[20001]: audit 2024-09-20T20:03:14.456486+0000 mon.smithi094 (mon.0) 30 : audit [DBG] from='client.? 172.21.15.94:0/2558866042' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-20T20:03:16.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:16 smithi094 bash[20001]: audit 2024-09-20T20:03:16.355015+0000 mon.smithi094 (mon.0) 31 : audit [INF] from='client.? 172.21.15.94:0/2483509139' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-20T20:03:16.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:16 smithi094 bash[20001]: audit 2024-09-20T20:03:16.355015+0000 mon.smithi094 (mon.0) 31 : audit [INF] from='client.? 172.21.15.94:0/2483509139' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-20T20:03:16.936 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 2024-09-20T20:03:16.936 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout [global] 2024-09-20T20:03:16.936 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout fsid = 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:03:16.936 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-20T20:03:16.936 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.94:3300,v1:172.21.15.94:6789] 2024-09-20T20:03:16.936 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-20T20:03:16.936 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-20T20:03:16.936 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-20T20:03:16.937 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-20T20:03:16.937 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 2024-09-20T20:03:16.938 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-20T20:03:16.938 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-20T20:03:16.938 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout 2024-09-20T20:03:16.938 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout [osd] 2024-09-20T20:03:16.938 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-20T20:03:16.938 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-20T20:03:16.938 INFO:teuthology.orchestra.run.smithi094.stdout:Enabling cephadm module... 2024-09-20T20:03:18.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:18 smithi094 bash[20001]: audit 2024-09-20T20:03:18.321420+0000 mon.smithi094 (mon.0) 32 : audit [INF] from='client.? 172.21.15.94:0/2472774340' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-20T20:03:18.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:18 smithi094 bash[20001]: audit 2024-09-20T20:03:18.321420+0000 mon.smithi094 (mon.0) 32 : audit [INF] from='client.? 172.21.15.94:0/2472774340' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-20T20:03:19.718 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:19 smithi094 bash[20001]: audit 2024-09-20T20:03:18.372892+0000 mon.smithi094 (mon.0) 33 : audit [INF] from='client.? 172.21.15.94:0/2472774340' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-20T20:03:19.718 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:19 smithi094 bash[20001]: audit 2024-09-20T20:03:18.372892+0000 mon.smithi094 (mon.0) 33 : audit [INF] from='client.? 172.21.15.94:0/2472774340' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-20T20:03:19.718 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:19 smithi094 bash[20001]: cluster 2024-09-20T20:03:18.376279+0000 mon.smithi094 (mon.0) 34 : cluster [DBG] mgrmap e5: smithi094.airbml(active, since 6s) 2024-09-20T20:03:19.718 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:19 smithi094 bash[20001]: cluster 2024-09-20T20:03:18.376279+0000 mon.smithi094 (mon.0) 34 : cluster [DBG] mgrmap e5: smithi094.airbml(active, since 6s) 2024-09-20T20:03:20.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:20 smithi094 bash[20001]: audit 2024-09-20T20:03:20.276384+0000 mon.smithi094 (mon.0) 35 : audit [DBG] from='client.? 172.21.15.94:0/105037657' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-20T20:03:20.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:20 smithi094 bash[20001]: audit 2024-09-20T20:03:20.276384+0000 mon.smithi094 (mon.0) 35 : audit [DBG] from='client.? 172.21.15.94:0/105037657' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-20T20:03:20.916 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout { 2024-09-20T20:03:20.916 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-20T20:03:20.917 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-20T20:03:20.917 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "active_name": "smithi094.airbml", 2024-09-20T20:03:20.917 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-20T20:03:20.917 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout } 2024-09-20T20:03:20.917 INFO:teuthology.orchestra.run.smithi094.stdout:Waiting for the mgr to restart... 2024-09-20T20:03:20.917 INFO:teuthology.orchestra.run.smithi094.stdout:Waiting for mgr epoch 5... 2024-09-20T20:03:24.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: cluster 2024-09-20T20:03:24.358038+0000 mon.smithi094 (mon.0) 36 : cluster [INF] Active manager daemon smithi094.airbml restarted 2024-09-20T20:03:24.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: cluster 2024-09-20T20:03:24.358038+0000 mon.smithi094 (mon.0) 36 : cluster [INF] Active manager daemon smithi094.airbml restarted 2024-09-20T20:03:24.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: cluster 2024-09-20T20:03:24.358455+0000 mon.smithi094 (mon.0) 37 : cluster [INF] Activating manager daemon smithi094.airbml 2024-09-20T20:03:24.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: cluster 2024-09-20T20:03:24.358455+0000 mon.smithi094 (mon.0) 37 : cluster [INF] Activating manager daemon smithi094.airbml 2024-09-20T20:03:24.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: cluster 2024-09-20T20:03:24.362052+0000 mon.smithi094 (mon.0) 38 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-20T20:03:24.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: cluster 2024-09-20T20:03:24.362052+0000 mon.smithi094 (mon.0) 38 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-20T20:03:24.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: cluster 2024-09-20T20:03:24.362162+0000 mon.smithi094 (mon.0) 39 : cluster [DBG] mgrmap e6: smithi094.airbml(active, starting, since 0.00387292s) 2024-09-20T20:03:24.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: cluster 2024-09-20T20:03:24.362162+0000 mon.smithi094 (mon.0) 39 : cluster [DBG] mgrmap e6: smithi094.airbml(active, starting, since 0.00387292s) 2024-09-20T20:03:24.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: audit 2024-09-20T20:03:24.365593+0000 mon.smithi094 (mon.0) 40 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "mon metadata", "id": "smithi094"} : dispatch 2024-09-20T20:03:24.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: audit 2024-09-20T20:03:24.365593+0000 mon.smithi094 (mon.0) 40 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "mon metadata", "id": "smithi094"} : dispatch 2024-09-20T20:03:24.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: audit 2024-09-20T20:03:24.367410+0000 mon.smithi094 (mon.0) 41 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "mgr metadata", "who": "smithi094.airbml", "id": "smithi094.airbml"} : dispatch 2024-09-20T20:03:24.750 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: audit 2024-09-20T20:03:24.367410+0000 mon.smithi094 (mon.0) 41 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "mgr metadata", "who": "smithi094.airbml", "id": "smithi094.airbml"} : dispatch 2024-09-20T20:03:24.750 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: audit 2024-09-20T20:03:24.368633+0000 mon.smithi094 (mon.0) 42 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "mds metadata"} : dispatch 2024-09-20T20:03:24.750 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: audit 2024-09-20T20:03:24.368633+0000 mon.smithi094 (mon.0) 42 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "mds metadata"} : dispatch 2024-09-20T20:03:24.750 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: audit 2024-09-20T20:03:24.368821+0000 mon.smithi094 (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "osd metadata"} : dispatch 2024-09-20T20:03:24.750 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: audit 2024-09-20T20:03:24.368821+0000 mon.smithi094 (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "osd metadata"} : dispatch 2024-09-20T20:03:24.750 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: audit 2024-09-20T20:03:24.368941+0000 mon.smithi094 (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "mon metadata"} : dispatch 2024-09-20T20:03:24.750 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: audit 2024-09-20T20:03:24.368941+0000 mon.smithi094 (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "mon metadata"} : dispatch 2024-09-20T20:03:24.750 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: cluster 2024-09-20T20:03:24.393605+0000 mon.smithi094 (mon.0) 45 : cluster [INF] Manager daemon smithi094.airbml is now available 2024-09-20T20:03:24.750 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:24 smithi094 bash[20001]: cluster 2024-09-20T20:03:24.393605+0000 mon.smithi094 (mon.0) 45 : cluster [INF] Manager daemon smithi094.airbml is now available 2024-09-20T20:03:25.956 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout { 2024-09-20T20:03:25.956 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-20T20:03:25.956 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-20T20:03:25.957 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout } 2024-09-20T20:03:25.957 INFO:teuthology.orchestra.run.smithi094.stdout:mgr epoch 5 is available 2024-09-20T20:03:25.957 INFO:teuthology.orchestra.run.smithi094.stdout:Verifying orchestrator module is enabled... 2024-09-20T20:03:26.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.144868+0000 mon.smithi094 (mon.0) 46 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:26.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.144868+0000 mon.smithi094 (mon.0) 46 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:26.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.149843+0000 mon.smithi094 (mon.0) 47 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:26.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.149843+0000 mon.smithi094 (mon.0) 47 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:26.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: cephadm 2024-09-20T20:03:25.150684+0000 mgr.smithi094.airbml (mgr.14118) 2 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-20T20:03:26.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: cephadm 2024-09-20T20:03:25.150684+0000 mgr.smithi094.airbml (mgr.14118) 2 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-20T20:03:26.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.154355+0000 mon.smithi094 (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:26.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.154355+0000 mon.smithi094 (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:26.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.159745+0000 mon.smithi094 (mon.0) 49 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:26.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.159745+0000 mon.smithi094 (mon.0) 49 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:26.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.165378+0000 mon.smithi094 (mon.0) 50 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T20:03:26.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.165378+0000 mon.smithi094 (mon.0) 50 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T20:03:26.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.168093+0000 mon.smithi094 (mon.0) 51 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T20:03:26.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.168093+0000 mon.smithi094 (mon.0) 51 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T20:03:26.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.176178+0000 mon.smithi094 (mon.0) 52 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi094.airbml/mirror_snapshot_schedule"} : dispatch 2024-09-20T20:03:26.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.176178+0000 mon.smithi094 (mon.0) 52 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi094.airbml/mirror_snapshot_schedule"} : dispatch 2024-09-20T20:03:26.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.180396+0000 mon.smithi094 (mon.0) 53 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi094.airbml/trash_purge_schedule"} : dispatch 2024-09-20T20:03:26.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.180396+0000 mon.smithi094 (mon.0) 53 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi094.airbml/trash_purge_schedule"} : dispatch 2024-09-20T20:03:26.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.367645+0000 mgr.smithi094.airbml (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-20T20:03:26.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.367645+0000 mgr.smithi094.airbml (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-20T20:03:26.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: cluster 2024-09-20T20:03:25.370375+0000 mon.smithi094 (mon.0) 54 : cluster [DBG] mgrmap e7: smithi094.airbml(active, since 1.01206s) 2024-09-20T20:03:26.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: cluster 2024-09-20T20:03:25.370375+0000 mon.smithi094 (mon.0) 54 : cluster [DBG] mgrmap e7: smithi094.airbml(active, since 1.01206s) 2024-09-20T20:03:26.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.381355+0000 mgr.smithi094.airbml (mgr.14118) 4 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-20T20:03:26.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:26 smithi094 bash[20001]: audit 2024-09-20T20:03:25.381355+0000 mgr.smithi094.airbml (mgr.14118) 4 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-20T20:03:27.248 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:27 smithi094 bash[20001]: cephadm 2024-09-20T20:03:26.398428+0000 mgr.smithi094.airbml (mgr.14118) 5 : cephadm [INF] [20/Sep/2024:20:03:26] ENGINE Bus STARTING 2024-09-20T20:03:27.249 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:27 smithi094 bash[20001]: cephadm 2024-09-20T20:03:26.398428+0000 mgr.smithi094.airbml (mgr.14118) 5 : cephadm [INF] [20/Sep/2024:20:03:26] ENGINE Bus STARTING 2024-09-20T20:03:27.249 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:27 smithi094 bash[20001]: audit 2024-09-20T20:03:26.620629+0000 mon.smithi094 (mon.0) 55 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T20:03:27.249 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:27 smithi094 bash[20001]: audit 2024-09-20T20:03:26.620629+0000 mon.smithi094 (mon.0) 55 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T20:03:28.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: cephadm 2024-09-20T20:03:26.518204+0000 mgr.smithi094.airbml (mgr.14118) 6 : cephadm [INF] [20/Sep/2024:20:03:26] ENGINE Serving on https://172.21.15.94:7150 2024-09-20T20:03:28.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: cephadm 2024-09-20T20:03:26.518204+0000 mgr.smithi094.airbml (mgr.14118) 6 : cephadm [INF] [20/Sep/2024:20:03:26] ENGINE Serving on https://172.21.15.94:7150 2024-09-20T20:03:28.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: cephadm 2024-09-20T20:03:26.521855+0000 mgr.smithi094.airbml (mgr.14118) 7 : cephadm [ERR] [20/Sep/2024:20:03:26] ENGINE Error in HTTPServer.serve 2024-09-20T20:03:28.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: Traceback (most recent call last): 2024-09-20T20:03:28.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-20T20:03:28.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: self._connections.run(self.expiration_interval) 2024-09-20T20:03:28.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-20T20:03:28.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: self._run(expiration_interval) 2024-09-20T20:03:28.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-20T20:03:28.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: new_conn = self._from_server_socket(self.server.socket) 2024-09-20T20:03:28.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-20T20:03:28.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: s = self.context.wrap_socket( 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: return self.sslsocket_class._create( 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: self.do_handshake() 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: self._sslobj.do_handshake() 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: cephadm 2024-09-20T20:03:26.521855+0000 mgr.smithi094.airbml (mgr.14118) 7 : cephadm [ERR] [20/Sep/2024:20:03:26] ENGINE Error in HTTPServer.serve 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: Traceback (most recent call last): 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: self._connections.run(self.expiration_interval) 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-20T20:03:28.501 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: self._run(expiration_interval) 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: new_conn = self._from_server_socket(self.server.socket) 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: s = self.context.wrap_socket( 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: return self.sslsocket_class._create( 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: self.do_handshake() 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: self._sslobj.do_handshake() 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: cephadm 2024-09-20T20:03:26.619274+0000 mgr.smithi094.airbml (mgr.14118) 8 : cephadm [INF] [20/Sep/2024:20:03:26] ENGINE Serving on http://172.21.15.94:8765 2024-09-20T20:03:28.502 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: cephadm 2024-09-20T20:03:26.619274+0000 mgr.smithi094.airbml (mgr.14118) 8 : cephadm [INF] [20/Sep/2024:20:03:26] ENGINE Serving on http://172.21.15.94:8765 2024-09-20T20:03:28.503 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: cephadm 2024-09-20T20:03:26.619408+0000 mgr.smithi094.airbml (mgr.14118) 9 : cephadm [INF] [20/Sep/2024:20:03:26] ENGINE Bus STARTED 2024-09-20T20:03:28.503 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: cephadm 2024-09-20T20:03:26.619408+0000 mgr.smithi094.airbml (mgr.14118) 9 : cephadm [INF] [20/Sep/2024:20:03:26] ENGINE Bus STARTED 2024-09-20T20:03:28.503 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: cluster 2024-09-20T20:03:27.151957+0000 mon.smithi094 (mon.0) 56 : cluster [DBG] mgrmap e8: smithi094.airbml(active, since 2s) 2024-09-20T20:03:28.503 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: cluster 2024-09-20T20:03:27.151957+0000 mon.smithi094 (mon.0) 56 : cluster [DBG] mgrmap e8: smithi094.airbml(active, since 2s) 2024-09-20T20:03:28.503 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: audit 2024-09-20T20:03:27.493241+0000 mon.smithi094 (mon.0) 57 : audit [INF] from='client.? 172.21.15.94:0/1480616242' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-20T20:03:28.503 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:28 smithi094 bash[20001]: audit 2024-09-20T20:03:27.493241+0000 mon.smithi094 (mon.0) 57 : audit [INF] from='client.? 172.21.15.94:0/1480616242' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-20T20:03:28.765 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2024-09-20T20:03:28.765 INFO:teuthology.orchestra.run.smithi094.stdout:Setting orchestrator backend to cephadm... 2024-09-20T20:03:29.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:29 smithi094 bash[20001]: audit 2024-09-20T20:03:28.150054+0000 mon.smithi094 (mon.0) 58 : audit [INF] from='client.? 172.21.15.94:0/1480616242' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-20T20:03:29.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:29 smithi094 bash[20001]: audit 2024-09-20T20:03:28.150054+0000 mon.smithi094 (mon.0) 58 : audit [INF] from='client.? 172.21.15.94:0/1480616242' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-20T20:03:29.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:29 smithi094 bash[20001]: cluster 2024-09-20T20:03:28.155416+0000 mon.smithi094 (mon.0) 59 : cluster [DBG] mgrmap e9: smithi094.airbml(active, since 3s) 2024-09-20T20:03:29.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:29 smithi094 bash[20001]: cluster 2024-09-20T20:03:28.155416+0000 mon.smithi094 (mon.0) 59 : cluster [DBG] mgrmap e9: smithi094.airbml(active, since 3s) 2024-09-20T20:03:31.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:31 smithi094 bash[20001]: audit 2024-09-20T20:03:30.090646+0000 mgr.smithi094.airbml (mgr.14118) 10 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:31.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:31 smithi094 bash[20001]: audit 2024-09-20T20:03:30.090646+0000 mgr.smithi094.airbml (mgr.14118) 10 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:31.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:31 smithi094 bash[20001]: audit 2024-09-20T20:03:30.096645+0000 mon.smithi094 (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:31.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:31 smithi094 bash[20001]: audit 2024-09-20T20:03:30.096645+0000 mon.smithi094 (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:31.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:31 smithi094 bash[20001]: audit 2024-09-20T20:03:30.111712+0000 mon.smithi094 (mon.0) 61 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T20:03:31.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:31 smithi094 bash[20001]: audit 2024-09-20T20:03:30.111712+0000 mon.smithi094 (mon.0) 61 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T20:03:32.580 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-20T20:03:32.580 INFO:teuthology.orchestra.run.smithi094.stdout:Generating ssh key... 2024-09-20T20:03:32.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:32 smithi094 bash[20001]: audit 2024-09-20T20:03:32.016041+0000 mgr.smithi094.airbml (mgr.14118) 11 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:32.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:32 smithi094 bash[20001]: audit 2024-09-20T20:03:32.016041+0000 mgr.smithi094.airbml (mgr.14118) 11 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:35.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:35 smithi094 bash[20001]: audit 2024-09-20T20:03:33.907335+0000 mgr.smithi094.airbml (mgr.14118) 12 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:35.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:35 smithi094 bash[20001]: audit 2024-09-20T20:03:33.907335+0000 mgr.smithi094.airbml (mgr.14118) 12 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:35.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:35 smithi094 bash[20001]: cephadm 2024-09-20T20:03:33.907742+0000 mgr.smithi094.airbml (mgr.14118) 13 : cephadm [INF] Generating ssh key... 2024-09-20T20:03:35.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:35 smithi094 bash[20001]: cephadm 2024-09-20T20:03:33.907742+0000 mgr.smithi094.airbml (mgr.14118) 13 : cephadm [INF] Generating ssh key... 2024-09-20T20:03:35.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:35 smithi094 bash[20001]: audit 2024-09-20T20:03:34.138309+0000 mon.smithi094 (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:35.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:35 smithi094 bash[20001]: audit 2024-09-20T20:03:34.138309+0000 mon.smithi094 (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:35.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:35 smithi094 bash[20001]: audit 2024-09-20T20:03:34.142799+0000 mon.smithi094 (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:35.500 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:35 smithi094 bash[20001]: audit 2024-09-20T20:03:34.142799+0000 mon.smithi094 (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:36.604 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC7jGQmC5V2gs/hxktH5uo++2jRX0lSB0W4Gxg9k26eLTaB0YT0oA6t8Sjirf7g15TOurK967rKqjMCD7zuYBbxI0NABt9tbuyvVcpuVrf9j1UGxr3H9guA3jKZFeE12L9A8e0ENvKJyp96mnpxs8icV0zQ0wzm53ZnrG2LJCYJuVWgTdITXqFuTlTizcaxl7eVbBvri2O4jixVIf5nvVQhmjn9wncOHnlMkMN3MNdJzQIBcMX9ZTi1DpwRSrrU6iUbS/ZENwLggW2XLa1rYKQQLz8lSa1SnJZWeQ42rZ2SF5R1Ei42VH5vB7gXqVjkfJJb1+02SpHIt0J4BppNGw+dp36yosBn5YWOv6TaBG4Prt9BGxKMEP624afb+yxoOIu2oBNCOsknl3th3xFA7czsFNcMxl5gnUn879zf3Rq7xgP3SjFVLKw9/2ZuIB1ccp4skLif2uYtRPeDMnX7jUExG2xOt1kxhJ9Tfk0T77xAtLcvkQ/OnqAzwgWWQKegvd8= ceph-1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:03:36.604 INFO:teuthology.orchestra.run.smithi094.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-20T20:03:36.604 INFO:teuthology.orchestra.run.smithi094.stdout:Adding key to root@localhost authorized_keys... 2024-09-20T20:03:36.604 INFO:teuthology.orchestra.run.smithi094.stdout:Adding host smithi094... 2024-09-20T20:03:36.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:36 smithi094 bash[20001]: audit 2024-09-20T20:03:36.035801+0000 mgr.smithi094.airbml (mgr.14118) 14 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:36.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:36 smithi094 bash[20001]: audit 2024-09-20T20:03:36.035801+0000 mgr.smithi094.airbml (mgr.14118) 14 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:38.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:38 smithi094 bash[20001]: audit 2024-09-20T20:03:38.053434+0000 mgr.smithi094.airbml (mgr.14118) 15 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi094", "addr": "172.21.15.94", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:38.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:38 smithi094 bash[20001]: audit 2024-09-20T20:03:38.053434+0000 mgr.smithi094.airbml (mgr.14118) 15 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi094", "addr": "172.21.15.94", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:39.694 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:39 smithi094 bash[20001]: cephadm 2024-09-20T20:03:39.025538+0000 mgr.smithi094.airbml (mgr.14118) 16 : cephadm [INF] Deploying cephadm binary to smithi094 2024-09-20T20:03:39.695 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:39 smithi094 bash[20001]: cephadm 2024-09-20T20:03:39.025538+0000 mgr.smithi094.airbml (mgr.14118) 16 : cephadm [INF] Deploying cephadm binary to smithi094 2024-09-20T20:03:42.911 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout Added host 'smithi094' with addr '172.21.15.94' 2024-09-20T20:03:42.911 INFO:teuthology.orchestra.run.smithi094.stdout:Deploying mon service with default placement... 2024-09-20T20:03:43.498 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:43 smithi094 bash[20001]: audit 2024-09-20T20:03:42.150781+0000 mon.smithi094 (mon.0) 64 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:43.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:43 smithi094 bash[20001]: audit 2024-09-20T20:03:42.150781+0000 mon.smithi094 (mon.0) 64 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:43.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:43 smithi094 bash[20001]: cephadm 2024-09-20T20:03:42.151232+0000 mgr.smithi094.airbml (mgr.14118) 17 : cephadm [INF] Added host smithi094 2024-09-20T20:03:43.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:43 smithi094 bash[20001]: cephadm 2024-09-20T20:03:42.151232+0000 mgr.smithi094.airbml (mgr.14118) 17 : cephadm [INF] Added host smithi094 2024-09-20T20:03:43.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:43 smithi094 bash[20001]: audit 2024-09-20T20:03:42.151627+0000 mon.smithi094 (mon.0) 65 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T20:03:43.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:43 smithi094 bash[20001]: audit 2024-09-20T20:03:42.151627+0000 mon.smithi094 (mon.0) 65 : audit [DBG] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T20:03:45.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:45 smithi094 bash[20001]: cluster 2024-09-20T20:03:44.370547+0000 mgr.smithi094.airbml (mgr.14118) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:45.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:45 smithi094 bash[20001]: cluster 2024-09-20T20:03:44.370547+0000 mgr.smithi094.airbml (mgr.14118) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:45.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:45 smithi094 bash[20001]: audit 2024-09-20T20:03:44.933020+0000 mon.smithi094 (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:45.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:45 smithi094 bash[20001]: audit 2024-09-20T20:03:44.933020+0000 mon.smithi094 (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:45.934 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-20T20:03:45.935 INFO:teuthology.orchestra.run.smithi094.stdout:Deploying mgr service with default placement... 2024-09-20T20:03:46.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:46 smithi094 bash[20001]: audit 2024-09-20T20:03:44.927792+0000 mgr.smithi094.airbml (mgr.14118) 19 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:46.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:46 smithi094 bash[20001]: audit 2024-09-20T20:03:44.927792+0000 mgr.smithi094.airbml (mgr.14118) 19 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:46.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:46 smithi094 bash[20001]: cephadm 2024-09-20T20:03:44.930208+0000 mgr.smithi094.airbml (mgr.14118) 20 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-20T20:03:46.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:46 smithi094 bash[20001]: cephadm 2024-09-20T20:03:44.930208+0000 mgr.smithi094.airbml (mgr.14118) 20 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-20T20:03:46.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:46 smithi094 bash[20001]: audit 2024-09-20T20:03:45.588708+0000 mon.smithi094 (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:46.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:46 smithi094 bash[20001]: audit 2024-09-20T20:03:45.588708+0000 mon.smithi094 (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:46.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:46 smithi094 bash[20001]: audit 2024-09-20T20:03:46.120300+0000 mon.smithi094 (mon.0) 68 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:46.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:46 smithi094 bash[20001]: audit 2024-09-20T20:03:46.120300+0000 mon.smithi094 (mon.0) 68 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:47.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:47 smithi094 bash[20001]: cluster 2024-09-20T20:03:46.370957+0000 mgr.smithi094.airbml (mgr.14118) 21 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:47.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:47 smithi094 bash[20001]: cluster 2024-09-20T20:03:46.370957+0000 mgr.smithi094.airbml (mgr.14118) 21 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:47.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:47 smithi094 bash[20001]: audit 2024-09-20T20:03:47.320054+0000 mon.smithi094 (mon.0) 69 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:47.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:47 smithi094 bash[20001]: audit 2024-09-20T20:03:47.320054+0000 mon.smithi094 (mon.0) 69 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:47.911 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-20T20:03:47.911 INFO:teuthology.orchestra.run.smithi094.stdout:Deploying crash service with default placement... 2024-09-20T20:03:48.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:48 smithi094 bash[20001]: audit 2024-09-20T20:03:47.313224+0000 mgr.smithi094.airbml (mgr.14118) 22 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:48.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:48 smithi094 bash[20001]: audit 2024-09-20T20:03:47.313224+0000 mgr.smithi094.airbml (mgr.14118) 22 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:48.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:48 smithi094 bash[20001]: cephadm 2024-09-20T20:03:47.315298+0000 mgr.smithi094.airbml (mgr.14118) 23 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-20T20:03:48.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:48 smithi094 bash[20001]: cephadm 2024-09-20T20:03:47.315298+0000 mgr.smithi094.airbml (mgr.14118) 23 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-20T20:03:49.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:49 smithi094 bash[20001]: cluster 2024-09-20T20:03:48.371447+0000 mgr.smithi094.airbml (mgr.14118) 24 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:49.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:49 smithi094 bash[20001]: cluster 2024-09-20T20:03:48.371447+0000 mgr.smithi094.airbml (mgr.14118) 24 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:49.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:49 smithi094 bash[20001]: audit 2024-09-20T20:03:49.273425+0000 mon.smithi094 (mon.0) 70 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:49.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:49 smithi094 bash[20001]: audit 2024-09-20T20:03:49.273425+0000 mon.smithi094 (mon.0) 70 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:49.867 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-09-20T20:03:49.867 INFO:teuthology.orchestra.run.smithi094.stdout:Deploying ceph-exporter service with default placement... 2024-09-20T20:03:50.691 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:50 smithi094 bash[20001]: audit 2024-09-20T20:03:49.267865+0000 mgr.smithi094.airbml (mgr.14118) 25 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:50.691 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:50 smithi094 bash[20001]: audit 2024-09-20T20:03:49.267865+0000 mgr.smithi094.airbml (mgr.14118) 25 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:50.691 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:50 smithi094 bash[20001]: cephadm 2024-09-20T20:03:49.269869+0000 mgr.smithi094.airbml (mgr.14118) 26 : cephadm [INF] Saving service crash spec with placement * 2024-09-20T20:03:50.691 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:50 smithi094 bash[20001]: cephadm 2024-09-20T20:03:49.269869+0000 mgr.smithi094.airbml (mgr.14118) 26 : cephadm [INF] Saving service crash spec with placement * 2024-09-20T20:03:51.498 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:51 smithi094 bash[20001]: cluster 2024-09-20T20:03:50.371815+0000 mgr.smithi094.airbml (mgr.14118) 27 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:51.498 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:51 smithi094 bash[20001]: cluster 2024-09-20T20:03:50.371815+0000 mgr.smithi094.airbml (mgr.14118) 27 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:51.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:51 smithi094 bash[20001]: audit 2024-09-20T20:03:51.209032+0000 mon.smithi094 (mon.0) 71 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:51.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:51 smithi094 bash[20001]: audit 2024-09-20T20:03:51.209032+0000 mon.smithi094 (mon.0) 71 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:51.807 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-09-20T20:03:51.807 INFO:teuthology.orchestra.run.smithi094.stdout:Deploying prometheus service with default placement... 2024-09-20T20:03:52.665 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:52 smithi094 bash[20001]: audit 2024-09-20T20:03:51.201472+0000 mgr.smithi094.airbml (mgr.14118) 28 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:52.665 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:52 smithi094 bash[20001]: audit 2024-09-20T20:03:51.201472+0000 mgr.smithi094.airbml (mgr.14118) 28 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:52.665 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:52 smithi094 bash[20001]: cephadm 2024-09-20T20:03:51.204187+0000 mgr.smithi094.airbml (mgr.14118) 29 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-09-20T20:03:52.665 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:52 smithi094 bash[20001]: cephadm 2024-09-20T20:03:51.204187+0000 mgr.smithi094.airbml (mgr.14118) 29 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-09-20T20:03:53.498 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:53 smithi094 bash[20001]: cluster 2024-09-20T20:03:52.372170+0000 mgr.smithi094.airbml (mgr.14118) 30 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:53.498 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:53 smithi094 bash[20001]: cluster 2024-09-20T20:03:52.372170+0000 mgr.smithi094.airbml (mgr.14118) 30 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:53.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:53 smithi094 bash[20001]: audit 2024-09-20T20:03:53.152998+0000 mon.smithi094 (mon.0) 72 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:53.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:53 smithi094 bash[20001]: audit 2024-09-20T20:03:53.152998+0000 mon.smithi094 (mon.0) 72 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:53.740 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-09-20T20:03:53.741 INFO:teuthology.orchestra.run.smithi094.stdout:Deploying grafana service with default placement... 2024-09-20T20:03:54.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:54 smithi094 bash[20001]: audit 2024-09-20T20:03:53.146836+0000 mgr.smithi094.airbml (mgr.14118) 31 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:54.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:54 smithi094 bash[20001]: audit 2024-09-20T20:03:53.146836+0000 mgr.smithi094.airbml (mgr.14118) 31 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:54.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:54 smithi094 bash[20001]: cephadm 2024-09-20T20:03:53.148384+0000 mgr.smithi094.airbml (mgr.14118) 32 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-09-20T20:03:54.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:54 smithi094 bash[20001]: cephadm 2024-09-20T20:03:53.148384+0000 mgr.smithi094.airbml (mgr.14118) 32 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-09-20T20:03:55.723 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-09-20T20:03:55.723 INFO:teuthology.orchestra.run.smithi094.stdout:Deploying node-exporter service with default placement... 2024-09-20T20:03:55.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:55 smithi094 bash[20001]: cluster 2024-09-20T20:03:54.372449+0000 mgr.smithi094.airbml (mgr.14118) 33 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:55.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:55 smithi094 bash[20001]: cluster 2024-09-20T20:03:54.372449+0000 mgr.smithi094.airbml (mgr.14118) 33 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:55.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:55 smithi094 bash[20001]: audit 2024-09-20T20:03:54.418538+0000 mon.smithi094 (mon.0) 73 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:55.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:55 smithi094 bash[20001]: audit 2024-09-20T20:03:54.418538+0000 mon.smithi094 (mon.0) 73 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:55.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:55 smithi094 bash[20001]: audit 2024-09-20T20:03:55.072556+0000 mon.smithi094 (mon.0) 74 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:55.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:55 smithi094 bash[20001]: audit 2024-09-20T20:03:55.072556+0000 mon.smithi094 (mon.0) 74 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:56.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:56 smithi094 bash[20001]: audit 2024-09-20T20:03:55.068178+0000 mgr.smithi094.airbml (mgr.14118) 34 : audit [DBG] from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:56.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:56 smithi094 bash[20001]: audit 2024-09-20T20:03:55.068178+0000 mgr.smithi094.airbml (mgr.14118) 34 : audit [DBG] from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:56.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:56 smithi094 bash[20001]: cephadm 2024-09-20T20:03:55.069665+0000 mgr.smithi094.airbml (mgr.14118) 35 : cephadm [INF] Saving service grafana spec with placement count:1 2024-09-20T20:03:56.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:56 smithi094 bash[20001]: cephadm 2024-09-20T20:03:55.069665+0000 mgr.smithi094.airbml (mgr.14118) 35 : cephadm [INF] Saving service grafana spec with placement count:1 2024-09-20T20:03:56.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:56 smithi094 bash[20001]: audit 2024-09-20T20:03:55.528010+0000 mon.smithi094 (mon.0) 75 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:56.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:56 smithi094 bash[20001]: audit 2024-09-20T20:03:55.528010+0000 mon.smithi094 (mon.0) 75 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:57.715 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-09-20T20:03:57.715 INFO:teuthology.orchestra.run.smithi094.stdout:Deploying alertmanager service with default placement... 2024-09-20T20:03:57.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:57 smithi094 bash[20001]: cluster 2024-09-20T20:03:56.372844+0000 mgr.smithi094.airbml (mgr.14118) 36 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:57.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:57 smithi094 bash[20001]: cluster 2024-09-20T20:03:56.372844+0000 mgr.smithi094.airbml (mgr.14118) 36 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:57.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:57 smithi094 bash[20001]: audit 2024-09-20T20:03:57.148277+0000 mon.smithi094 (mon.0) 76 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:57.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:57 smithi094 bash[20001]: audit 2024-09-20T20:03:57.148277+0000 mon.smithi094 (mon.0) 76 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:58.713 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:58 smithi094 bash[20001]: audit 2024-09-20T20:03:57.141562+0000 mgr.smithi094.airbml (mgr.14118) 37 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:58.713 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:58 smithi094 bash[20001]: audit 2024-09-20T20:03:57.141562+0000 mgr.smithi094.airbml (mgr.14118) 37 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:03:58.714 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:58 smithi094 bash[20001]: cephadm 2024-09-20T20:03:57.143683+0000 mgr.smithi094.airbml (mgr.14118) 38 : cephadm [INF] Saving service node-exporter spec with placement * 2024-09-20T20:03:58.714 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:58 smithi094 bash[20001]: cephadm 2024-09-20T20:03:57.143683+0000 mgr.smithi094.airbml (mgr.14118) 38 : cephadm [INF] Saving service node-exporter spec with placement * 2024-09-20T20:03:59.498 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:59 smithi094 bash[20001]: cluster 2024-09-20T20:03:58.373281+0000 mgr.smithi094.airbml (mgr.14118) 39 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:59.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:59 smithi094 bash[20001]: cluster 2024-09-20T20:03:58.373281+0000 mgr.smithi094.airbml (mgr.14118) 39 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:03:59.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:59 smithi094 bash[20001]: audit 2024-09-20T20:03:59.209753+0000 mon.smithi094 (mon.0) 77 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:59.499 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:03:59 smithi094 bash[20001]: audit 2024-09-20T20:03:59.209753+0000 mon.smithi094 (mon.0) 77 : audit [INF] from='mgr.14118 172.21.15.94:0/2799615863' entity='mgr.smithi094.airbml' 2024-09-20T20:03:59.823 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-09-20T20:04:00.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:00 smithi094 bash[20001]: audit 2024-09-20T20:03:59.204375+0000 mgr.smithi094.airbml (mgr.14118) 40 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:04:00.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:00 smithi094 bash[20001]: audit 2024-09-20T20:03:59.204375+0000 mgr.smithi094.airbml (mgr.14118) 40 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T20:04:00.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:00 smithi094 bash[20001]: cephadm 2024-09-20T20:03:59.205526+0000 mgr.smithi094.airbml (mgr.14118) 41 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-09-20T20:04:00.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:00 smithi094 bash[20001]: cephadm 2024-09-20T20:03:59.205526+0000 mgr.smithi094.airbml (mgr.14118) 41 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-09-20T20:04:01.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:01 smithi094 bash[20001]: cluster 2024-09-20T20:04:00.373641+0000 mgr.smithi094.airbml (mgr.14118) 42 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:04:01.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:01 smithi094 bash[20001]: cluster 2024-09-20T20:04:00.373641+0000 mgr.smithi094.airbml (mgr.14118) 42 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:04:01.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:01 smithi094 bash[20001]: audit 2024-09-20T20:04:01.383461+0000 mon.smithi094 (mon.0) 78 : audit [INF] from='client.? 172.21.15.94:0/2545030484' entity='client.admin' 2024-09-20T20:04:01.749 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:01 smithi094 bash[20001]: audit 2024-09-20T20:04:01.383461+0000 mon.smithi094 (mon.0) 78 : audit [INF] from='client.? 172.21.15.94:0/2545030484' entity='client.admin' 2024-09-20T20:04:02.781 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:02 smithi094 bash[20001]: cluster 2024-09-20T20:04:02.374179+0000 mgr.smithi094.airbml (mgr.14118) 43 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:04:02.781 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:02 smithi094 bash[20001]: cluster 2024-09-20T20:04:02.374179+0000 mgr.smithi094.airbml (mgr.14118) 43 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:04:04.737 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 22 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 -e NODE_NAME=smithi094 -v /var/log/ceph/1e7890e4-778b-11ef-baf5-efdc52797490:/var/log/ceph:z -v /tmp/ceph-tmpn76k2tcp:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmpij80pinv:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 config set mgr mgr/dashboard/ssl_server_port 8443 2024-09-20T20:04:04.737 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/ceph: stderr Error EINVAL: unrecognized config option 'mgr/dashboard/ssl_server_port' 2024-09-20T20:04:04.738 INFO:teuthology.orchestra.run.smithi094.stderr:RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 -e NODE_NAME=smithi094 -v /var/log/ceph/1e7890e4-778b-11ef-baf5-efdc52797490:/var/log/ceph:z -v /tmp/ceph-tmpn76k2tcp:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmpij80pinv:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 config set mgr mgr/dashboard/ssl_server_port 8443: Error EINVAL: unrecognized config option 'mgr/dashboard/ssl_server_port' 2024-09-20T20:04:04.738 INFO:teuthology.orchestra.run.smithi094.stderr: 2024-09-20T20:04:04.738 INFO:teuthology.orchestra.run.smithi094.stdout: 2024-09-20T20:04:04.738 INFO:teuthology.orchestra.run.smithi094.stdout: 2024-09-20T20:04:04.738 INFO:teuthology.orchestra.run.smithi094.stdout: *************** 2024-09-20T20:04:04.738 INFO:teuthology.orchestra.run.smithi094.stdout: Cephadm hit an issue during cluster installation. Current cluster files will be deleted automatically. 2024-09-20T20:04:04.738 INFO:teuthology.orchestra.run.smithi094.stdout: To disable this behaviour you can pass the --no-cleanup-on-failure flag. In case of any previous 2024-09-20T20:04:04.739 INFO:teuthology.orchestra.run.smithi094.stdout: broken installation, users must use the following command to completely delete the broken cluster: 2024-09-20T20:04:04.739 INFO:teuthology.orchestra.run.smithi094.stdout: 2024-09-20T20:04:04.739 INFO:teuthology.orchestra.run.smithi094.stdout: > cephadm rm-cluster --force --zap-osds --fsid 2024-09-20T20:04:04.739 INFO:teuthology.orchestra.run.smithi094.stdout: 2024-09-20T20:04:04.739 INFO:teuthology.orchestra.run.smithi094.stdout: for more information please refer to https://docs.ceph.com/en/latest/cephadm/operations/#purging-a-cluster 2024-09-20T20:04:04.739 INFO:teuthology.orchestra.run.smithi094.stdout: *************** 2024-09-20T20:04:04.739 INFO:teuthology.orchestra.run.smithi094.stdout: 2024-09-20T20:04:04.739 INFO:teuthology.orchestra.run.smithi094.stdout: 2024-09-20T20:04:04.739 INFO:teuthology.orchestra.run.smithi094.stdout:Deleting cluster with fsid: 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:04:05.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:05 smithi094 bash[20001]: cluster 2024-09-20T20:04:04.374596+0000 mgr.smithi094.airbml (mgr.14118) 44 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:04:05.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:05 smithi094 bash[20001]: cluster 2024-09-20T20:04:04.374596+0000 mgr.smithi094.airbml (mgr.14118) 44 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:04:07.271 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/docker: stdout 05ed874303ea,458.2MiB / 31.23GiB 2024-09-20T20:04:07.271 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/docker: stdout 7da8ac2fd51e,32.27MiB / 31.23GiB 2024-09-20T20:04:07.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:07 smithi094 bash[20001]: cluster 2024-09-20T20:04:06.375009+0000 mgr.smithi094.airbml (mgr.14118) 45 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:04:07.748 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:07 smithi094 bash[20001]: cluster 2024-09-20T20:04:06.375009+0000 mgr.smithi094.airbml (mgr.14118) 45 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T20:04:09.283 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/docker: stdout 05ed874303ea,0.77% 2024-09-20T20:04:09.283 INFO:teuthology.orchestra.run.smithi094.stdout:/usr/bin/docker: stdout 7da8ac2fd51e,0.85% 2024-09-20T20:04:09.566 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:09 smithi094 systemd[1]: Stopping Ceph mon.smithi094 for 1e7890e4-778b-11ef-baf5-efdc52797490... 2024-09-20T20:04:09.567 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:09 smithi094 bash[20001]: debug 2024-09-20T20:04:09.410+0000 7f59e20e9640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi094 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-20T20:04:09.567 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:09 smithi094 bash[20001]: debug 2024-09-20T20:04:09.410+0000 7f59e20e9640 -1 mon.smithi094@0(leader) e1 *** Got Signal Terminated *** 2024-09-20T20:04:10.248 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:09 smithi094 bash[23354]: ceph-1e7890e4-778b-11ef-baf5-efdc52797490-mon-smithi094 2024-09-20T20:04:10.248 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:10 smithi094 bash[23414]: Error response from daemon: No such container: ceph-1e7890e4-778b-11ef-baf5-efdc52797490-mon-smithi094 2024-09-20T20:04:10.248 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:10 smithi094 systemd[1]: ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094.service: Deactivated successfully. 2024-09-20T20:04:10.248 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:10 smithi094 systemd[1]: Stopped Ceph mon.smithi094 for 1e7890e4-778b-11ef-baf5-efdc52797490. 2024-09-20T20:04:10.398 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Removed /etc/systemd/system/ceph-1e7890e4-778b-11ef-baf5-efdc52797490.target.wants/ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094.service. 2024-09-20T20:04:10.402 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 5 from systemctl stop ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mon.smithi094.service 2024-09-20T20:04:10.403 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Failed to stop ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mon.smithi094.service: Unit ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mon.smithi094.service not loaded. 2024-09-20T20:04:10.406 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mon.smithi094.service 2024-09-20T20:04:10.406 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Failed to reset failed state of unit ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mon.smithi094.service: Unit ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mon.smithi094.service not loaded. 2024-09-20T20:04:10.414 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 1 from systemctl disable ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mon.smithi094.service 2024-09-20T20:04:10.414 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Failed to disable unit: Unit file ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mon.smithi094.service does not exist. 2024-09-20T20:04:10.553 INFO:journalctl@ceph.mon.smithi094.smithi094.stdout:Sep 20 20:04:10 smithi094 systemd[1]: /etc/systemd/system/ceph-1e7890e4-778b-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T20:04:11.495 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Removed /etc/systemd/system/ceph-1e7890e4-778b-11ef-baf5-efdc52797490.target.wants/ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mgr.smithi094.airbml.service. 2024-09-20T20:04:11.500 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 5 from systemctl stop ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mgr.smithi094.airbml.service 2024-09-20T20:04:11.501 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Failed to stop ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mgr.smithi094.airbml.service: Unit ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mgr.smithi094.airbml.service not loaded. 2024-09-20T20:04:11.505 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mgr.smithi094.airbml.service 2024-09-20T20:04:11.505 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Failed to reset failed state of unit ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mgr.smithi094.airbml.service: Unit ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mgr.smithi094.airbml.service not loaded. 2024-09-20T20:04:11.511 INFO:teuthology.orchestra.run.smithi094.stdout:Non-zero exit code 1 from systemctl disable ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mgr.smithi094.airbml.service 2024-09-20T20:04:11.512 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Failed to disable unit: Unit file ceph-1e7890e4-778b-11ef-baf5-efdc52797490-init@mgr.smithi094.airbml.service does not exist. 2024-09-20T20:04:11.710 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Removed /etc/systemd/system/multi-user.target.wants/ceph-1e7890e4-778b-11ef-baf5-efdc52797490.target. 2024-09-20T20:04:11.711 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Removed /etc/systemd/system/ceph.target.wants/ceph-1e7890e4-778b-11ef-baf5-efdc52797490.target. 2024-09-20T20:04:11.948 INFO:teuthology.orchestra.run.smithi094.stdout:systemctl: stderr Removed /etc/systemd/system/multi-user.target.wants/ceph.target. 2024-09-20T20:04:11.950 INFO:teuthology.orchestra.run.smithi094.stderr:Traceback (most recent call last): 2024-09-20T20:04:11.950 INFO:teuthology.orchestra.run.smithi094.stderr: File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-09-20T20:04:11.962 INFO:teuthology.orchestra.run.smithi094.stderr: return _run_code(code, main_globals, None, 2024-09-20T20:04:11.962 INFO:teuthology.orchestra.run.smithi094.stderr: File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-09-20T20:04:11.962 INFO:teuthology.orchestra.run.smithi094.stderr: exec(code, run_globals) 2024-09-20T20:04:11.962 INFO:teuthology.orchestra.run.smithi094.stderr: File "/tmp/tmpfr0s6fcg.cephadm.build/app/__main__.py", line 5628, in 2024-09-20T20:04:11.962 INFO:teuthology.orchestra.run.smithi094.stderr: File "/tmp/tmpfr0s6fcg.cephadm.build/app/__main__.py", line 5616, in main 2024-09-20T20:04:11.963 INFO:teuthology.orchestra.run.smithi094.stderr: File "/tmp/tmpfr0s6fcg.cephadm.build/app/__main__.py", line 2667, in _rollback 2024-09-20T20:04:11.963 INFO:teuthology.orchestra.run.smithi094.stderr: File "/tmp/tmpfr0s6fcg.cephadm.build/app/__main__.py", line 451, in _default_image 2024-09-20T20:04:11.963 INFO:teuthology.orchestra.run.smithi094.stderr: File "/tmp/tmpfr0s6fcg.cephadm.build/app/__main__.py", line 2933, in command_bootstrap 2024-09-20T20:04:11.963 INFO:teuthology.orchestra.run.smithi094.stderr: File "/tmp/tmpfr0s6fcg.cephadm.build/app/__main__.py", line 2431, in prepare_dashboard 2024-09-20T20:04:11.963 INFO:teuthology.orchestra.run.smithi094.stderr: File "/tmp/tmpfr0s6fcg.cephadm.build/app/__main__.py", line 2846, in cli 2024-09-20T20:04:11.963 INFO:teuthology.orchestra.run.smithi094.stderr: File "/tmp/tmpfr0s6fcg.cephadm.build/app/cephadmlib/container_types.py", line 429, in run 2024-09-20T20:04:11.963 INFO:teuthology.orchestra.run.smithi094.stderr: File "/tmp/tmpfr0s6fcg.cephadm.build/app/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-09-20T20:04:11.963 INFO:teuthology.orchestra.run.smithi094.stderr:RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 -e NODE_NAME=smithi094 -v /var/log/ceph/1e7890e4-778b-11ef-baf5-efdc52797490:/var/log/ceph:z -v /tmp/ceph-tmpn76k2tcp:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmpij80pinv:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 config set mgr mgr/dashboard/ssl_server_port 8443: Error EINVAL: unrecognized config option 'mgr/dashboard/ssl_server_port' 2024-09-20T20:04:11.963 INFO:teuthology.orchestra.run.smithi094.stderr: 2024-09-20T20:04:12.007 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T20:04:12.008 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-20T20:04:12.008 DEBUG:teuthology.orchestra.run.smithi094:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-20T20:04:12.013 DEBUG:teuthology.orchestra.run.smithi110:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-20T20:04:12.019 INFO:tasks.cephadm:Stopping all daemons... 2024-09-20T20:04:12.019 INFO:tasks.cephadm.mon.smithi094:Stopping mon.smithi094... 2024-09-20T20:04:12.020 DEBUG:teuthology.orchestra.run.smithi094:> sudo systemctl stop ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094 2024-09-20T20:04:12.069 INFO:teuthology.orchestra.run.smithi094.stderr:Failed to stop ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094.service: Unit ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094.service not loaded. 2024-09-20T20:04:12.070 DEBUG:teuthology.orchestra.run:got remote process result: 5 2024-09-20T20:04:12.070 ERROR:tasks.cephadm:Failed to stop "ceph.mon.smithi094" Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa/tasks/cephadm.py", line 810, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi094 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 -v bootstrap --fsid 1e7890e4-778b-11ef-baf5-efdc52797490 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.94 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa/tasks/cephadm.py", line 897, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/daemon/cephadmunit.py", line 167, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi094 with status 5: 'sudo systemctl stop ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094' 2024-09-20T20:04:12.072 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa/tasks/cephadm.py", line 810, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi094 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 -v bootstrap --fsid 1e7890e4-778b-11ef-baf5-efdc52797490 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.94 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa/tasks/cephadm.py", line 897, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/daemon/cephadmunit.py", line 167, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi094 with status 5: 'sudo systemctl stop ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094' 2024-09-20T20:04:12.072 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-20T20:04:12.074 DEBUG:teuthology.misc:Transferring archived files from smithi094:/var/lib/ceph/1e7890e4-778b-11ef-baf5-efdc52797490/crash to /home/teuthworker/archive/adking-2024-09-20_18:25:04-orch:cephadm-wip-adk-testing-2024-09-20-0910-distro-default-smithi/7912850/remote/smithi094/crash 2024-09-20T20:04:12.075 DEBUG:teuthology.orchestra.run.smithi094:> sudo tar c -f - -C /var/lib/ceph/1e7890e4-778b-11ef-baf5-efdc52797490/crash -- . 2024-09-20T20:04:12.121 INFO:teuthology.orchestra.run.smithi094.stderr:tar: /var/lib/ceph/1e7890e4-778b-11ef-baf5-efdc52797490/crash: Cannot open: No such file or directory 2024-09-20T20:04:12.121 INFO:teuthology.orchestra.run.smithi094.stderr:tar: Error is not recoverable: exiting now 2024-09-20T20:04:12.122 DEBUG:teuthology.misc:Transferring archived files from smithi110:/var/lib/ceph/1e7890e4-778b-11ef-baf5-efdc52797490/crash to /home/teuthworker/archive/adking-2024-09-20_18:25:04-orch:cephadm-wip-adk-testing-2024-09-20-0910-distro-default-smithi/7912850/remote/smithi110/crash 2024-09-20T20:04:12.123 DEBUG:teuthology.orchestra.run.smithi110:> sudo tar c -f - -C /var/lib/ceph/1e7890e4-778b-11ef-baf5-efdc52797490/crash -- . 2024-09-20T20:04:12.135 INFO:teuthology.orchestra.run.smithi110.stderr:tar: /var/lib/ceph/1e7890e4-778b-11ef-baf5-efdc52797490/crash: Cannot open: No such file or directory 2024-09-20T20:04:12.135 INFO:teuthology.orchestra.run.smithi110.stderr:tar: Error is not recoverable: exiting now 2024-09-20T20:04:12.136 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-20T20:04:12.137 DEBUG:teuthology.orchestra.run.smithi094:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/1e7890e4-778b-11ef-baf5-efdc52797490/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v CEPHADM_DAEMON_PLACE_FAIL | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-20T20:04:12.177 INFO:teuthology.orchestra.run.smithi094.stderr:grep: /var/log/ceph/1e7890e4-778b-11ef-baf5-efdc52797490/ceph.log: No such file or directory 2024-09-20T20:04:12.179 INFO:tasks.cephadm:Compressing logs... 2024-09-20T20:04:12.179 DEBUG:teuthology.orchestra.run.smithi094:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-20T20:04:12.224 DEBUG:teuthology.orchestra.run.smithi110:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-20T20:04:12.232 INFO:teuthology.orchestra.run.smithi094.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-20T20:04:12.237 INFO:teuthology.orchestra.run.smithi110.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-20T20:04:12.239 INFO:teuthology.orchestra.run.smithi094.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-20T20:04:12.240 INFO:teuthology.orchestra.run.smithi094.stderr:/var/log/ceph/cephadm.log: 14.3% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-20T20:04:12.241 INFO:teuthology.orchestra.run.smithi094.stderr: 2024-09-20T20:04:12.242 INFO:teuthology.orchestra.run.smithi094.stderr:real 0m0.015s 2024-09-20T20:04:12.242 INFO:teuthology.orchestra.run.smithi094.stderr:user 0m0.011s 2024-09-20T20:04:12.242 INFO:teuthology.orchestra.run.smithi094.stderr:sys 0m0.003s 2024-09-20T20:04:12.264 INFO:teuthology.orchestra.run.smithi110.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-20T20:04:12.265 INFO:teuthology.orchestra.run.smithi110.stderr:/var/log/ceph/cephadm.log: 56.0% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-20T20:04:12.267 INFO:teuthology.orchestra.run.smithi110.stderr: 2024-09-20T20:04:12.267 INFO:teuthology.orchestra.run.smithi110.stderr:real 0m0.038s 2024-09-20T20:04:12.267 INFO:teuthology.orchestra.run.smithi110.stderr:user 0m0.006s 2024-09-20T20:04:12.267 INFO:teuthology.orchestra.run.smithi110.stderr:sys 0m0.014s 2024-09-20T20:04:12.267 INFO:tasks.cephadm:Archiving logs... 2024-09-20T20:04:12.268 DEBUG:teuthology.misc:Transferring archived files from smithi094:/var/log/ceph to /home/teuthworker/archive/adking-2024-09-20_18:25:04-orch:cephadm-wip-adk-testing-2024-09-20-0910-distro-default-smithi/7912850/remote/smithi094/log 2024-09-20T20:04:12.268 DEBUG:teuthology.orchestra.run.smithi094:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-20T20:04:12.293 DEBUG:teuthology.misc:Transferring archived files from smithi110:/var/log/ceph to /home/teuthworker/archive/adking-2024-09-20_18:25:04-orch:cephadm-wip-adk-testing-2024-09-20-0910-distro-default-smithi/7912850/remote/smithi110/log 2024-09-20T20:04:12.294 DEBUG:teuthology.orchestra.run.smithi110:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-20T20:04:12.322 INFO:tasks.cephadm:Removing cluster... 2024-09-20T20:04:12.323 DEBUG:teuthology.orchestra.run.smithi094:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1e7890e4-778b-11ef-baf5-efdc52797490 --force 2024-09-20T20:04:12.511 INFO:teuthology.orchestra.run.smithi094.stdout:Deleting cluster with fsid: 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:04:13.625 DEBUG:teuthology.orchestra.run.smithi110:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1e7890e4-778b-11ef-baf5-efdc52797490 --force 2024-09-20T20:04:13.807 INFO:teuthology.orchestra.run.smithi110.stdout:Deleting cluster with fsid: 1e7890e4-778b-11ef-baf5-efdc52797490 2024-09-20T20:04:14.928 INFO:tasks.cephadm:Removing cephadm ... 2024-09-20T20:04:14.929 DEBUG:teuthology.orchestra.run.smithi094:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-20T20:04:14.935 DEBUG:teuthology.orchestra.run.smithi110:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-20T20:04:14.940 INFO:tasks.cephadm:Teardown complete 2024-09-20T20:04:14.940 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa/tasks/cephadm.py", line 810, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi094 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 -v bootstrap --fsid 1e7890e4-778b-11ef-baf5-efdc52797490 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.94 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa/tasks/cephadm.py", line 2334, in task with contextutil.nested( File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.10/contextlib.py", line 153, in __exit__ self.gen.throw(typ, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa/tasks/cephadm.py", line 1962, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa/tasks/cephadm.py", line 897, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/daemon/cephadmunit.py", line 167, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi094 with status 5: 'sudo systemctl stop ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094' 2024-09-20T20:04:15.113 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=1947a692eb7f45888f6b729dee275a95 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa/tasks/cephadm.py", line 810, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi094 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e8baca1eac6c3c9c88bf2ea4493e448bd54936a7 -v bootstrap --fsid 1e7890e4-778b-11ef-baf5-efdc52797490 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.94 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa/tasks/cephadm.py", line 2334, in task with contextutil.nested( File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.10/contextlib.py", line 153, in __exit__ self.gen.throw(typ, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa/tasks/cephadm.py", line 1962, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_e8baca1eac6c3c9c88bf2ea4493e448bd54936a7/qa/tasks/cephadm.py", line 897, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/daemon/cephadmunit.py", line 167, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi094 with status 5: 'sudo systemctl stop ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094' 2024-09-20T20:04:15.117 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-20T20:04:15.133 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-09-20T20:04:15.139 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi094:/dev/vg_nvme/lv_1... 2024-09-20T20:04:15.140 DEBUG:teuthology.orchestra.run.smithi094:> sudo nvme disconnect -n lv_1 2024-09-20T20:04:15.408 INFO:teuthology.orchestra.run.smithi094.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-20T20:04:15.409 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T20:04:15.409 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi094:/dev/vg_nvme/lv_2... 2024-09-20T20:04:15.410 DEBUG:teuthology.orchestra.run.smithi094:> sudo nvme disconnect -n lv_2 2024-09-20T20:04:15.652 INFO:teuthology.orchestra.run.smithi094.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-20T20:04:15.653 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T20:04:15.654 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi094:/dev/vg_nvme/lv_3... 2024-09-20T20:04:15.654 DEBUG:teuthology.orchestra.run.smithi094:> sudo nvme disconnect -n lv_3 2024-09-20T20:04:15.904 INFO:teuthology.orchestra.run.smithi094.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-20T20:04:15.905 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T20:04:15.905 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi094:/dev/vg_nvme/lv_4... 2024-09-20T20:04:15.905 DEBUG:teuthology.orchestra.run.smithi094:> sudo nvme disconnect -n lv_4 2024-09-20T20:04:16.164 INFO:teuthology.orchestra.run.smithi094.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-20T20:04:16.165 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T20:04:16.165 DEBUG:teuthology.orchestra.run.smithi094:> set -ex 2024-09-20T20:04:16.166 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd of=/scratch_devs 2024-09-20T20:04:16.179 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi110:/dev/vg_nvme/lv_1... 2024-09-20T20:04:16.179 DEBUG:teuthology.orchestra.run.smithi110:> sudo nvme disconnect -n lv_1 2024-09-20T20:04:16.430 INFO:teuthology.orchestra.run.smithi110.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-20T20:04:16.431 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T20:04:16.432 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi110:/dev/vg_nvme/lv_2... 2024-09-20T20:04:16.432 DEBUG:teuthology.orchestra.run.smithi110:> sudo nvme disconnect -n lv_2 2024-09-20T20:04:16.670 INFO:teuthology.orchestra.run.smithi110.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-20T20:04:16.671 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T20:04:16.671 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi110:/dev/vg_nvme/lv_3... 2024-09-20T20:04:16.671 DEBUG:teuthology.orchestra.run.smithi110:> sudo nvme disconnect -n lv_3 2024-09-20T20:04:16.918 INFO:teuthology.orchestra.run.smithi110.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-20T20:04:16.919 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T20:04:16.919 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi110:/dev/vg_nvme/lv_4... 2024-09-20T20:04:16.920 DEBUG:teuthology.orchestra.run.smithi110:> sudo nvme disconnect -n lv_4 2024-09-20T20:04:17.190 INFO:teuthology.orchestra.run.smithi110.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-20T20:04:17.191 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T20:04:17.191 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-09-20T20:04:17.191 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd of=/scratch_devs 2024-09-20T20:04:17.205 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-20T20:04:17.221 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-20T20:04:17.221 DEBUG:teuthology.orchestra.run.smithi094:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-20T20:04:17.224 DEBUG:teuthology.orchestra.run.smithi110:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-20T20:04:17.235 INFO:teuthology.orchestra.run.smithi094.stdout: remote refid st t when poll reach delay offset jitter 2024-09-20T20:04:17.235 INFO:teuthology.orchestra.run.smithi094.stdout:============================================================================== 2024-09-20T20:04:17.235 INFO:teuthology.orchestra.run.smithi094.stdout: hv01.front.sepi 67.205.162.81 3 u 42 64 7 0.112 -1.025 0.747 2024-09-20T20:04:17.235 INFO:teuthology.orchestra.run.smithi094.stdout: hv02.front.sepi 96.245.170.99 3 u 42 64 7 0.120 -0.927 0.638 2024-09-20T20:04:17.235 INFO:teuthology.orchestra.run.smithi094.stdout: hv03.front.sepi 74.6.168.72 3 u 40 64 7 0.140 +1.239 0.648 2024-09-20T20:04:17.235 INFO:teuthology.orchestra.run.smithi094.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T20:04:17.260 INFO:teuthology.orchestra.run.smithi110.stdout: remote refid st t when poll reach delay offset jitter 2024-09-20T20:04:17.260 INFO:teuthology.orchestra.run.smithi110.stdout:============================================================================== 2024-09-20T20:04:17.261 INFO:teuthology.orchestra.run.smithi110.stdout: hv01.front.sepi 67.205.162.81 3 u 42 64 7 0.138 -1.126 0.812 2024-09-20T20:04:17.261 INFO:teuthology.orchestra.run.smithi110.stdout: hv02.front.sepi 96.245.170.99 3 u 44 64 7 0.106 -1.041 0.603 2024-09-20T20:04:17.261 INFO:teuthology.orchestra.run.smithi110.stdout: hv03.front.sepi 74.6.168.72 3 u 39 64 7 0.109 +1.111 0.814 2024-09-20T20:04:17.261 INFO:teuthology.orchestra.run.smithi110.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T20:04:17.262 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-20T20:04:17.270 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-20T20:04:17.271 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-20T20:04:17.278 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-20T20:04:17.286 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-20T20:04:17.297 INFO:teuthology.task.internal:Duration was 626.821475 seconds 2024-09-20T20:04:17.298 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-20T20:04:17.306 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-20T20:04:17.306 DEBUG:teuthology.orchestra.run.smithi094:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-20T20:04:17.309 DEBUG:teuthology.orchestra.run.smithi110:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-20T20:04:17.344 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-20T20:04:17.345 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi094.front.sepia.ceph.com 2024-09-20T20:04:17.345 DEBUG:teuthology.orchestra.run.smithi094:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-20T20:04:17.397 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi110.front.sepia.ceph.com 2024-09-20T20:04:17.397 DEBUG:teuthology.orchestra.run.smithi110:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-20T20:04:17.407 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-20T20:04:17.408 DEBUG:teuthology.orchestra.run.smithi094:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-20T20:04:17.441 DEBUG:teuthology.orchestra.run.smithi110:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-20T20:04:17.475 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-20T20:04:17.475 DEBUG:teuthology.orchestra.run.smithi094:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-20T20:04:17.517 DEBUG:teuthology.orchestra.run.smithi110:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-20T20:04:17.584 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-20T20:04:17.593 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-20T20:04:17.593 DEBUG:teuthology.orchestra.run.smithi094:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-20T20:04:17.605 DEBUG:teuthology.orchestra.run.smithi110:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-20T20:04:17.617 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-20T20:04:17.632 DEBUG:teuthology.orchestra.run.smithi094:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-20T20:04:17.648 DEBUG:teuthology.orchestra.run.smithi110:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-20T20:04:17.656 INFO:teuthology.orchestra.run.smithi094.stdout:kernel.core_pattern = core 2024-09-20T20:04:17.670 INFO:teuthology.orchestra.run.smithi110.stdout:kernel.core_pattern = core 2024-09-20T20:04:17.700 DEBUG:teuthology.orchestra.run.smithi094:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-20T20:04:17.727 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T20:04:17.728 DEBUG:teuthology.orchestra.run.smithi110:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-20T20:04:17.744 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T20:04:17.745 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-20T20:04:17.755 INFO:teuthology.task.internal:Transferring archived files... 2024-09-20T20:04:17.756 DEBUG:teuthology.misc:Transferring archived files from smithi094:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-09-20_18:25:04-orch:cephadm-wip-adk-testing-2024-09-20-0910-distro-default-smithi/7912850/remote/smithi094 2024-09-20T20:04:17.756 DEBUG:teuthology.orchestra.run.smithi094:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-20T20:04:17.793 DEBUG:teuthology.misc:Transferring archived files from smithi110:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-09-20_18:25:04-orch:cephadm-wip-adk-testing-2024-09-20-0910-distro-default-smithi/7912850/remote/smithi110 2024-09-20T20:04:17.793 DEBUG:teuthology.orchestra.run.smithi110:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-20T20:04:17.813 INFO:teuthology.task.internal:Removing archive directory... 2024-09-20T20:04:17.814 DEBUG:teuthology.orchestra.run.smithi094:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-20T20:04:17.837 DEBUG:teuthology.orchestra.run.smithi110:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-20T20:04:17.857 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-20T20:04:17.868 INFO:teuthology.task.internal:Not uploading archives. 2024-09-20T20:04:17.868 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-20T20:04:17.877 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-20T20:04:17.878 DEBUG:teuthology.orchestra.run.smithi094:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-20T20:04:17.885 DEBUG:teuthology.orchestra.run.smithi110:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-20T20:04:17.888 INFO:teuthology.orchestra.run.smithi094.stdout: 658623 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 20 20:04 /home/ubuntu/cephtest 2024-09-20T20:04:17.906 INFO:teuthology.orchestra.run.smithi110.stdout: 658463 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 20 20:04 /home/ubuntu/cephtest 2024-09-20T20:04:17.907 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-20T20:04:17.917 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-20T20:04:17.942 INFO:teuthology.run:Summary data: description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 626.8214750289917 failure_reason: 'Command failed on smithi094 with status 5: ''sudo systemctl stop ceph-1e7890e4-778b-11ef-baf5-efdc52797490@mon.smithi094''' owner: scheduled_adking@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=1947a692eb7f45888f6b729dee275a95 status: fail success: false 2024-09-20T20:04:17.942 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-20T20:04:18.017 INFO:teuthology.run:FAIL