2024-09-17T01:10:35.077 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-17T01:10:35.093 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T01:10:35.165 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7908028 branch: squid description: orch/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7908028' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: squid ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN - mons down - mon down - out of quorum - CEPHADM_STRAY_HOST - CEPHADM_STRAY_DAEMON - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: c2ddf9721ef254645201cdbabd9c8f49c30a586f selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 - scontext=system_u:system_r:getty_t:s0 workunit: branch: squid sha1: e20bff7d16f5b09c58ead9548e8cf98cf87ee227 owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 599 sha1: c2ddf9721ef254645201cdbabd9c8f49c30a586f sleep_before_teardown: 0 subset: 33/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_e20bff7d16f5b09c58ead9548e8cf98cf87ee227/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: e20bff7d16f5b09c58ead9548e8cf98cf87ee227 targets: smithi047.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCPP6jzYzdZkKWm2xeGoqKudymqE3Pqv0S76VKhTMjS1VJ5u0bpTwix6hZyxSKdLOy5vCx+jnFCEFa0hyyNZmUE= smithi160.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPOFt15/wteKKnAsv0Tb+ForvoS7xjh4SHkh+6XoZZ1n5d1kJ2R3tm/tGrzWm0VWjWSbuLvMIHGOWSPV++rfd4Y= smithi191.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBG9Xkm8WzZbXDci2u8m3ATaya+xIeNHVRAGHqgNrByTEvB7unFpwpdqRfj9ql5wdWr/30NHU9qEL/5RWLK2o5c8= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install nvmetcli nvme-cli -y - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-16_21:08:04 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-17T01:10:35.165 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_e20bff7d16f5b09c58ead9548e8cf98cf87ee227/qa; will attempt to use it 2024-09-17T01:10:35.166 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_e20bff7d16f5b09c58ead9548e8cf98cf87ee227/qa/tasks 2024-09-17T01:10:35.166 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-17T01:10:35.168 INFO:teuthology.task.internal:Checking packages... 2024-09-17T01:10:35.190 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'c2ddf9721ef254645201cdbabd9c8f49c30a586f' 2024-09-17T01:10:35.190 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-17T01:10:35.190 INFO:teuthology.packaging:ref: None 2024-09-17T01:10:35.190 INFO:teuthology.packaging:tag: None 2024-09-17T01:10:35.190 INFO:teuthology.packaging:branch: squid 2024-09-17T01:10:35.190 INFO:teuthology.packaging:sha1: c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T01:10:35.190 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=squid 2024-09-17T01:10:35.407 INFO:teuthology.task.internal:Found packages for ceph version 19.2.0-0 2024-09-17T01:10:35.409 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-17T01:10:35.415 INFO:teuthology.task.internal:no buildpackages task found 2024-09-17T01:10:35.415 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-17T01:10:35.437 INFO:teuthology.task.internal:Saving configuration 2024-09-17T01:10:35.450 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-17T01:10:35.457 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-17T01:10:35.483 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi047.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7908028', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-17 01:05:30.883396', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCPP6jzYzdZkKWm2xeGoqKudymqE3Pqv0S76VKhTMjS1VJ5u0bpTwix6hZyxSKdLOy5vCx+jnFCEFa0hyyNZmUE='} 2024-09-17T01:10:35.505 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi160.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7908028', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-17 01:05:30.881613', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPOFt15/wteKKnAsv0Tb+ForvoS7xjh4SHkh+6XoZZ1n5d1kJ2R3tm/tGrzWm0VWjWSbuLvMIHGOWSPV++rfd4Y='} 2024-09-17T01:10:35.529 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi191.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7908028', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-17 01:05:30.884903', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBG9Xkm8WzZbXDci2u8m3ATaya+xIeNHVRAGHqgNrByTEvB7unFpwpdqRfj9ql5wdWr/30NHU9qEL/5RWLK2o5c8='} 2024-09-17T01:10:35.529 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-17T01:10:35.535 INFO:teuthology.task.internal:roles: ubuntu@smithi047.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-17T01:10:35.535 INFO:teuthology.task.internal:roles: ubuntu@smithi160.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-17T01:10:35.535 INFO:teuthology.task.internal:roles: ubuntu@smithi191.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-17T01:10:35.535 INFO:teuthology.run_tasks:Running task console_log... 2024-09-17T01:10:35.617 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fdbb751fac0>, signals=[15]) 2024-09-17T01:10:35.617 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-17T01:10:35.623 INFO:teuthology.task.internal:Opening connections... 2024-09-17T01:10:35.623 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi047.front.sepia.ceph.com 2024-09-17T01:10:35.624 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi047.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:10:35.703 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi160.front.sepia.ceph.com 2024-09-17T01:10:35.704 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:10:35.780 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi191.front.sepia.ceph.com 2024-09-17T01:10:35.781 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:10:35.855 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-17T01:10:35.861 DEBUG:teuthology.orchestra.run.smithi047:> uname -m 2024-09-17T01:10:35.880 INFO:teuthology.orchestra.run.smithi047.stdout:x86_64 2024-09-17T01:10:35.880 DEBUG:teuthology.orchestra.run.smithi047:> cat /etc/os-release 2024-09-17T01:10:35.938 INFO:teuthology.orchestra.run.smithi047.stdout:NAME="CentOS Stream" 2024-09-17T01:10:35.938 INFO:teuthology.orchestra.run.smithi047.stdout:VERSION="9" 2024-09-17T01:10:35.938 INFO:teuthology.orchestra.run.smithi047.stdout:ID="centos" 2024-09-17T01:10:35.938 INFO:teuthology.orchestra.run.smithi047.stdout:ID_LIKE="rhel fedora" 2024-09-17T01:10:35.938 INFO:teuthology.orchestra.run.smithi047.stdout:VERSION_ID="9" 2024-09-17T01:10:35.938 INFO:teuthology.orchestra.run.smithi047.stdout:PLATFORM_ID="platform:el9" 2024-09-17T01:10:35.938 INFO:teuthology.orchestra.run.smithi047.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T01:10:35.938 INFO:teuthology.orchestra.run.smithi047.stdout:ANSI_COLOR="0;31" 2024-09-17T01:10:35.938 INFO:teuthology.orchestra.run.smithi047.stdout:LOGO="fedora-logo-icon" 2024-09-17T01:10:35.938 INFO:teuthology.orchestra.run.smithi047.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T01:10:35.938 INFO:teuthology.orchestra.run.smithi047.stdout:HOME_URL="https://centos.org/" 2024-09-17T01:10:35.938 INFO:teuthology.orchestra.run.smithi047.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T01:10:35.939 INFO:teuthology.orchestra.run.smithi047.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T01:10:35.939 INFO:teuthology.orchestra.run.smithi047.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T01:10:35.939 INFO:teuthology.lock.ops:Updating smithi047.front.sepia.ceph.com on lock server 2024-09-17T01:10:35.959 DEBUG:teuthology.orchestra.run.smithi160:> uname -m 2024-09-17T01:10:35.978 INFO:teuthology.orchestra.run.smithi160.stdout:x86_64 2024-09-17T01:10:35.979 DEBUG:teuthology.orchestra.run.smithi160:> cat /etc/os-release 2024-09-17T01:10:36.037 INFO:teuthology.orchestra.run.smithi160.stdout:NAME="CentOS Stream" 2024-09-17T01:10:36.037 INFO:teuthology.orchestra.run.smithi160.stdout:VERSION="9" 2024-09-17T01:10:36.037 INFO:teuthology.orchestra.run.smithi160.stdout:ID="centos" 2024-09-17T01:10:36.037 INFO:teuthology.orchestra.run.smithi160.stdout:ID_LIKE="rhel fedora" 2024-09-17T01:10:36.037 INFO:teuthology.orchestra.run.smithi160.stdout:VERSION_ID="9" 2024-09-17T01:10:36.037 INFO:teuthology.orchestra.run.smithi160.stdout:PLATFORM_ID="platform:el9" 2024-09-17T01:10:36.038 INFO:teuthology.orchestra.run.smithi160.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T01:10:36.038 INFO:teuthology.orchestra.run.smithi160.stdout:ANSI_COLOR="0;31" 2024-09-17T01:10:36.038 INFO:teuthology.orchestra.run.smithi160.stdout:LOGO="fedora-logo-icon" 2024-09-17T01:10:36.038 INFO:teuthology.orchestra.run.smithi160.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T01:10:36.038 INFO:teuthology.orchestra.run.smithi160.stdout:HOME_URL="https://centos.org/" 2024-09-17T01:10:36.038 INFO:teuthology.orchestra.run.smithi160.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T01:10:36.038 INFO:teuthology.orchestra.run.smithi160.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T01:10:36.038 INFO:teuthology.orchestra.run.smithi160.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T01:10:36.038 INFO:teuthology.lock.ops:Updating smithi160.front.sepia.ceph.com on lock server 2024-09-17T01:10:36.059 DEBUG:teuthology.orchestra.run.smithi191:> uname -m 2024-09-17T01:10:36.078 INFO:teuthology.orchestra.run.smithi191.stdout:x86_64 2024-09-17T01:10:36.078 DEBUG:teuthology.orchestra.run.smithi191:> cat /etc/os-release 2024-09-17T01:10:36.135 INFO:teuthology.orchestra.run.smithi191.stdout:NAME="CentOS Stream" 2024-09-17T01:10:36.136 INFO:teuthology.orchestra.run.smithi191.stdout:VERSION="9" 2024-09-17T01:10:36.136 INFO:teuthology.orchestra.run.smithi191.stdout:ID="centos" 2024-09-17T01:10:36.136 INFO:teuthology.orchestra.run.smithi191.stdout:ID_LIKE="rhel fedora" 2024-09-17T01:10:36.136 INFO:teuthology.orchestra.run.smithi191.stdout:VERSION_ID="9" 2024-09-17T01:10:36.136 INFO:teuthology.orchestra.run.smithi191.stdout:PLATFORM_ID="platform:el9" 2024-09-17T01:10:36.136 INFO:teuthology.orchestra.run.smithi191.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T01:10:36.136 INFO:teuthology.orchestra.run.smithi191.stdout:ANSI_COLOR="0;31" 2024-09-17T01:10:36.136 INFO:teuthology.orchestra.run.smithi191.stdout:LOGO="fedora-logo-icon" 2024-09-17T01:10:36.136 INFO:teuthology.orchestra.run.smithi191.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T01:10:36.136 INFO:teuthology.orchestra.run.smithi191.stdout:HOME_URL="https://centos.org/" 2024-09-17T01:10:36.136 INFO:teuthology.orchestra.run.smithi191.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T01:10:36.137 INFO:teuthology.orchestra.run.smithi191.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T01:10:36.137 INFO:teuthology.orchestra.run.smithi191.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T01:10:36.137 INFO:teuthology.lock.ops:Updating smithi191.front.sepia.ceph.com on lock server 2024-09-17T01:10:36.160 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-17T01:10:36.169 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-17T01:10:36.176 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-17T01:10:36.176 DEBUG:teuthology.orchestra.run.smithi047:> test '!' -e /home/ubuntu/cephtest 2024-09-17T01:10:36.179 DEBUG:teuthology.orchestra.run.smithi160:> test '!' -e /home/ubuntu/cephtest 2024-09-17T01:10:36.181 DEBUG:teuthology.orchestra.run.smithi191:> test '!' -e /home/ubuntu/cephtest 2024-09-17T01:10:36.197 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-17T01:10:36.206 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-17T01:10:36.207 DEBUG:teuthology.orchestra.run.smithi047:> test -z $(ls -A /var/lib/ceph) 2024-09-17T01:10:36.237 DEBUG:teuthology.orchestra.run.smithi160:> test -z $(ls -A /var/lib/ceph) 2024-09-17T01:10:36.239 DEBUG:teuthology.orchestra.run.smithi191:> test -z $(ls -A /var/lib/ceph) 2024-09-17T01:10:36.454 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-17T01:10:36.530 INFO:teuthology.run_tasks:Running task kernel... 2024-09-17T01:10:36.544 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-17T01:10:36.545 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-17T01:10:36.545 DEBUG:teuthology.orchestra.run.smithi047:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T01:10:36.546 DEBUG:teuthology.orchestra.run.smithi160:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T01:10:36.546 DEBUG:teuthology.orchestra.run.smithi191:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T01:10:36.563 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T01:10:36.563 DEBUG:teuthology.orchestra.run.smithi047:> uname -r 2024-09-17T01:10:36.564 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T01:10:36.564 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T01:10:36.565 DEBUG:teuthology.orchestra.run.smithi191:> uname -r 2024-09-17T01:10:36.565 DEBUG:teuthology.orchestra.run.smithi160:> uname -r 2024-09-17T01:10:36.621 INFO:teuthology.orchestra.run.smithi047.stdout:5.14.0-503.el9.x86_64 2024-09-17T01:10:36.621 INFO:teuthology.task.kernel:Running kernel on smithi047: 5.14.0-503.el9.x86_64 2024-09-17T01:10:36.621 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum install -y kernel 2024-09-17T01:10:36.623 INFO:teuthology.orchestra.run.smithi191.stdout:5.14.0-503.el9.x86_64 2024-09-17T01:10:36.624 INFO:teuthology.task.kernel:Running kernel on smithi191: 5.14.0-503.el9.x86_64 2024-09-17T01:10:36.624 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum install -y kernel 2024-09-17T01:10:36.625 INFO:teuthology.orchestra.run.smithi160.stdout:5.14.0-503.el9.x86_64 2024-09-17T01:10:36.625 INFO:teuthology.task.kernel:Running kernel on smithi160: 5.14.0-503.el9.x86_64 2024-09-17T01:10:36.625 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum install -y kernel 2024-09-17T01:10:40.190 INFO:teuthology.orchestra.run.smithi047.stdout:CentOS Stream 9 - BaseOS 4.4 MB/s | 8.3 MB 00:01 2024-09-17T01:10:40.456 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - BaseOS 4.1 MB/s | 8.3 MB 00:02 2024-09-17T01:10:40.699 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - BaseOS 3.6 MB/s | 8.3 MB 00:02 2024-09-17T01:10:42.310 INFO:teuthology.orchestra.run.smithi047.stdout:CentOS Stream 9 - AppStream 21 MB/s | 20 MB 00:00 2024-09-17T01:10:45.716 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - AppStream 4.8 MB/s | 20 MB 00:04 2024-09-17T01:10:47.501 INFO:teuthology.orchestra.run.smithi047.stdout:CentOS Stream 9 - CRB 5.0 MB/s | 6.5 MB 00:01 2024-09-17T01:10:49.077 INFO:teuthology.orchestra.run.smithi047.stdout:CentOS Stream 9 - Extras packages 57 kB/s | 19 kB 00:00 2024-09-17T01:10:50.281 INFO:teuthology.orchestra.run.smithi047.stdout:Extra Packages for Enterprise Linux 21 MB/s | 23 MB 00:01 2024-09-17T01:10:52.261 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - CRB 2.4 MB/s | 6.5 MB 00:02 2024-09-17T01:10:53.459 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - AppStream 1.7 MB/s | 20 MB 00:11 2024-09-17T01:10:53.900 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - Extras packages 45 kB/s | 19 kB 00:00 2024-09-17T01:10:55.041 INFO:teuthology.orchestra.run.smithi191.stdout:Extra Packages for Enterprise Linux 22 MB/s | 23 MB 00:01 2024-09-17T01:10:55.887 INFO:teuthology.orchestra.run.smithi047.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-09-17T01:10:57.952 INFO:teuthology.orchestra.run.smithi047.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T01:10:57.952 INFO:teuthology.orchestra.run.smithi047.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T01:10:58.052 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:10:58.070 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:10:58.070 INFO:teuthology.orchestra.run.smithi047.stdout: Package Architecture Version Repository Size 2024-09-17T01:10:58.070 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:10:58.070 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:10:58.070 INFO:teuthology.orchestra.run.smithi047.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T01:10:58.070 INFO:teuthology.orchestra.run.smithi047.stdout:Installing dependencies: 2024-09-17T01:10:58.071 INFO:teuthology.orchestra.run.smithi047.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T01:10:58.071 INFO:teuthology.orchestra.run.smithi047.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T01:10:58.071 INFO:teuthology.orchestra.run.smithi047.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T01:10:58.071 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:10:58.071 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:10:58.071 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:10:58.071 INFO:teuthology.orchestra.run.smithi047.stdout:Install 4 Packages 2024-09-17T01:10:58.071 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:10:58.072 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 79 M 2024-09-17T01:10:58.072 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 126 M 2024-09-17T01:10:58.072 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:10:58.255 INFO:teuthology.orchestra.run.smithi047.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 431 kB/s | 36 kB 00:00 2024-09-17T01:10:58.639 INFO:teuthology.orchestra.run.smithi047.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 34 MB/s | 16 MB 00:00 2024-09-17T01:10:59.205 INFO:teuthology.orchestra.run.smithi047.stdout:(3/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 33 MB/s | 35 MB 00:01 2024-09-17T01:10:59.267 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - CRB 3.2 MB/s | 6.5 MB 00:02 2024-09-17T01:10:59.606 INFO:teuthology.orchestra.run.smithi047.stdout:(4/4): kernel-modules-core-5.14.0-508.el9.x86_6 21 MB/s | 29 MB 00:01 2024-09-17T01:10:59.606 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:10:59.606 INFO:teuthology.orchestra.run.smithi047.stdout:Total 51 MB/s | 79 MB 00:01 2024-09-17T01:11:00.317 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:11:00.362 INFO:teuthology.orchestra.run.smithi191.stdout:lab-extras 45 kB/s | 1.7 kB 00:00 2024-09-17T01:11:00.695 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:11:00.695 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:11:00.759 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - Extras packages 95 kB/s | 19 kB 00:00 2024-09-17T01:11:01.680 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:11:01.680 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:11:01.740 INFO:teuthology.orchestra.run.smithi160.stdout:Extra Packages for Enterprise Linux 26 MB/s | 23 MB 00:00 2024-09-17T01:11:02.269 INFO:teuthology.orchestra.run.smithi191.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T01:11:02.269 INFO:teuthology.orchestra.run.smithi191.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T01:11:02.359 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:11:02.371 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:11:02.371 INFO:teuthology.orchestra.run.smithi191.stdout: Package Architecture Version Repository Size 2024-09-17T01:11:02.371 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:11:02.371 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:11:02.371 INFO:teuthology.orchestra.run.smithi191.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T01:11:02.371 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-17T01:11:02.371 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T01:11:02.371 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T01:11:02.371 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T01:11:02.372 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:11:02.372 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:11:02.372 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:11:02.372 INFO:teuthology.orchestra.run.smithi191.stdout:Install 4 Packages 2024-09-17T01:11:02.372 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:11:02.372 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 79 M 2024-09-17T01:11:02.372 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 126 M 2024-09-17T01:11:02.373 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:11:02.514 INFO:teuthology.orchestra.run.smithi191.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 307 kB/s | 36 kB 00:00 2024-09-17T01:11:04.268 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:11:04.935 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T01:11:05.016 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T01:11:05.464 INFO:teuthology.orchestra.run.smithi191.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 5.1 MB/s | 16 MB 00:03 2024-09-17T01:11:07.161 INFO:teuthology.orchestra.run.smithi160.stdout:lab-extras 32 kB/s | 1.7 kB 00:00 2024-09-17T01:11:07.464 INFO:teuthology.orchestra.run.smithi191.stdout:(3/4): kernel-modules-core-5.14.0-508.el9.x86_6 5.8 MB/s | 29 MB 00:04 2024-09-17T01:11:07.782 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T01:11:07.917 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T01:11:09.084 INFO:teuthology.orchestra.run.smithi160.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T01:11:09.084 INFO:teuthology.orchestra.run.smithi160.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T01:11:09.172 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:11:09.177 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:11:09.177 INFO:teuthology.orchestra.run.smithi160.stdout: Package Architecture Version Repository Size 2024-09-17T01:11:09.177 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:11:09.177 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:11:09.177 INFO:teuthology.orchestra.run.smithi160.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T01:11:09.177 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-17T01:11:09.177 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T01:11:09.178 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T01:11:09.178 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T01:11:09.178 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:11:09.178 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:11:09.178 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:11:09.178 INFO:teuthology.orchestra.run.smithi160.stdout:Install 4 Packages 2024-09-17T01:11:09.178 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:11:09.178 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 79 M 2024-09-17T01:11:09.178 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 126 M 2024-09-17T01:11:09.178 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:11:09.276 INFO:teuthology.orchestra.run.smithi160.stdout:[MIRROR] kernel-5.14.0-508.el9.x86_64.rpm: Status code: 404 for http://mirrors.iu13.net/centos-stream/9-stream/BaseOS/x86_64/os/Packages/kernel-5.14.0-508.el9.x86_64.rpm (IP: 206.82.17.213) 2024-09-17T01:11:09.277 INFO:teuthology.orchestra.run.smithi160.stdout:[MIRROR] kernel-core-5.14.0-508.el9.x86_64.rpm: Status code: 404 for http://mirrors.iu13.net/centos-stream/9-stream/BaseOS/x86_64/os/Packages/kernel-core-5.14.0-508.el9.x86_64.rpm (IP: 206.82.17.213) 2024-09-17T01:11:09.277 INFO:teuthology.orchestra.run.smithi160.stdout:[MIRROR] kernel-modules-5.14.0-508.el9.x86_64.rpm: Status code: 404 for http://mirrors.iu13.net/centos-stream/9-stream/BaseOS/x86_64/os/Packages/kernel-modules-5.14.0-508.el9.x86_64.rpm (IP: 206.82.17.213) 2024-09-17T01:11:09.351 INFO:teuthology.orchestra.run.smithi160.stdout:[MIRROR] kernel-5.14.0-508.el9.x86_64.rpm: Status code: 404 for https://mirrors.iu13.net/centos-stream/9-stream/BaseOS/x86_64/os/Packages/kernel-5.14.0-508.el9.x86_64.rpm (IP: 206.82.17.213) 2024-09-17T01:11:09.358 INFO:teuthology.orchestra.run.smithi160.stdout:[MIRROR] kernel-core-5.14.0-508.el9.x86_64.rpm: Status code: 404 for https://mirrors.iu13.net/centos-stream/9-stream/BaseOS/x86_64/os/Packages/kernel-core-5.14.0-508.el9.x86_64.rpm (IP: 206.82.17.213) 2024-09-17T01:11:09.362 INFO:teuthology.orchestra.run.smithi160.stdout:[MIRROR] kernel-modules-5.14.0-508.el9.x86_64.rpm: Status code: 404 for https://mirrors.iu13.net/centos-stream/9-stream/BaseOS/x86_64/os/Packages/kernel-modules-5.14.0-508.el9.x86_64.rpm (IP: 206.82.17.213) 2024-09-17T01:11:09.971 INFO:teuthology.orchestra.run.smithi160.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 49 kB/s | 36 kB 00:00 2024-09-17T01:11:09.993 INFO:teuthology.orchestra.run.smithi160.stdout:[MIRROR] kernel-modules-core-5.14.0-508.el9.x86_64.rpm: Status code: 404 for https://mirrors.iu13.net/centos-stream/9-stream/BaseOS/x86_64/os/Packages/kernel-modules-core-5.14.0-508.el9.x86_64.rpm (IP: 206.82.17.213) 2024-09-17T01:11:10.014 INFO:teuthology.orchestra.run.smithi160.stdout:[MIRROR] kernel-modules-core-5.14.0-508.el9.x86_64.rpm: Status code: 404 for http://mirrors.iu13.net/centos-stream/9-stream/BaseOS/x86_64/os/Packages/kernel-modules-core-5.14.0-508.el9.x86_64.rpm (IP: 206.82.17.213) 2024-09-17T01:11:10.979 INFO:teuthology.orchestra.run.smithi160.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 9.0 MB/s | 16 MB 00:01 2024-09-17T01:11:11.505 INFO:teuthology.orchestra.run.smithi191.stdout:(4/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 3.8 MB/s | 35 MB 00:09 2024-09-17T01:11:11.505 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:11:11.505 INFO:teuthology.orchestra.run.smithi191.stdout:Total 8.6 MB/s | 79 MB 00:09 2024-09-17T01:11:11.638 INFO:teuthology.orchestra.run.smithi160.stdout:(3/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 14 MB/s | 35 MB 00:02 2024-09-17T01:11:12.187 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:11:12.346 INFO:teuthology.orchestra.run.smithi160.stdout:(4/4): kernel-modules-core-5.14.0-508.el9.x86_6 12 MB/s | 29 MB 00:02 2024-09-17T01:11:12.350 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:11:12.350 INFO:teuthology.orchestra.run.smithi160.stdout:Total 25 MB/s | 79 MB 00:03 2024-09-17T01:11:12.536 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:11:12.536 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:11:13.037 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T01:11:13.042 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:11:13.077 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:11:13.386 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:11:13.387 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:11:13.476 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:11:13.476 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:11:14.367 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:11:14.368 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:11:15.929 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:11:16.603 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T01:11:16.688 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T01:11:16.828 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:11:17.524 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T01:11:17.613 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T01:11:18.217 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:11:19.445 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T01:11:19.601 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T01:11:20.390 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T01:11:20.524 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T01:11:24.450 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T01:11:24.494 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:11:25.334 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T01:11:25.466 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:11:29.378 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:11:30.349 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:11:57.609 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:11:57.653 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:11:58.061 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:11:58.061 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T01:11:58.061 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T01:11:58.061 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T01:11:58.911 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:11:58.911 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:11:58.911 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:11:58.911 INFO:teuthology.orchestra.run.smithi047.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T01:11:58.911 INFO:teuthology.orchestra.run.smithi047.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T01:11:58.911 INFO:teuthology.orchestra.run.smithi047.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T01:11:58.912 INFO:teuthology.orchestra.run.smithi047.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T01:11:58.912 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:11:58.912 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:11:59.259 DEBUG:teuthology.orchestra.run.smithi047:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T01:11:59.351 INFO:teuthology.orchestra.run.smithi047.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T01:11:59.351 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T01:11:59.351 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-508.el9.x86_64 2024-09-17T01:11:59.352 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T01:11:59.352 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T01:11:59.352 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-17T01:11:59.352 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi047.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T01:11:59.352 DEBUG:teuthology.orchestra.run.smithi047:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T01:11:59.411 INFO:teuthology.orchestra.run.smithi047.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T01:11:59.411 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T01:11:59.411 DEBUG:teuthology.orchestra.run.smithi047:> sudo rpm -qi grub2-tools 2024-09-17T01:11:59.446 INFO:teuthology.orchestra.run.smithi047.stdout:Name : grub2-tools 2024-09-17T01:11:59.446 INFO:teuthology.orchestra.run.smithi047.stdout:Epoch : 1 2024-09-17T01:11:59.446 INFO:teuthology.orchestra.run.smithi047.stdout:Version : 2.06 2024-09-17T01:11:59.446 INFO:teuthology.orchestra.run.smithi047.stdout:Release : 82.el9 2024-09-17T01:11:59.446 INFO:teuthology.orchestra.run.smithi047.stdout:Architecture: x86_64 2024-09-17T01:11:59.446 INFO:teuthology.orchestra.run.smithi047.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T01:11:59.446 INFO:teuthology.orchestra.run.smithi047.stdout:Group : Unspecified 2024-09-17T01:11:59.446 INFO:teuthology.orchestra.run.smithi047.stdout:Size : 8274670 2024-09-17T01:11:59.446 INFO:teuthology.orchestra.run.smithi047.stdout:License : GPLv3+ 2024-09-17T01:11:59.446 INFO:teuthology.orchestra.run.smithi047.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T01:11:59.447 INFO:teuthology.orchestra.run.smithi047.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T01:11:59.447 INFO:teuthology.orchestra.run.smithi047.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T01:11:59.447 INFO:teuthology.orchestra.run.smithi047.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T01:11:59.447 INFO:teuthology.orchestra.run.smithi047.stdout:Packager : builder@centos.org 2024-09-17T01:11:59.447 INFO:teuthology.orchestra.run.smithi047.stdout:Vendor : CentOS 2024-09-17T01:11:59.447 INFO:teuthology.orchestra.run.smithi047.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T01:11:59.447 INFO:teuthology.orchestra.run.smithi047.stdout:Summary : Support tools for GRUB. 2024-09-17T01:11:59.447 INFO:teuthology.orchestra.run.smithi047.stdout:Description : 2024-09-17T01:11:59.447 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:11:59.447 INFO:teuthology.orchestra.run.smithi047.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T01:11:59.447 INFO:teuthology.orchestra.run.smithi047.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T01:11:59.447 INFO:teuthology.orchestra.run.smithi047.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T01:11:59.447 INFO:teuthology.orchestra.run.smithi047.stdout:hardware devices. 2024-09-17T01:11:59.447 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:11:59.448 INFO:teuthology.orchestra.run.smithi047.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T01:11:59.448 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T01:11:59.448 INFO:teuthology.task.kernel:Updating grub on smithi047 to boot 5.14.0-508.el9.x86_64 2024-09-17T01:11:59.449 DEBUG:teuthology.orchestra.run.smithi047:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T01:12:00.125 INFO:teuthology.orchestra.run.smithi047.stderr:Generating grub configuration file ... 2024-09-17T01:12:01.432 INFO:teuthology.orchestra.run.smithi047.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T01:12:01.460 INFO:teuthology.orchestra.run.smithi047.stderr:done 2024-09-17T01:12:01.471 DEBUG:teuthology.orchestra.run.smithi047:> mktemp 2024-09-17T01:12:01.486 INFO:teuthology.orchestra.run.smithi047.stdout:/tmp/tmp.Fa4T5s86lS 2024-09-17T01:12:01.487 DEBUG:teuthology.orchestra.run.smithi047:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.Fa4T5s86lS 2024-09-17T01:12:01.552 DEBUG:teuthology.orchestra.run.smithi047:> sudo chmod 0666 /tmp/tmp.Fa4T5s86lS 2024-09-17T01:12:01.686 DEBUG:teuthology.orchestra.remote:smithi047:/tmp/tmp.Fa4T5s86lS is 6KB 2024-09-17T01:12:01.735 DEBUG:teuthology.orchestra.run.smithi047:> rm -fr /tmp/tmp.Fa4T5s86lS 2024-09-17T01:12:01.750 DEBUG:teuthology.orchestra.run.smithi047:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T01:12:01.818 INFO:teuthology.orchestra.run.smithi047.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T01:12:01.819 INFO:teuthology.orchestra.run.smithi047.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T01:12:01.819 INFO:teuthology.orchestra.run.smithi047.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T01:12:01.819 INFO:teuthology.orchestra.run.smithi047.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T01:12:01.820 DEBUG:teuthology.orchestra.run.smithi047:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T01:12:01.977 DEBUG:teuthology.orchestra.run.smithi047:> sudo shutdown -r now 2024-09-17T01:12:07.882 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:12:07.921 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:12:08.303 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:12:08.304 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T01:12:08.304 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T01:12:08.304 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T01:12:08.566 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:12:08.611 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:12:08.954 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:12:08.954 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T01:12:08.954 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T01:12:08.954 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T01:12:09.182 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:12:09.183 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:12:09.183 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:12:09.183 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T01:12:09.183 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T01:12:09.183 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T01:12:09.183 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T01:12:09.183 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:12:09.183 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:12:09.545 DEBUG:teuthology.orchestra.run.smithi191:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T01:12:09.632 INFO:teuthology.orchestra.run.smithi191.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T01:12:09.633 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T01:12:09.633 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-508.el9.x86_64 2024-09-17T01:12:09.633 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T01:12:09.633 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T01:12:09.633 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-17T01:12:09.633 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi191.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T01:12:09.633 DEBUG:teuthology.orchestra.run.smithi191:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T01:12:09.692 INFO:teuthology.orchestra.run.smithi191.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T01:12:09.692 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T01:12:09.692 DEBUG:teuthology.orchestra.run.smithi191:> sudo rpm -qi grub2-tools 2024-09-17T01:12:09.724 INFO:teuthology.orchestra.run.smithi191.stdout:Name : grub2-tools 2024-09-17T01:12:09.724 INFO:teuthology.orchestra.run.smithi191.stdout:Epoch : 1 2024-09-17T01:12:09.724 INFO:teuthology.orchestra.run.smithi191.stdout:Version : 2.06 2024-09-17T01:12:09.724 INFO:teuthology.orchestra.run.smithi191.stdout:Release : 82.el9 2024-09-17T01:12:09.724 INFO:teuthology.orchestra.run.smithi191.stdout:Architecture: x86_64 2024-09-17T01:12:09.724 INFO:teuthology.orchestra.run.smithi191.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T01:12:09.724 INFO:teuthology.orchestra.run.smithi191.stdout:Group : Unspecified 2024-09-17T01:12:09.724 INFO:teuthology.orchestra.run.smithi191.stdout:Size : 8274670 2024-09-17T01:12:09.725 INFO:teuthology.orchestra.run.smithi191.stdout:License : GPLv3+ 2024-09-17T01:12:09.725 INFO:teuthology.orchestra.run.smithi191.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T01:12:09.725 INFO:teuthology.orchestra.run.smithi191.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T01:12:09.725 INFO:teuthology.orchestra.run.smithi191.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T01:12:09.725 INFO:teuthology.orchestra.run.smithi191.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T01:12:09.725 INFO:teuthology.orchestra.run.smithi191.stdout:Packager : builder@centos.org 2024-09-17T01:12:09.725 INFO:teuthology.orchestra.run.smithi191.stdout:Vendor : CentOS 2024-09-17T01:12:09.725 INFO:teuthology.orchestra.run.smithi191.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T01:12:09.725 INFO:teuthology.orchestra.run.smithi191.stdout:Summary : Support tools for GRUB. 2024-09-17T01:12:09.725 INFO:teuthology.orchestra.run.smithi191.stdout:Description : 2024-09-17T01:12:09.725 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:12:09.725 INFO:teuthology.orchestra.run.smithi191.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T01:12:09.725 INFO:teuthology.orchestra.run.smithi191.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T01:12:09.725 INFO:teuthology.orchestra.run.smithi191.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T01:12:09.726 INFO:teuthology.orchestra.run.smithi191.stdout:hardware devices. 2024-09-17T01:12:09.726 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:12:09.726 INFO:teuthology.orchestra.run.smithi191.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T01:12:09.727 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T01:12:09.727 INFO:teuthology.task.kernel:Updating grub on smithi191 to boot 5.14.0-508.el9.x86_64 2024-09-17T01:12:09.727 DEBUG:teuthology.orchestra.run.smithi191:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T01:12:09.807 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T01:12:09.807 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:12:09.807 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:12:09.808 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T01:12:09.808 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T01:12:09.808 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T01:12:09.808 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T01:12:09.808 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:12:09.808 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:12:10.145 DEBUG:teuthology.orchestra.run.smithi160:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T01:12:10.227 INFO:teuthology.orchestra.run.smithi160.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T01:12:10.228 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T01:12:10.228 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-508.el9.x86_64 2024-09-17T01:12:10.228 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T01:12:10.228 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T01:12:10.228 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-17T01:12:10.228 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi160.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T01:12:10.228 DEBUG:teuthology.orchestra.run.smithi160:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T01:12:10.286 INFO:teuthology.orchestra.run.smithi160.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T01:12:10.287 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T01:12:10.287 DEBUG:teuthology.orchestra.run.smithi160:> sudo rpm -qi grub2-tools 2024-09-17T01:12:10.319 INFO:teuthology.orchestra.run.smithi160.stdout:Name : grub2-tools 2024-09-17T01:12:10.319 INFO:teuthology.orchestra.run.smithi160.stdout:Epoch : 1 2024-09-17T01:12:10.319 INFO:teuthology.orchestra.run.smithi160.stdout:Version : 2.06 2024-09-17T01:12:10.319 INFO:teuthology.orchestra.run.smithi160.stdout:Release : 82.el9 2024-09-17T01:12:10.319 INFO:teuthology.orchestra.run.smithi160.stdout:Architecture: x86_64 2024-09-17T01:12:10.319 INFO:teuthology.orchestra.run.smithi160.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T01:12:10.319 INFO:teuthology.orchestra.run.smithi160.stdout:Group : Unspecified 2024-09-17T01:12:10.319 INFO:teuthology.orchestra.run.smithi160.stdout:Size : 8274670 2024-09-17T01:12:10.319 INFO:teuthology.orchestra.run.smithi160.stdout:License : GPLv3+ 2024-09-17T01:12:10.320 INFO:teuthology.orchestra.run.smithi160.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T01:12:10.320 INFO:teuthology.orchestra.run.smithi160.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T01:12:10.320 INFO:teuthology.orchestra.run.smithi160.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T01:12:10.320 INFO:teuthology.orchestra.run.smithi160.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T01:12:10.320 INFO:teuthology.orchestra.run.smithi160.stdout:Packager : builder@centos.org 2024-09-17T01:12:10.320 INFO:teuthology.orchestra.run.smithi160.stdout:Vendor : CentOS 2024-09-17T01:12:10.320 INFO:teuthology.orchestra.run.smithi160.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T01:12:10.320 INFO:teuthology.orchestra.run.smithi160.stdout:Summary : Support tools for GRUB. 2024-09-17T01:12:10.320 INFO:teuthology.orchestra.run.smithi160.stdout:Description : 2024-09-17T01:12:10.320 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:12:10.320 INFO:teuthology.orchestra.run.smithi160.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T01:12:10.320 INFO:teuthology.orchestra.run.smithi160.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T01:12:10.320 INFO:teuthology.orchestra.run.smithi160.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T01:12:10.320 INFO:teuthology.orchestra.run.smithi160.stdout:hardware devices. 2024-09-17T01:12:10.321 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:12:10.321 INFO:teuthology.orchestra.run.smithi160.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T01:12:10.321 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T01:12:10.322 INFO:teuthology.task.kernel:Updating grub on smithi160 to boot 5.14.0-508.el9.x86_64 2024-09-17T01:12:10.322 DEBUG:teuthology.orchestra.run.smithi160:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T01:12:10.354 INFO:teuthology.orchestra.run.smithi191.stderr:Generating grub configuration file ... 2024-09-17T01:12:10.941 INFO:teuthology.orchestra.run.smithi160.stderr:Generating grub configuration file ... 2024-09-17T01:12:11.674 INFO:teuthology.orchestra.run.smithi191.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T01:12:11.706 INFO:teuthology.orchestra.run.smithi191.stderr:done 2024-09-17T01:12:11.708 DEBUG:teuthology.orchestra.run.smithi191:> mktemp 2024-09-17T01:12:11.745 INFO:teuthology.orchestra.run.smithi191.stdout:/tmp/tmp.N8qXfFTfEO 2024-09-17T01:12:11.746 DEBUG:teuthology.orchestra.run.smithi191:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.N8qXfFTfEO 2024-09-17T01:12:11.812 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod 0666 /tmp/tmp.N8qXfFTfEO 2024-09-17T01:12:11.968 DEBUG:teuthology.orchestra.remote:smithi191:/tmp/tmp.N8qXfFTfEO is 6KB 2024-09-17T01:12:12.018 DEBUG:teuthology.orchestra.run.smithi191:> rm -fr /tmp/tmp.N8qXfFTfEO 2024-09-17T01:12:12.032 DEBUG:teuthology.orchestra.run.smithi191:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T01:12:12.095 INFO:teuthology.orchestra.run.smithi191.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T01:12:12.095 INFO:teuthology.orchestra.run.smithi191.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T01:12:12.095 INFO:teuthology.orchestra.run.smithi191.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T01:12:12.095 INFO:teuthology.orchestra.run.smithi191.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T01:12:12.096 DEBUG:teuthology.orchestra.run.smithi191:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T01:12:12.192 INFO:teuthology.orchestra.run.smithi160.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T01:12:12.224 INFO:teuthology.orchestra.run.smithi160.stderr:done 2024-09-17T01:12:12.231 DEBUG:teuthology.orchestra.run.smithi160:> mktemp 2024-09-17T01:12:12.247 INFO:teuthology.orchestra.run.smithi160.stdout:/tmp/tmp.aAGKgU9Pqs 2024-09-17T01:12:12.247 DEBUG:teuthology.orchestra.run.smithi160:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.aAGKgU9Pqs 2024-09-17T01:12:12.250 DEBUG:teuthology.orchestra.run.smithi191:> sudo shutdown -r now 2024-09-17T01:12:12.320 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod 0666 /tmp/tmp.aAGKgU9Pqs 2024-09-17T01:12:12.465 DEBUG:teuthology.orchestra.remote:smithi160:/tmp/tmp.aAGKgU9Pqs is 6KB 2024-09-17T01:12:12.515 DEBUG:teuthology.orchestra.run.smithi160:> rm -fr /tmp/tmp.aAGKgU9Pqs 2024-09-17T01:12:12.530 DEBUG:teuthology.orchestra.run.smithi160:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T01:12:12.592 INFO:teuthology.orchestra.run.smithi160.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T01:12:12.592 INFO:teuthology.orchestra.run.smithi160.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T01:12:12.592 INFO:teuthology.orchestra.run.smithi160.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T01:12:12.593 INFO:teuthology.orchestra.run.smithi160.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T01:12:12.594 DEBUG:teuthology.orchestra.run.smithi160:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T01:12:12.763 DEBUG:teuthology.orchestra.run.smithi160:> sudo shutdown -r now 2024-09-17T01:12:31.997 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-17T01:12:31.998 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi047.front.sepia.ceph.com' 2024-09-17T01:12:31.999 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi047.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:12:42.262 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-17T01:12:42.262 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-09-17T01:12:42.263 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:12:42.767 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-17T01:12:42.767 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-09-17T01:12:42.767 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:12:50.493 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.47 2024-09-17T01:12:59.501 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi047.front.sepia.ceph.com' 2024-09-17T01:12:59.502 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi047.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:13:00.733 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.191 2024-09-17T01:13:01.245 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.160 2024-09-17T01:13:02.561 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.47 2024-09-17T01:13:09.736 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-09-17T01:13:09.737 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:13:10.246 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-09-17T01:13:10.247 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:13:13.309 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.160 2024-09-17T01:13:14.563 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi047.front.sepia.ceph.com' 2024-09-17T01:13:14.563 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi047.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:13:25.321 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-09-17T01:13:25.321 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:13:43.745 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.160 2024-09-17T01:13:46.453 DEBUG:teuthology.orchestra.run.smithi047:> true 2024-09-17T01:13:46.777 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi047.front.sepia.ceph.com' 2024-09-17T01:13:46.777 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-508.el9.x86_64"... 2024-09-17T01:13:46.777 DEBUG:teuthology.orchestra.run.smithi047:> uname -r 2024-09-17T01:13:46.814 INFO:teuthology.orchestra.run.smithi047.stdout:5.14.0-508.el9.x86_64 2024-09-17T01:13:46.814 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-508.el9.x86_64 vs 5.14.0-508.el9.x86_64 2024-09-17T01:13:46.814 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T01:13:46.815 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T01:13:47.815 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-17T01:13:47.816 DEBUG:teuthology.orchestra.run.smithi047:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T01:13:47.950 INFO:teuthology.orchestra.run.smithi047.stdout:ttyS1 2024-09-17T01:13:47.982 DEBUG:teuthology.parallel:result is None 2024-09-17T01:13:58.746 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-09-17T01:13:58.747 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:13:59.292 DEBUG:teuthology.orchestra.run.smithi160:> true 2024-09-17T01:13:59.670 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-09-17T01:13:59.670 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-508.el9.x86_64"... 2024-09-17T01:13:59.670 DEBUG:teuthology.orchestra.run.smithi160:> uname -r 2024-09-17T01:13:59.685 INFO:teuthology.orchestra.run.smithi160.stdout:5.14.0-508.el9.x86_64 2024-09-17T01:13:59.685 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-508.el9.x86_64 vs 5.14.0-508.el9.x86_64 2024-09-17T01:13:59.685 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T01:13:59.685 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T01:14:00.686 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-17T01:14:00.686 DEBUG:teuthology.orchestra.run.smithi160:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T01:14:00.763 INFO:teuthology.orchestra.run.smithi160.stdout:ttyS1 2024-09-17T01:14:00.793 DEBUG:teuthology.parallel:result is None 2024-09-17T01:14:09.739 DEBUG:teuthology.orchestra.remote:timed out 2024-09-17T01:14:21.740 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-09-17T01:14:21.740 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:14:22.121 DEBUG:teuthology.orchestra.run.smithi191:> true 2024-09-17T01:14:22.484 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-09-17T01:14:22.484 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-508.el9.x86_64"... 2024-09-17T01:14:22.485 DEBUG:teuthology.orchestra.run.smithi191:> uname -r 2024-09-17T01:14:22.501 INFO:teuthology.orchestra.run.smithi191.stdout:5.14.0-508.el9.x86_64 2024-09-17T01:14:22.502 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-508.el9.x86_64 vs 5.14.0-508.el9.x86_64 2024-09-17T01:14:22.502 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T01:14:22.502 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T01:14:23.503 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-17T01:14:23.503 DEBUG:teuthology.orchestra.run.smithi191:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T01:14:23.579 INFO:teuthology.orchestra.run.smithi191.stdout:ttyS1 2024-09-17T01:14:23.600 DEBUG:teuthology.parallel:result is None 2024-09-17T01:14:23.600 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-17T01:14:23.608 INFO:teuthology.task.internal:Creating test directory... 2024-09-17T01:14:23.608 DEBUG:teuthology.orchestra.run.smithi047:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T01:14:23.611 DEBUG:teuthology.orchestra.run.smithi160:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T01:14:23.614 DEBUG:teuthology.orchestra.run.smithi191:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T01:14:23.633 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-17T01:14:23.639 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-17T01:14:23.651 INFO:teuthology.task.internal:Creating archive directory... 2024-09-17T01:14:23.651 DEBUG:teuthology.orchestra.run.smithi047:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T01:14:23.671 DEBUG:teuthology.orchestra.run.smithi160:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T01:14:23.674 DEBUG:teuthology.orchestra.run.smithi191:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T01:14:23.739 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-17T01:14:23.745 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-17T01:14:23.745 DEBUG:teuthology.orchestra.run.smithi047:> 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-17T01:14:23.748 DEBUG:teuthology.orchestra.run.smithi160:> 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-17T01:14:23.750 DEBUG:teuthology.orchestra.run.smithi191:> 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-17T01:14:23.781 INFO:teuthology.orchestra.run.smithi160.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T01:14:23.782 INFO:teuthology.orchestra.run.smithi047.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T01:14:23.791 INFO:teuthology.orchestra.run.smithi191.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T01:14:23.792 INFO:teuthology.orchestra.run.smithi160.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T01:14:23.795 INFO:teuthology.orchestra.run.smithi047.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T01:14:23.802 INFO:teuthology.orchestra.run.smithi191.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T01:14:23.804 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-17T01:14:23.811 INFO:teuthology.task.internal:Configuring sudo... 2024-09-17T01:14:23.811 DEBUG:teuthology.orchestra.run.smithi047:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T01:14:23.839 DEBUG:teuthology.orchestra.run.smithi160:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T01:14:23.842 DEBUG:teuthology.orchestra.run.smithi191:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T01:14:23.873 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-17T01:14:23.882 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-17T01:14:23.882 DEBUG:teuthology.orchestra.run.smithi047:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T01:14:23.909 DEBUG:teuthology.orchestra.run.smithi160:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T01:14:23.912 DEBUG:teuthology.orchestra.run.smithi191:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T01:14:23.930 DEBUG:teuthology.orchestra.run.smithi047:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T01:14:24.010 DEBUG:teuthology.orchestra.run.smithi047:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T01:14:24.063 DEBUG:teuthology.orchestra.run.smithi047:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T01:14:24.147 DEBUG:teuthology.orchestra.run.smithi047:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T01:14:24.191 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-09-17T01:14:24.191 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T01:14:24.258 DEBUG:teuthology.orchestra.run.smithi160:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T01:14:24.306 DEBUG:teuthology.orchestra.run.smithi160:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T01:14:24.358 DEBUG:teuthology.orchestra.run.smithi160:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T01:14:24.442 DEBUG:teuthology.orchestra.run.smithi160:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T01:14:24.485 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-17T01:14:24.485 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T01:14:24.552 DEBUG:teuthology.orchestra.run.smithi191:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T01:14:24.597 DEBUG:teuthology.orchestra.run.smithi191:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T01:14:24.656 DEBUG:teuthology.orchestra.run.smithi191:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T01:14:24.741 DEBUG:teuthology.orchestra.run.smithi191:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T01:14:24.784 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-17T01:14:24.785 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T01:14:24.852 DEBUG:teuthology.orchestra.run.smithi047:> sudo service rsyslog restart 2024-09-17T01:14:24.855 DEBUG:teuthology.orchestra.run.smithi160:> sudo service rsyslog restart 2024-09-17T01:14:24.858 DEBUG:teuthology.orchestra.run.smithi191:> sudo service rsyslog restart 2024-09-17T01:14:24.907 INFO:teuthology.orchestra.run.smithi160.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T01:14:24.918 INFO:teuthology.orchestra.run.smithi047.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T01:14:24.937 INFO:teuthology.orchestra.run.smithi191.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T01:14:25.416 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-17T01:14:25.424 INFO:teuthology.task.internal:Starting timer... 2024-09-17T01:14:25.424 INFO:teuthology.run_tasks:Running task pcp... 2024-09-17T01:14:25.459 INFO:teuthology.run_tasks:Running task selinux... 2024-09-17T01:14:25.467 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0', 'scontext=system_u:system_r:getty_t:s0']} 2024-09-17T01:14:25.468 DEBUG:teuthology.orchestra.run.smithi047:> sudo service auditd rotate 2024-09-17T01:14:25.528 INFO:teuthology.orchestra.run.smithi047.stdout:Rotating logs: 2024-09-17T01:14:25.530 DEBUG:teuthology.orchestra.run.smithi160:> sudo service auditd rotate 2024-09-17T01:14:25.596 INFO:teuthology.orchestra.run.smithi160.stdout:Rotating logs: 2024-09-17T01:14:25.598 DEBUG:teuthology.orchestra.run.smithi191:> sudo service auditd rotate 2024-09-17T01:14:25.642 INFO:teuthology.orchestra.run.smithi191.stdout:Rotating logs: 2024-09-17T01:14:25.644 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-17T01:14:25.644 DEBUG:teuthology.orchestra.run.smithi047:> /usr/sbin/getenforce 2024-09-17T01:14:25.670 INFO:teuthology.orchestra.run.smithi047.stdout:Permissive 2024-09-17T01:14:25.671 DEBUG:teuthology.orchestra.run.smithi160:> /usr/sbin/getenforce 2024-09-17T01:14:25.692 INFO:teuthology.orchestra.run.smithi160.stdout:Permissive 2024-09-17T01:14:25.692 DEBUG:teuthology.orchestra.run.smithi191:> /usr/sbin/getenforce 2024-09-17T01:14:25.718 INFO:teuthology.orchestra.run.smithi191.stdout:Permissive 2024-09-17T01:14:25.719 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi047.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi160.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi191.front.sepia.ceph.com': 'permissive'} 2024-09-17T01:14:25.719 DEBUG:teuthology.orchestra.run.smithi047:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-17T01:14:25.748 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T01:14:25.749 DEBUG:teuthology.orchestra.run.smithi160:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-17T01:14:25.778 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T01:14:25.779 DEBUG:teuthology.orchestra.run.smithi191:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-17T01:14:25.807 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T01:14:25.808 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-17T01:14:25.808 DEBUG:teuthology.orchestra.run.smithi047:> sudo /usr/sbin/setenforce permissive 2024-09-17T01:14:25.846 DEBUG:teuthology.orchestra.run.smithi160:> sudo /usr/sbin/setenforce permissive 2024-09-17T01:14:25.879 DEBUG:teuthology.orchestra.run.smithi191:> sudo /usr/sbin/setenforce permissive 2024-09-17T01:14:25.913 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-17T01:14:25.923 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-17T01:14:25.938 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-17T01:14:25.939 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi047.front.sepia.ceph.com,smithi160.front.sepia.ceph.com,smithi191.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-17T01:18:14.255 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi047.front.sepia.ceph.com'), Remote(name='ubuntu@smithi160.front.sepia.ceph.com'), Remote(name='ubuntu@smithi191.front.sepia.ceph.com')] 2024-09-17T01:18:14.257 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi047.front.sepia.ceph.com' 2024-09-17T01:18:14.258 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi047.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:18:14.337 DEBUG:teuthology.orchestra.run.smithi047:> true 2024-09-17T01:18:14.422 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi047.front.sepia.ceph.com' 2024-09-17T01:18:14.422 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-09-17T01:18:14.422 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:18:14.496 DEBUG:teuthology.orchestra.run.smithi160:> true 2024-09-17T01:18:14.576 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-09-17T01:18:14.577 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-09-17T01:18:14.577 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T01:18:14.652 DEBUG:teuthology.orchestra.run.smithi191:> true 2024-09-17T01:18:14.734 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-09-17T01:18:14.734 INFO:teuthology.run_tasks:Running task clock... 2024-09-17T01:18:14.746 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-17T01:18:14.747 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T01:18:14.747 DEBUG:teuthology.orchestra.run.smithi047:> 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-17T01:18:14.750 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T01:18:14.750 DEBUG:teuthology.orchestra.run.smithi160:> 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-17T01:18:14.753 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T01:18:14.753 DEBUG:teuthology.orchestra.run.smithi191:> 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-17T01:18:14.780 INFO:teuthology.orchestra.run.smithi160.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T01:18:14.782 INFO:teuthology.orchestra.run.smithi047.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T01:18:14.794 INFO:teuthology.orchestra.run.smithi160.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T01:18:14.799 INFO:teuthology.orchestra.run.smithi047.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T01:18:14.806 INFO:teuthology.orchestra.run.smithi191.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T01:18:14.818 INFO:teuthology.orchestra.run.smithi160.stderr:sudo: ntpd: command not found 2024-09-17T01:18:14.822 INFO:teuthology.orchestra.run.smithi191.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T01:18:14.826 INFO:teuthology.orchestra.run.smithi047.stderr:sudo: ntpd: command not found 2024-09-17T01:18:14.829 INFO:teuthology.orchestra.run.smithi160.stdout:506 Cannot talk to daemon 2024-09-17T01:18:14.839 INFO:teuthology.orchestra.run.smithi047.stdout:506 Cannot talk to daemon 2024-09-17T01:18:14.843 INFO:teuthology.orchestra.run.smithi160.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T01:18:14.849 INFO:teuthology.orchestra.run.smithi191.stderr:sudo: ntpd: command not found 2024-09-17T01:18:14.855 INFO:teuthology.orchestra.run.smithi047.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T01:18:14.857 INFO:teuthology.orchestra.run.smithi160.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T01:18:14.860 INFO:teuthology.orchestra.run.smithi191.stdout:506 Cannot talk to daemon 2024-09-17T01:18:14.870 INFO:teuthology.orchestra.run.smithi047.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T01:18:14.876 INFO:teuthology.orchestra.run.smithi191.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T01:18:14.890 INFO:teuthology.orchestra.run.smithi191.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T01:18:14.914 INFO:teuthology.orchestra.run.smithi160.stderr:bash: line 1: ntpq: command not found 2024-09-17T01:18:14.917 INFO:teuthology.orchestra.run.smithi160.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T01:18:14.917 INFO:teuthology.orchestra.run.smithi160.stdout:=============================================================================== 2024-09-17T01:18:14.917 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:18:14.917 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:18:14.918 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:18:14.918 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:18:14.927 INFO:teuthology.orchestra.run.smithi047.stderr:bash: line 1: ntpq: command not found 2024-09-17T01:18:14.931 INFO:teuthology.orchestra.run.smithi047.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T01:18:14.931 INFO:teuthology.orchestra.run.smithi047.stdout:=============================================================================== 2024-09-17T01:18:14.931 INFO:teuthology.orchestra.run.smithi047.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:18:14.931 INFO:teuthology.orchestra.run.smithi047.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:18:14.931 INFO:teuthology.orchestra.run.smithi047.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:18:14.931 INFO:teuthology.orchestra.run.smithi047.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:18:14.945 INFO:teuthology.orchestra.run.smithi191.stderr:bash: line 1: ntpq: command not found 2024-09-17T01:18:14.949 INFO:teuthology.orchestra.run.smithi191.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T01:18:14.949 INFO:teuthology.orchestra.run.smithi191.stdout:=============================================================================== 2024-09-17T01:18:14.949 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:18:14.949 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:18:14.949 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:18:14.949 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:18:14.950 INFO:teuthology.run_tasks:Running task pexec... 2024-09-17T01:18:14.959 INFO:teuthology.task.pexec:Executing custom commands... 2024-09-17T01:18:14.960 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi047.front.sepia.ceph.com 2024-09-17T01:18:14.960 DEBUG:teuthology.orchestra.run.smithi047:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T01:18:14.960 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi160.front.sepia.ceph.com 2024-09-17T01:18:14.960 DEBUG:teuthology.orchestra.run.smithi160:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T01:18:14.960 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi191.front.sepia.ceph.com 2024-09-17T01:18:14.961 DEBUG:teuthology.orchestra.run.smithi191:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T01:18:15.310 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:18:15.335 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:18:15.335 INFO:teuthology.orchestra.run.smithi160.stdout: Package Architecture Version Repository Size 2024-09-17T01:18:15.335 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:18:15.335 INFO:teuthology.orchestra.run.smithi160.stdout:Removing: 2024-09-17T01:18:15.335 INFO:teuthology.orchestra.run.smithi160.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T01:18:15.335 INFO:teuthology.orchestra.run.smithi160.stdout:Removing unused dependencies: 2024-09-17T01:18:15.335 INFO:teuthology.orchestra.run.smithi160.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T01:18:15.335 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:18:15.335 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:18:15.335 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:18:15.335 INFO:teuthology.orchestra.run.smithi160.stdout:Remove 2 Packages 2024-09-17T01:18:15.335 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:18:15.335 INFO:teuthology.orchestra.run.smithi160.stdout:Freed space: 5.5 M 2024-09-17T01:18:15.336 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:18:15.339 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:18:15.339 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:18:15.341 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:18:15.341 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:18:15.350 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:18:15.350 INFO:teuthology.orchestra.run.smithi191.stdout: Package Architecture Version Repository Size 2024-09-17T01:18:15.351 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:18:15.351 INFO:teuthology.orchestra.run.smithi191.stdout:Removing: 2024-09-17T01:18:15.351 INFO:teuthology.orchestra.run.smithi191.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T01:18:15.351 INFO:teuthology.orchestra.run.smithi191.stdout:Removing unused dependencies: 2024-09-17T01:18:15.351 INFO:teuthology.orchestra.run.smithi191.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T01:18:15.351 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:18:15.351 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:18:15.351 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:18:15.351 INFO:teuthology.orchestra.run.smithi191.stdout:Remove 2 Packages 2024-09-17T01:18:15.351 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:18:15.352 INFO:teuthology.orchestra.run.smithi191.stdout:Freed space: 5.5 M 2024-09-17T01:18:15.352 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:18:15.355 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:18:15.355 INFO:teuthology.orchestra.run.smithi047.stdout: Package Architecture Version Repository Size 2024-09-17T01:18:15.355 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:18:15.355 INFO:teuthology.orchestra.run.smithi047.stdout:Removing: 2024-09-17T01:18:15.355 INFO:teuthology.orchestra.run.smithi047.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T01:18:15.355 INFO:teuthology.orchestra.run.smithi047.stdout:Removing unused dependencies: 2024-09-17T01:18:15.355 INFO:teuthology.orchestra.run.smithi047.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T01:18:15.355 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:18:15.355 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:18:15.355 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:18:15.356 INFO:teuthology.orchestra.run.smithi047.stdout:Remove 2 Packages 2024-09-17T01:18:15.356 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:18:15.356 INFO:teuthology.orchestra.run.smithi047.stdout:Freed space: 5.5 M 2024-09-17T01:18:15.356 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:18:15.356 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:18:15.357 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:18:15.360 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:18:15.360 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:18:15.399 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:18:15.400 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:18:15.416 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:18:15.417 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:18:15.425 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:18:15.425 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:18:15.528 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:18:15.560 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:18:15.574 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:18:15.607 INFO:teuthology.orchestra.run.smithi160.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T01:18:15.645 INFO:teuthology.orchestra.run.smithi191.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T01:18:15.646 INFO:teuthology.orchestra.run.smithi047.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T01:18:15.679 INFO:teuthology.orchestra.run.smithi160.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T01:18:15.710 INFO:teuthology.orchestra.run.smithi191.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T01:18:15.726 INFO:teuthology.orchestra.run.smithi047.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T01:18:16.160 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T01:18:16.160 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T01:18:16.212 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T01:18:16.212 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T01:18:16.241 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T01:18:16.242 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T01:18:16.389 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T01:18:16.390 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:18:16.390 INFO:teuthology.orchestra.run.smithi160.stdout:Removed: 2024-09-17T01:18:16.390 INFO:teuthology.orchestra.run.smithi160.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T01:18:16.390 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:18:16.390 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:18:16.469 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T01:18:16.469 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:18:16.469 INFO:teuthology.orchestra.run.smithi047.stdout:Removed: 2024-09-17T01:18:16.469 INFO:teuthology.orchestra.run.smithi047.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T01:18:16.470 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:18:16.470 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:18:16.485 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T01:18:16.486 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:18:16.486 INFO:teuthology.orchestra.run.smithi191.stdout:Removed: 2024-09-17T01:18:16.486 INFO:teuthology.orchestra.run.smithi191.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T01:18:16.486 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:18:16.486 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:18:17.252 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:50 ago on Tue 17 Sep 2024 01:17:26 AM UTC. 2024-09-17T01:18:17.325 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:51 ago on Tue 17 Sep 2024 01:17:26 AM UTC. 2024-09-17T01:18:17.386 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:18:17.387 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:18:17.387 INFO:teuthology.orchestra.run.smithi160.stdout: Package Architecture Version Repository Size 2024-09-17T01:18:17.387 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:18:17.387 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:18:17.387 INFO:teuthology.orchestra.run.smithi160.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T01:18:17.387 INFO:teuthology.orchestra.run.smithi160.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T01:18:17.387 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-17T01:18:17.387 INFO:teuthology.orchestra.run.smithi160.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T01:18:17.387 INFO:teuthology.orchestra.run.smithi160.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T01:18:17.388 INFO:teuthology.orchestra.run.smithi160.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T01:18:17.388 INFO:teuthology.orchestra.run.smithi160.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T01:18:17.388 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:18:17.388 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:18:17.388 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:18:17.388 INFO:teuthology.orchestra.run.smithi160.stdout:Install 6 Packages 2024-09-17T01:18:17.388 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:18:17.399 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:00:48 ago on Tue 17 Sep 2024 01:17:29 AM UTC. 2024-09-17T01:18:17.401 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 2.0 M 2024-09-17T01:18:17.401 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 9.2 M 2024-09-17T01:18:17.401 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:18:17.463 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:18:17.463 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:18:17.463 INFO:teuthology.orchestra.run.smithi191.stdout: Package Architecture Version Repository Size 2024-09-17T01:18:17.463 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:18:17.463 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:18:17.464 INFO:teuthology.orchestra.run.smithi191.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T01:18:17.464 INFO:teuthology.orchestra.run.smithi191.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T01:18:17.464 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-17T01:18:17.464 INFO:teuthology.orchestra.run.smithi191.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T01:18:17.464 INFO:teuthology.orchestra.run.smithi191.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T01:18:17.464 INFO:teuthology.orchestra.run.smithi191.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T01:18:17.464 INFO:teuthology.orchestra.run.smithi191.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T01:18:17.464 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:18:17.464 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:18:17.464 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:18:17.464 INFO:teuthology.orchestra.run.smithi191.stdout:Install 6 Packages 2024-09-17T01:18:17.464 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:18:17.468 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 2.0 M 2024-09-17T01:18:17.468 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 9.2 M 2024-09-17T01:18:17.468 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:18:17.536 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:18:17.537 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:18:17.537 INFO:teuthology.orchestra.run.smithi047.stdout: Package Architecture Version Repository Size 2024-09-17T01:18:17.537 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:18:17.537 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:18:17.538 INFO:teuthology.orchestra.run.smithi047.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T01:18:17.538 INFO:teuthology.orchestra.run.smithi047.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T01:18:17.538 INFO:teuthology.orchestra.run.smithi047.stdout:Installing dependencies: 2024-09-17T01:18:17.538 INFO:teuthology.orchestra.run.smithi047.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T01:18:17.538 INFO:teuthology.orchestra.run.smithi047.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T01:18:17.538 INFO:teuthology.orchestra.run.smithi047.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T01:18:17.539 INFO:teuthology.orchestra.run.smithi047.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T01:18:17.539 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:18:17.539 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:18:17.539 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:18:17.539 INFO:teuthology.orchestra.run.smithi047.stdout:Install 6 Packages 2024-09-17T01:18:17.539 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:18:17.546 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 2.0 M 2024-09-17T01:18:17.546 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 9.2 M 2024-09-17T01:18:17.546 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:18:17.594 INFO:teuthology.orchestra.run.smithi160.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 313 kB/s | 44 kB 00:00 2024-09-17T01:18:17.619 INFO:teuthology.orchestra.run.smithi160.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 635 kB/s | 106 kB 00:00 2024-09-17T01:18:17.669 INFO:teuthology.orchestra.run.smithi160.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.6 MB/s | 84 kB 00:00 2024-09-17T01:18:17.695 INFO:teuthology.orchestra.run.smithi160.stdout:(4/6): python3-configshell-1.1.30-1.el9.noarch. 713 kB/s | 72 kB 00:00 2024-09-17T01:18:17.719 INFO:teuthology.orchestra.run.smithi047.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 340 kB/s | 44 kB 00:00 2024-09-17T01:18:17.744 INFO:teuthology.orchestra.run.smithi047.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 679 kB/s | 106 kB 00:00 2024-09-17T01:18:17.761 INFO:teuthology.orchestra.run.smithi160.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 2.9 MB/s | 906 kB 00:00 2024-09-17T01:18:17.812 INFO:teuthology.orchestra.run.smithi047.stdout:(3/6): python3-configshell-1.1.30-1.el9.noarch. 779 kB/s | 72 kB 00:00 2024-09-17T01:18:17.824 INFO:teuthology.orchestra.run.smithi191.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 472 kB/s | 44 kB 00:00 2024-09-17T01:18:17.836 INFO:teuthology.orchestra.run.smithi047.stdout:(4/6): python3-kmod-0.9-32.el9.x86_64.rpm 916 kB/s | 84 kB 00:00 2024-09-17T01:18:17.857 INFO:teuthology.orchestra.run.smithi191.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 830 kB/s | 106 kB 00:00 2024-09-17T01:18:17.862 INFO:teuthology.orchestra.run.smithi160.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 4.3 MB/s | 837 kB 00:00 2024-09-17T01:18:17.862 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:18:17.862 INFO:teuthology.orchestra.run.smithi160.stdout:Total 4.3 MB/s | 2.0 MB 00:00 2024-09-17T01:18:17.870 INFO:teuthology.orchestra.run.smithi047.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 3.1 MB/s | 906 kB 00:00 2024-09-17T01:18:17.891 INFO:teuthology.orchestra.run.smithi191.stdout:(3/6): python3-configshell-1.1.30-1.el9.noarch. 1.0 MB/s | 72 kB 00:00 2024-09-17T01:18:17.916 INFO:teuthology.orchestra.run.smithi191.stdout:(4/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.4 MB/s | 84 kB 00:00 2024-09-17T01:18:17.935 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:18:17.937 INFO:teuthology.orchestra.run.smithi047.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 6.5 MB/s | 837 kB 00:00 2024-09-17T01:18:17.937 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:18:17.937 INFO:teuthology.orchestra.run.smithi047.stdout:Total 5.1 MB/s | 2.0 MB 00:00 2024-09-17T01:18:17.949 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:18:17.949 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:18:17.958 INFO:teuthology.orchestra.run.smithi191.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 3.9 MB/s | 906 kB 00:00 2024-09-17T01:18:18.008 INFO:teuthology.orchestra.run.smithi191.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 7.0 MB/s | 837 kB 00:00 2024-09-17T01:18:18.009 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:18:18.009 INFO:teuthology.orchestra.run.smithi191.stdout:Total 3.7 MB/s | 2.0 MB 00:00 2024-09-17T01:18:18.013 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:18:18.028 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:18:18.028 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:18:18.083 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:18:18.097 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:18:18.097 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:18:18.227 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:18:18.227 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:18:18.322 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:18:18.323 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:18:18.372 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:18:18.373 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:18:18.647 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:18:18.731 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-17T01:18:18.764 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:18:18.765 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-17T01:18:18.779 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:18:18.794 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-17T01:18:18.857 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-17T01:18:18.870 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-17T01:18:18.891 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-17T01:18:18.913 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-17T01:18:18.920 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-17T01:18:18.940 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-17T01:18:19.013 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-17T01:18:19.050 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T01:18:19.140 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-17T01:18:19.149 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-17T01:18:19.176 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T01:18:19.189 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T01:18:19.491 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T01:18:19.521 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T01:18:19.632 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T01:18:19.643 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T01:18:19.658 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T01:18:19.679 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T01:18:20.480 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T01:18:20.480 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-17T01:18:20.480 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-17T01:18:20.480 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-17T01:18:20.480 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-17T01:18:20.480 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-17T01:18:20.633 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T01:18:20.633 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-17T01:18:20.633 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-17T01:18:20.633 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-17T01:18:20.633 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-17T01:18:20.634 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-17T01:18:20.654 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T01:18:20.655 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-17T01:18:20.655 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-17T01:18:20.655 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-17T01:18:20.655 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-17T01:18:20.655 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-17T01:18:20.865 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-17T01:18:20.866 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:18:20.866 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:18:20.866 INFO:teuthology.orchestra.run.smithi160.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T01:18:20.866 INFO:teuthology.orchestra.run.smithi160.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T01:18:20.866 INFO:teuthology.orchestra.run.smithi160.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T01:18:20.866 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:18:20.866 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:18:21.005 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-17T01:18:21.005 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:18:21.005 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:18:21.005 INFO:teuthology.orchestra.run.smithi191.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T01:18:21.005 INFO:teuthology.orchestra.run.smithi191.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T01:18:21.005 INFO:teuthology.orchestra.run.smithi191.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T01:18:21.005 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:18:21.006 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:18:21.034 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-17T01:18:21.034 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:18:21.034 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:18:21.034 INFO:teuthology.orchestra.run.smithi047.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T01:18:21.034 INFO:teuthology.orchestra.run.smithi047.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T01:18:21.034 INFO:teuthology.orchestra.run.smithi047.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T01:18:21.034 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:18:21.034 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:18:21.173 DEBUG:teuthology.parallel:result is None 2024-09-17T01:18:21.347 DEBUG:teuthology.parallel:result is None 2024-09-17T01:18:21.376 DEBUG:teuthology.parallel:result is None 2024-09-17T01:18:21.377 INFO:teuthology.run_tasks:Running task install... 2024-09-17T01:18:21.385 DEBUG:teuthology.task.install:project ceph 2024-09-17T01:18:21.385 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'c2ddf9721ef254645201cdbabd9c8f49c30a586f'}} 2024-09-17T01:18:21.385 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'c2ddf9721ef254645201cdbabd9c8f49c30a586f'} 2024-09-17T01:18:21.385 INFO:teuthology.task.install:Using flavor: default 2024-09-17T01:18:21.391 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2024-09-17T01:18:21.391 INFO:teuthology.task.install:extra packages: [] 2024-09-17T01:18:21.391 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'c2ddf9721ef254645201cdbabd9c8f49c30a586f', 'tag': None, 'wait_for_package': False} 2024-09-17T01:18:21.392 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T01:18:21.394 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'c2ddf9721ef254645201cdbabd9c8f49c30a586f', 'tag': None, 'wait_for_package': False} 2024-09-17T01:18:21.394 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T01:18:21.395 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'c2ddf9721ef254645201cdbabd9c8f49c30a586f', 'tag': None, 'wait_for_package': False} 2024-09-17T01:18:21.395 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T01:18:21.547 INFO:teuthology.task.install.rpm:Pulling from https://2.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/ 2024-09-17T01:18:21.548 INFO:teuthology.task.install.rpm:Package version is 19.1.1-330.gc2ddf972 2024-09-17T01:18:21.551 INFO:teuthology.task.install.rpm:Pulling from https://2.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/ 2024-09-17T01:18:21.552 INFO:teuthology.task.install.rpm:Package version is 19.1.1-330.gc2ddf972 2024-09-17T01:18:21.558 INFO:teuthology.task.install.rpm:Pulling from https://2.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/ 2024-09-17T01:18:21.558 INFO:teuthology.task.install.rpm:Package version is 19.1.1-330.gc2ddf972 2024-09-17T01:18:21.659 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://2.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://2.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://2.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-17T01:18:21.660 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-09-17T01:18:21.660 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-17T01:18:21.667 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://2.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://2.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://2.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-17T01:18:21.667 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-17T01:18:21.667 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-17T01:18:21.670 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://2.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://2.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://2.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-17T01:18:21.670 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-17T01:18:21.670 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-17T01:18:21.690 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-09-17T01:18:21.691 DEBUG:teuthology.orchestra.run.smithi047:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/c2ddf9721ef254645201cdbabd9c8f49c30a586f/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-17T01:18:21.698 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-09-17T01:18:21.698 DEBUG:teuthology.orchestra.run.smithi191:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/c2ddf9721ef254645201cdbabd9c8f49c30a586f/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-17T01:18:21.699 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-09-17T01:18:21.699 DEBUG:teuthology.orchestra.run.smithi160:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/c2ddf9721ef254645201cdbabd9c8f49c30a586f/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-17T01:18:21.758 DEBUG:teuthology.orchestra.run.smithi047:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-09-17T01:18:21.765 DEBUG:teuthology.orchestra.run.smithi160:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-09-17T01:18:21.766 DEBUG:teuthology.orchestra.run.smithi191:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-09-17T01:18:21.836 DEBUG:teuthology.orchestra.run.smithi047:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-09-17T01:18:21.840 DEBUG:teuthology.orchestra.run.smithi160:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-09-17T01:18:21.872 DEBUG:teuthology.orchestra.run.smithi191:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-09-17T01:18:21.897 INFO:teuthology.orchestra.run.smithi191.stdout:check_obsoletes = 1 2024-09-17T01:18:21.898 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum clean all 2024-09-17T01:18:21.905 INFO:teuthology.orchestra.run.smithi160.stdout:check_obsoletes = 1 2024-09-17T01:18:21.906 INFO:teuthology.orchestra.run.smithi047.stdout:check_obsoletes = 1 2024-09-17T01:18:21.907 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum clean all 2024-09-17T01:18:21.908 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum clean all 2024-09-17T01:18:22.121 INFO:teuthology.orchestra.run.smithi191.stdout:45 files removed 2024-09-17T01:18:22.140 INFO:teuthology.orchestra.run.smithi047.stdout:45 files removed 2024-09-17T01:18:22.141 INFO:teuthology.orchestra.run.smithi160.stdout:45 files removed 2024-09-17T01:18:22.147 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-radosgw 2024-09-17T01:18:22.168 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install ceph-radosgw 2024-09-17T01:18:22.171 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-radosgw 2024-09-17T01:18:22.697 INFO:teuthology.orchestra.run.smithi191.stdout:ceph packages for x86_64 315 kB/s | 84 kB 00:00 2024-09-17T01:18:22.734 INFO:teuthology.orchestra.run.smithi160.stdout:ceph packages for x86_64 300 kB/s | 84 kB 00:00 2024-09-17T01:18:22.735 INFO:teuthology.orchestra.run.smithi047.stdout:ceph packages for x86_64 312 kB/s | 84 kB 00:00 2024-09-17T01:18:22.973 INFO:teuthology.orchestra.run.smithi191.stdout:ceph noarch packages 51 kB/s | 12 kB 00:00 2024-09-17T01:18:23.018 INFO:teuthology.orchestra.run.smithi160.stdout:ceph noarch packages 49 kB/s | 12 kB 00:00 2024-09-17T01:18:23.019 INFO:teuthology.orchestra.run.smithi047.stdout:ceph noarch packages 49 kB/s | 12 kB 00:00 2024-09-17T01:18:23.232 INFO:teuthology.orchestra.run.smithi191.stdout:ceph source packages 8.5 kB/s | 1.9 kB 00:00 2024-09-17T01:18:23.277 INFO:teuthology.orchestra.run.smithi160.stdout:ceph source packages 8.5 kB/s | 1.9 kB 00:00 2024-09-17T01:18:23.294 INFO:teuthology.orchestra.run.smithi047.stdout:ceph source packages 7.9 kB/s | 1.9 kB 00:00 2024-09-17T01:18:24.986 INFO:teuthology.orchestra.run.smithi047.stdout:CentOS Stream 9 - BaseOS 5.0 MB/s | 8.3 MB 00:01 2024-09-17T01:18:25.268 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - BaseOS 4.2 MB/s | 8.3 MB 00:01 2024-09-17T01:18:26.417 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - BaseOS 2.6 MB/s | 8.3 MB 00:03 2024-09-17T01:18:27.044 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - AppStream 28 MB/s | 20 MB 00:00 2024-09-17T01:18:27.165 INFO:teuthology.orchestra.run.smithi047.stdout:CentOS Stream 9 - AppStream 19 MB/s | 20 MB 00:01 2024-09-17T01:18:30.341 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - AppStream 7.1 MB/s | 20 MB 00:02 2024-09-17T01:18:32.587 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - CRB 3.9 MB/s | 6.5 MB 00:01 2024-09-17T01:18:32.822 INFO:teuthology.orchestra.run.smithi047.stdout:CentOS Stream 9 - CRB 3.9 MB/s | 6.5 MB 00:01 2024-09-17T01:18:34.271 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - Extras packages 61 kB/s | 19 kB 00:00 2024-09-17T01:18:34.356 INFO:teuthology.orchestra.run.smithi047.stdout:CentOS Stream 9 - Extras packages 81 kB/s | 19 kB 00:00 2024-09-17T01:18:35.956 INFO:teuthology.orchestra.run.smithi047.stdout:Extra Packages for Enterprise Linux 15 MB/s | 23 MB 00:01 2024-09-17T01:18:35.985 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - CRB 3.5 MB/s | 6.5 MB 00:01 2024-09-17T01:18:36.144 INFO:teuthology.orchestra.run.smithi160.stdout:Extra Packages for Enterprise Linux 13 MB/s | 23 MB 00:01 2024-09-17T01:18:37.651 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - Extras packages 44 kB/s | 19 kB 00:00 2024-09-17T01:18:39.733 INFO:teuthology.orchestra.run.smithi191.stdout:Extra Packages for Enterprise Linux 12 MB/s | 23 MB 00:01 2024-09-17T01:18:41.559 INFO:teuthology.orchestra.run.smithi047.stdout:lab-extras 46 kB/s | 1.7 kB 00:00 2024-09-17T01:18:41.623 INFO:teuthology.orchestra.run.smithi160.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-09-17T01:18:43.873 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:18:43.875 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:18:43.875 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-17T01:18:43.875 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:18:43.876 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:18:43.876 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-radosgw x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 11 M 2024-09-17T01:18:43.876 INFO:teuthology.orchestra.run.smithi160.stdout:Upgrading: 2024-09-17T01:18:43.876 INFO:teuthology.orchestra.run.smithi160.stdout: librados2 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 3.4 M 2024-09-17T01:18:43.876 INFO:teuthology.orchestra.run.smithi160.stdout: librbd1 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 3.2 M 2024-09-17T01:18:43.877 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-17T01:18:43.877 INFO:teuthology.orchestra.run.smithi160.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-17T01:18:43.877 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-base x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 5.4 M 2024-09-17T01:18:43.877 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-common x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 21 M 2024-09-17T01:18:43.877 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-selinux x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 25 k 2024-09-17T01:18:43.877 INFO:teuthology.orchestra.run.smithi160.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-17T01:18:43.878 INFO:teuthology.orchestra.run.smithi160.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-17T01:18:43.878 INFO:teuthology.orchestra.run.smithi160.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-17T01:18:43.878 INFO:teuthology.orchestra.run.smithi160.stdout: libcephfs2 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 751 k 2024-09-17T01:18:43.878 INFO:teuthology.orchestra.run.smithi160.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-17T01:18:43.878 INFO:teuthology.orchestra.run.smithi160.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-17T01:18:43.878 INFO:teuthology.orchestra.run.smithi160.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-17T01:18:43.878 INFO:teuthology.orchestra.run.smithi160.stdout: libradosstriper1 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 506 k 2024-09-17T01:18:43.879 INFO:teuthology.orchestra.run.smithi160.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-17T01:18:43.879 INFO:teuthology.orchestra.run.smithi160.stdout: librgw2 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 5.3 M 2024-09-17T01:18:43.879 INFO:teuthology.orchestra.run.smithi160.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-17T01:18:43.879 INFO:teuthology.orchestra.run.smithi160.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-17T01:18:43.879 INFO:teuthology.orchestra.run.smithi160.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-17T01:18:43.879 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ceph-argparse x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 45 k 2024-09-17T01:18:43.880 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ceph-common x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 136 k 2024-09-17T01:18:43.880 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cephfs x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 162 k 2024-09-17T01:18:43.880 INFO:teuthology.orchestra.run.smithi160.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-17T01:18:43.880 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rados x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 320 k 2024-09-17T01:18:43.880 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rbd x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 300 k 2024-09-17T01:18:43.880 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rgw x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 99 k 2024-09-17T01:18:43.881 INFO:teuthology.orchestra.run.smithi160.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-09-17T01:18:43.881 INFO:teuthology.orchestra.run.smithi160.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-09-17T01:18:43.881 INFO:teuthology.orchestra.run.smithi160.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-17T01:18:43.881 INFO:teuthology.orchestra.run.smithi160.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-17T01:18:43.881 INFO:teuthology.orchestra.run.smithi160.stdout:Installing weak dependencies: 2024-09-17T01:18:43.881 INFO:teuthology.orchestra.run.smithi160.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-09-17T01:18:43.882 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:18:43.882 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:18:43.882 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:18:43.882 INFO:teuthology.orchestra.run.smithi160.stdout:Install 30 Packages 2024-09-17T01:18:43.882 INFO:teuthology.orchestra.run.smithi160.stdout:Upgrade 2 Packages 2024-09-17T01:18:43.882 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:18:43.883 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 60 M 2024-09-17T01:18:43.883 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:18:43.901 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:18:43.903 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:18:43.903 INFO:teuthology.orchestra.run.smithi047.stdout: Package Arch Version Repository Size 2024-09-17T01:18:43.903 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:18:43.903 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:18:43.903 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-radosgw x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 11 M 2024-09-17T01:18:43.904 INFO:teuthology.orchestra.run.smithi047.stdout:Upgrading: 2024-09-17T01:18:43.904 INFO:teuthology.orchestra.run.smithi047.stdout: librados2 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 3.4 M 2024-09-17T01:18:43.904 INFO:teuthology.orchestra.run.smithi047.stdout: librbd1 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 3.2 M 2024-09-17T01:18:43.904 INFO:teuthology.orchestra.run.smithi047.stdout:Installing dependencies: 2024-09-17T01:18:43.904 INFO:teuthology.orchestra.run.smithi047.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-17T01:18:43.904 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-base x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 5.4 M 2024-09-17T01:18:43.904 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-common x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 21 M 2024-09-17T01:18:43.904 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-selinux x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 25 k 2024-09-17T01:18:43.905 INFO:teuthology.orchestra.run.smithi047.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-17T01:18:43.905 INFO:teuthology.orchestra.run.smithi047.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-17T01:18:43.905 INFO:teuthology.orchestra.run.smithi047.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-17T01:18:43.905 INFO:teuthology.orchestra.run.smithi047.stdout: libcephfs2 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 751 k 2024-09-17T01:18:43.905 INFO:teuthology.orchestra.run.smithi047.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-17T01:18:43.905 INFO:teuthology.orchestra.run.smithi047.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-17T01:18:43.905 INFO:teuthology.orchestra.run.smithi047.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-17T01:18:43.905 INFO:teuthology.orchestra.run.smithi047.stdout: libradosstriper1 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 506 k 2024-09-17T01:18:43.905 INFO:teuthology.orchestra.run.smithi047.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-17T01:18:43.905 INFO:teuthology.orchestra.run.smithi047.stdout: librgw2 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 5.3 M 2024-09-17T01:18:43.905 INFO:teuthology.orchestra.run.smithi047.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-17T01:18:43.905 INFO:teuthology.orchestra.run.smithi047.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-17T01:18:43.905 INFO:teuthology.orchestra.run.smithi047.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-17T01:18:43.906 INFO:teuthology.orchestra.run.smithi047.stdout: python3-ceph-argparse x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 45 k 2024-09-17T01:18:43.906 INFO:teuthology.orchestra.run.smithi047.stdout: python3-ceph-common x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 136 k 2024-09-17T01:18:43.906 INFO:teuthology.orchestra.run.smithi047.stdout: python3-cephfs x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 162 k 2024-09-17T01:18:43.906 INFO:teuthology.orchestra.run.smithi047.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-17T01:18:43.906 INFO:teuthology.orchestra.run.smithi047.stdout: python3-rados x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 320 k 2024-09-17T01:18:43.906 INFO:teuthology.orchestra.run.smithi047.stdout: python3-rbd x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 300 k 2024-09-17T01:18:43.906 INFO:teuthology.orchestra.run.smithi047.stdout: python3-rgw x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 99 k 2024-09-17T01:18:43.906 INFO:teuthology.orchestra.run.smithi047.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-09-17T01:18:43.906 INFO:teuthology.orchestra.run.smithi047.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-09-17T01:18:43.906 INFO:teuthology.orchestra.run.smithi047.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-17T01:18:43.906 INFO:teuthology.orchestra.run.smithi047.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-17T01:18:43.906 INFO:teuthology.orchestra.run.smithi047.stdout:Installing weak dependencies: 2024-09-17T01:18:43.906 INFO:teuthology.orchestra.run.smithi047.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-09-17T01:18:43.907 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:18:43.907 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:18:43.907 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:18:43.907 INFO:teuthology.orchestra.run.smithi047.stdout:Install 30 Packages 2024-09-17T01:18:43.907 INFO:teuthology.orchestra.run.smithi047.stdout:Upgrade 2 Packages 2024-09-17T01:18:43.907 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:18:43.907 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 60 M 2024-09-17T01:18:43.907 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:18:44.591 INFO:teuthology.orchestra.run.smithi160.stdout:(1/32): ceph-base-19.1.1-330.gc2ddf972.el9.x86_ 11 MB/s | 5.4 MB 00:00 2024-09-17T01:18:44.641 INFO:teuthology.orchestra.run.smithi160.stdout:(2/32): ceph-selinux-19.1.1-330.gc2ddf972.el9.x 504 kB/s | 25 kB 00:00 2024-09-17T01:18:44.741 INFO:teuthology.orchestra.run.smithi160.stdout:(3/32): libcephfs2-19.1.1-330.gc2ddf972.el9.x86 7.3 MB/s | 751 kB 00:00 2024-09-17T01:18:44.875 INFO:teuthology.orchestra.run.smithi160.stdout:(4/32): ceph-radosgw-19.1.1-330.gc2ddf972.el9.x 13 MB/s | 11 MB 00:00 2024-09-17T01:18:44.917 INFO:teuthology.orchestra.run.smithi160.stdout:(5/32): libradosstriper1-19.1.1-330.gc2ddf972.e 2.8 MB/s | 506 kB 00:00 2024-09-17T01:18:45.001 INFO:teuthology.orchestra.run.smithi160.stdout:(6/32): python3-ceph-argparse-19.1.1-330.gc2ddf 541 kB/s | 45 kB 00:00 2024-09-17T01:18:45.242 INFO:teuthology.orchestra.run.smithi160.stdout:(7/32): librgw2-19.1.1-330.gc2ddf972.el9.x86_64 15 MB/s | 5.3 MB 00:00 2024-09-17T01:18:45.253 INFO:teuthology.orchestra.run.smithi191.stdout:lab-extras 41 kB/s | 1.7 kB 00:00 2024-09-17T01:18:45.335 INFO:teuthology.orchestra.run.smithi047.stdout:(1/32): ceph-base-19.1.1-330.gc2ddf972.el9.x86_ 7.1 MB/s | 5.4 MB 00:00 2024-09-17T01:18:45.385 INFO:teuthology.orchestra.run.smithi047.stdout:(2/32): ceph-selinux-19.1.1-330.gc2ddf972.el9.x 506 kB/s | 25 kB 00:00 2024-09-17T01:18:45.442 INFO:teuthology.orchestra.run.smithi160.stdout:(8/32): ceph-common-19.1.1-330.gc2ddf972.el9.x8 16 MB/s | 21 MB 00:01 2024-09-17T01:18:45.468 INFO:teuthology.orchestra.run.smithi160.stdout:(9/32): python3-cephfs-19.1.1-330.gc2ddf972.el9 719 kB/s | 162 kB 00:00 2024-09-17T01:18:45.485 INFO:teuthology.orchestra.run.smithi047.stdout:(3/32): libcephfs2-19.1.1-330.gc2ddf972.el9.x86 7.3 MB/s | 751 kB 00:00 2024-09-17T01:18:45.501 INFO:teuthology.orchestra.run.smithi160.stdout:(10/32): python3-rados-19.1.1-330.gc2ddf972.el9 5.4 MB/s | 320 kB 00:00 2024-09-17T01:18:45.527 INFO:teuthology.orchestra.run.smithi160.stdout:(11/32): python3-ceph-common-19.1.1-330.gc2ddf9 259 kB/s | 136 kB 00:00 2024-09-17T01:18:45.560 INFO:teuthology.orchestra.run.smithi160.stdout:(12/32): python3-rbd-19.1.1-330.gc2ddf972.el9.x 3.2 MB/s | 300 kB 00:00 2024-09-17T01:18:45.569 INFO:teuthology.orchestra.run.smithi047.stdout:(4/32): libradosstriper1-19.1.1-330.gc2ddf972.e 5.9 MB/s | 506 kB 00:00 2024-09-17T01:18:45.586 INFO:teuthology.orchestra.run.smithi160.stdout:(13/32): python3-rgw-19.1.1-330.gc2ddf972.el9.x 1.2 MB/s | 99 kB 00:00 2024-09-17T01:18:45.728 INFO:teuthology.orchestra.run.smithi160.stdout:(14/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 319 kB/s | 45 kB 00:00 2024-09-17T01:18:45.753 INFO:teuthology.orchestra.run.smithi160.stdout:(15/32): boost-program-options-1.75.0-8.el9.x86 474 kB/s | 107 kB 00:00 2024-09-17T01:18:45.778 INFO:teuthology.orchestra.run.smithi160.stdout:(16/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 736 kB/s | 160 kB 00:00 2024-09-17T01:18:45.828 INFO:teuthology.orchestra.run.smithi160.stdout:(17/32): python3-prettytable-0.7.2-27.el9.noarc 846 kB/s | 42 kB 00:00 2024-09-17T01:18:45.879 INFO:teuthology.orchestra.run.smithi160.stdout:(18/32): librdkafka-1.6.1-102.el9.x86_64.rpm 4.3 MB/s | 662 kB 00:00 2024-09-17T01:18:45.894 INFO:teuthology.orchestra.run.smithi047.stdout:(5/32): librgw2-19.1.1-330.gc2ddf972.el9.x86_64 16 MB/s | 5.3 MB 00:00 2024-09-17T01:18:45.904 INFO:teuthology.orchestra.run.smithi160.stdout:(19/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.9 MB/s | 292 kB 00:00 2024-09-17T01:18:45.930 INFO:teuthology.orchestra.run.smithi160.stdout:(20/32): qatlib-24.02.0-1.el9.x86_64.rpm 2.1 MB/s | 221 kB 00:00 2024-09-17T01:18:45.936 INFO:teuthology.orchestra.run.smithi047.stdout:(6/32): python3-ceph-argparse-19.1.1-330.gc2ddf 1.1 MB/s | 45 kB 00:00 2024-09-17T01:18:45.954 INFO:teuthology.orchestra.run.smithi160.stdout:(21/32): qatlib-service-24.02.0-1.el9.x86_64.rp 477 kB/s | 36 kB 00:00 2024-09-17T01:18:45.980 INFO:teuthology.orchestra.run.smithi160.stdout:(22/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 628 kB/s | 47 kB 00:00 2024-09-17T01:18:46.047 INFO:teuthology.orchestra.run.smithi160.stdout:(23/32): libarrow-doc-9.0.0-11.el9.noarch.rpm 391 kB/s | 26 kB 00:00 2024-09-17T01:18:46.072 INFO:teuthology.orchestra.run.smithi160.stdout:(24/32): liboath-2.6.7-2.el9.x86_64.rpm 1.9 MB/s | 49 kB 00:00 2024-09-17T01:18:46.105 INFO:teuthology.orchestra.run.smithi160.stdout:(25/32): gperftools-libs-2.9.1-3.el9.x86_64.rpm 2.0 MB/s | 308 kB 00:00 2024-09-17T01:18:46.131 INFO:teuthology.orchestra.run.smithi160.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 1.1 MB/s | 67 kB 00:00 2024-09-17T01:18:46.137 INFO:teuthology.orchestra.run.smithi047.stdout:(7/32): ceph-common-19.1.1-330.gc2ddf972.el9.x8 14 MB/s | 21 MB 00:01 2024-09-17T01:18:46.162 INFO:teuthology.orchestra.run.smithi047.stdout:(8/32): python3-ceph-common-19.1.1-330.gc2ddf97 603 kB/s | 136 kB 00:00 2024-09-17T01:18:46.164 INFO:teuthology.orchestra.run.smithi160.stdout:(27/32): re2-20211101-20.el9.x86_64.rpm 5.6 MB/s | 191 kB 00:00 2024-09-17T01:18:46.205 INFO:teuthology.orchestra.run.smithi047.stdout:(9/32): python3-cephfs-19.1.1-330.gc2ddf972.el9 2.3 MB/s | 162 kB 00:00 2024-09-17T01:18:46.206 INFO:teuthology.orchestra.run.smithi160.stdout:(28/32): parquet-libs-9.0.0-11.el9.x86_64.rpm 8.1 MB/s | 839 kB 00:00 2024-09-17T01:18:46.239 INFO:teuthology.orchestra.run.smithi047.stdout:(10/32): python3-rados-19.1.1-330.gc2ddf972.el9 4.1 MB/s | 320 kB 00:00 2024-09-17T01:18:46.272 INFO:teuthology.orchestra.run.smithi047.stdout:(11/32): python3-rbd-19.1.1-330.gc2ddf972.el9.x 4.4 MB/s | 300 kB 00:00 2024-09-17T01:18:46.298 INFO:teuthology.orchestra.run.smithi160.stdout:(29/32): libarrow-9.0.0-11.el9.x86_64.rpm 13 MB/s | 4.4 MB 00:00 2024-09-17T01:18:46.306 INFO:teuthology.orchestra.run.smithi047.stdout:(12/32): python3-rgw-19.1.1-330.gc2ddf972.el9.x 1.5 MB/s | 99 kB 00:00 2024-09-17T01:18:46.332 INFO:teuthology.orchestra.run.smithi160.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 9.5 MB/s | 1.6 MB 00:00 2024-09-17T01:18:46.482 INFO:teuthology.orchestra.run.smithi160.stdout:(31/32): librados2-19.1.1-330.gc2ddf972.el9.x86 12 MB/s | 3.4 MB 00:00 2024-09-17T01:18:46.490 INFO:teuthology.orchestra.run.smithi047.stdout:(13/32): ceph-radosgw-19.1.1-330.gc2ddf972.el9. 5.5 MB/s | 11 MB 00:01 2024-09-17T01:18:46.556 INFO:teuthology.orchestra.run.smithi047.stdout:(14/32): boost-program-options-1.75.0-8.el9.x86 377 kB/s | 107 kB 00:00 2024-09-17T01:18:46.623 INFO:teuthology.orchestra.run.smithi047.stdout:(15/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 505 kB/s | 160 kB 00:00 2024-09-17T01:18:46.649 INFO:teuthology.orchestra.run.smithi047.stdout:(16/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 285 kB/s | 45 kB 00:00 2024-09-17T01:18:46.682 INFO:teuthology.orchestra.run.smithi160.stdout:(32/32): librbd1-19.1.1-330.gc2ddf972.el9.x86_6 8.2 MB/s | 3.2 MB 00:00 2024-09-17T01:18:46.687 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:18:46.688 INFO:teuthology.orchestra.run.smithi160.stdout:Total 22 MB/s | 60 MB 00:02 2024-09-17T01:18:46.716 INFO:teuthology.orchestra.run.smithi047.stdout:(17/32): librdkafka-1.6.1-102.el9.x86_64.rpm 4.1 MB/s | 662 kB 00:00 2024-09-17T01:18:46.741 INFO:teuthology.orchestra.run.smithi047.stdout:(18/32): python3-prettytable-0.7.2-27.el9.noarc 459 kB/s | 42 kB 00:00 2024-09-17T01:18:46.775 INFO:teuthology.orchestra.run.smithi047.stdout:(19/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.9 MB/s | 292 kB 00:00 2024-09-17T01:18:46.790 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:18:46.800 INFO:teuthology.orchestra.run.smithi047.stdout:(20/32): qatlib-service-24.02.0-1.el9.x86_64.rp 613 kB/s | 36 kB 00:00 2024-09-17T01:18:46.825 INFO:teuthology.orchestra.run.smithi047.stdout:(21/32): qatlib-24.02.0-1.el9.x86_64.rpm 2.0 MB/s | 221 kB 00:00 2024-09-17T01:18:46.826 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:18:46.827 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:18:46.851 INFO:teuthology.orchestra.run.smithi047.stdout:(22/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 628 kB/s | 47 kB 00:00 2024-09-17T01:18:46.909 INFO:teuthology.orchestra.run.smithi047.stdout:(23/32): gperftools-libs-2.9.1-3.el9.x86_64.rpm 2.8 MB/s | 308 kB 00:00 2024-09-17T01:18:46.934 INFO:teuthology.orchestra.run.smithi047.stdout:(24/32): libarrow-doc-9.0.0-11.el9.noarch.rpm 389 kB/s | 26 kB 00:00 2024-09-17T01:18:46.951 INFO:teuthology.orchestra.run.smithi047.stdout:(25/32): liboath-2.6.7-2.el9.x86_64.rpm 1.1 MB/s | 49 kB 00:00 2024-09-17T01:18:46.976 INFO:teuthology.orchestra.run.smithi047.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 1.6 MB/s | 67 kB 00:00 2024-09-17T01:18:47.010 INFO:teuthology.orchestra.run.smithi047.stdout:(27/32): re2-20211101-20.el9.x86_64.rpm 5.6 MB/s | 191 kB 00:00 2024-09-17T01:18:47.061 INFO:teuthology.orchestra.run.smithi047.stdout:(28/32): parquet-libs-9.0.0-11.el9.x86_64.rpm 7.5 MB/s | 839 kB 00:00 2024-09-17T01:18:47.119 INFO:teuthology.orchestra.run.smithi047.stdout:(29/32): thrift-0.15.0-2.el9.x86_64.rpm 15 MB/s | 1.6 MB 00:00 2024-09-17T01:18:47.211 INFO:teuthology.orchestra.run.smithi047.stdout:(30/32): libarrow-9.0.0-11.el9.x86_64.rpm 11 MB/s | 4.4 MB 00:00 2024-09-17T01:18:47.328 INFO:teuthology.orchestra.run.smithi047.stdout:(31/32): librados2-19.1.1-330.gc2ddf972.el9.x86 13 MB/s | 3.4 MB 00:00 2024-09-17T01:18:47.338 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:18:47.339 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:18:47.386 INFO:teuthology.orchestra.run.smithi047.stdout:(32/32): librbd1-19.1.1-330.gc2ddf972.el9.x86_6 12 MB/s | 3.2 MB 00:00 2024-09-17T01:18:47.392 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:18:47.392 INFO:teuthology.orchestra.run.smithi047.stdout:Total 17 MB/s | 60 MB 00:03 2024-09-17T01:18:47.498 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:18:47.503 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:18:47.505 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:18:47.505 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-17T01:18:47.505 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:18:47.505 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:18:47.505 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-radosgw x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 11 M 2024-09-17T01:18:47.505 INFO:teuthology.orchestra.run.smithi191.stdout:Upgrading: 2024-09-17T01:18:47.505 INFO:teuthology.orchestra.run.smithi191.stdout: librados2 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 3.4 M 2024-09-17T01:18:47.505 INFO:teuthology.orchestra.run.smithi191.stdout: librbd1 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 3.2 M 2024-09-17T01:18:47.505 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-17T01:18:47.505 INFO:teuthology.orchestra.run.smithi191.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-17T01:18:47.506 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-base x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 5.4 M 2024-09-17T01:18:47.506 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-common x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 21 M 2024-09-17T01:18:47.506 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-selinux x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 25 k 2024-09-17T01:18:47.506 INFO:teuthology.orchestra.run.smithi191.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-17T01:18:47.506 INFO:teuthology.orchestra.run.smithi191.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-17T01:18:47.506 INFO:teuthology.orchestra.run.smithi191.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-17T01:18:47.506 INFO:teuthology.orchestra.run.smithi191.stdout: libcephfs2 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 751 k 2024-09-17T01:18:47.506 INFO:teuthology.orchestra.run.smithi191.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-17T01:18:47.506 INFO:teuthology.orchestra.run.smithi191.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-17T01:18:47.506 INFO:teuthology.orchestra.run.smithi191.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-17T01:18:47.506 INFO:teuthology.orchestra.run.smithi191.stdout: libradosstriper1 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 506 k 2024-09-17T01:18:47.507 INFO:teuthology.orchestra.run.smithi191.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-17T01:18:47.507 INFO:teuthology.orchestra.run.smithi191.stdout: librgw2 x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 5.3 M 2024-09-17T01:18:47.507 INFO:teuthology.orchestra.run.smithi191.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-17T01:18:47.507 INFO:teuthology.orchestra.run.smithi191.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-17T01:18:47.507 INFO:teuthology.orchestra.run.smithi191.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-17T01:18:47.507 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ceph-argparse x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 45 k 2024-09-17T01:18:47.507 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ceph-common x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 136 k 2024-09-17T01:18:47.507 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cephfs x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 162 k 2024-09-17T01:18:47.507 INFO:teuthology.orchestra.run.smithi191.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-17T01:18:47.507 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rados x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 320 k 2024-09-17T01:18:47.507 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rbd x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 300 k 2024-09-17T01:18:47.507 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rgw x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 99 k 2024-09-17T01:18:47.507 INFO:teuthology.orchestra.run.smithi191.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-09-17T01:18:47.507 INFO:teuthology.orchestra.run.smithi191.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-09-17T01:18:47.508 INFO:teuthology.orchestra.run.smithi191.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-17T01:18:47.508 INFO:teuthology.orchestra.run.smithi191.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-17T01:18:47.508 INFO:teuthology.orchestra.run.smithi191.stdout:Installing weak dependencies: 2024-09-17T01:18:47.508 INFO:teuthology.orchestra.run.smithi191.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-09-17T01:18:47.508 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:18:47.508 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:18:47.508 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:18:47.508 INFO:teuthology.orchestra.run.smithi191.stdout:Install 30 Packages 2024-09-17T01:18:47.508 INFO:teuthology.orchestra.run.smithi191.stdout:Upgrade 2 Packages 2024-09-17T01:18:47.508 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:18:47.509 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 60 M 2024-09-17T01:18:47.509 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:18:47.540 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:18:47.540 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:18:48.069 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:18:48.069 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:18:48.429 INFO:teuthology.orchestra.run.smithi191.stdout:(1/32): ceph-base-19.1.1-330.gc2ddf972.el9.x86_ 10 MB/s | 5.4 MB 00:00 2024-09-17T01:18:48.488 INFO:teuthology.orchestra.run.smithi191.stdout:(2/32): ceph-selinux-19.1.1-330.gc2ddf972.el9.x 432 kB/s | 25 kB 00:00 2024-09-17T01:18:48.571 INFO:teuthology.orchestra.run.smithi191.stdout:(3/32): libcephfs2-19.1.1-330.gc2ddf972.el9.x86 8.8 MB/s | 751 kB 00:00 2024-09-17T01:18:48.680 INFO:teuthology.orchestra.run.smithi191.stdout:(4/32): ceph-radosgw-19.1.1-330.gc2ddf972.el9.x 13 MB/s | 11 MB 00:00 2024-09-17T01:18:48.705 INFO:teuthology.orchestra.run.smithi191.stdout:(5/32): libradosstriper1-19.1.1-330.gc2ddf972.e 3.7 MB/s | 506 kB 00:00 2024-09-17T01:18:48.763 INFO:teuthology.orchestra.run.smithi191.stdout:(6/32): python3-ceph-argparse-19.1.1-330.gc2ddf 774 kB/s | 45 kB 00:00 2024-09-17T01:18:48.794 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:18:48.847 INFO:teuthology.orchestra.run.smithi191.stdout:(7/32): python3-ceph-common-19.1.1-330.gc2ddf97 1.6 MB/s | 136 kB 00:00 2024-09-17T01:18:48.880 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-09-17T01:18:48.921 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-09-17T01:18:48.946 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-09-17T01:18:48.964 INFO:teuthology.orchestra.run.smithi191.stdout:(8/32): librgw2-19.1.1-330.gc2ddf972.el9.x86_64 19 MB/s | 5.3 MB 00:00 2024-09-17T01:18:48.968 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-09-17T01:18:48.989 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-09-17T01:18:48.989 INFO:teuthology.orchestra.run.smithi191.stdout:(9/32): python3-cephfs-19.1.1-330.gc2ddf972.el9 1.1 MB/s | 162 kB 00:00 2024-09-17T01:18:49.023 INFO:teuthology.orchestra.run.smithi191.stdout:(10/32): python3-rados-19.1.1-330.gc2ddf972.el9 5.4 MB/s | 320 kB 00:00 2024-09-17T01:18:49.187 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-09-17T01:18:49.223 INFO:teuthology.orchestra.run.smithi191.stdout:(11/32): ceph-common-19.1.1-330.gc2ddf972.el9.x 16 MB/s | 21 MB 00:01 2024-09-17T01:18:49.240 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-09-17T01:18:49.248 INFO:teuthology.orchestra.run.smithi191.stdout:(12/32): python3-rgw-19.1.1-330.gc2ddf972.el9.x 441 kB/s | 99 kB 00:00 2024-09-17T01:18:49.274 INFO:teuthology.orchestra.run.smithi191.stdout:(13/32): python3-rbd-19.1.1-330.gc2ddf972.el9.x 1.0 MB/s | 300 kB 00:00 2024-09-17T01:18:49.449 INFO:teuthology.orchestra.run.smithi191.stdout:(14/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 258 kB/s | 45 kB 00:00 2024-09-17T01:18:49.474 INFO:teuthology.orchestra.run.smithi191.stdout:(15/32): boost-program-options-1.75.0-8.el9.x86 427 kB/s | 107 kB 00:00 2024-09-17T01:18:49.500 INFO:teuthology.orchestra.run.smithi191.stdout:(16/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 638 kB/s | 160 kB 00:00 2024-09-17T01:18:49.546 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:18:49.558 INFO:teuthology.orchestra.run.smithi191.stdout:(17/32): python3-prettytable-0.7.2-27.el9.noarc 726 kB/s | 42 kB 00:00 2024-09-17T01:18:49.608 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-09-17T01:18:49.624 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-09-17T01:18:49.626 INFO:teuthology.orchestra.run.smithi191.stdout:(18/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.9 MB/s | 292 kB 00:00 2024-09-17T01:18:49.658 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-09-17T01:18:49.684 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-09-17T01:18:49.684 INFO:teuthology.orchestra.run.smithi191.stdout:(19/32): qatlib-24.02.0-1.el9.x86_64.rpm 1.7 MB/s | 221 kB 00:00 2024-09-17T01:18:49.689 INFO:teuthology.orchestra.run.smithi160.stdout: Upgrading : librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 7/34 2024-09-17T01:18:49.706 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-09-17T01:18:49.709 INFO:teuthology.orchestra.run.smithi191.stdout:(20/32): librdkafka-1.6.1-102.el9.x86_64.rpm 2.5 MB/s | 662 kB 00:00 2024-09-17T01:18:49.730 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-09-17T01:18:49.734 INFO:teuthology.orchestra.run.smithi191.stdout:(21/32): qatlib-service-24.02.0-1.el9.x86_64.rp 330 kB/s | 36 kB 00:00 2024-09-17T01:18:49.760 INFO:teuthology.orchestra.run.smithi191.stdout:(22/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 628 kB/s | 47 kB 00:00 2024-09-17T01:18:49.798 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 7/34 2024-09-17T01:18:49.818 INFO:teuthology.orchestra.run.smithi191.stdout:(23/32): libarrow-doc-9.0.0-11.el9.noarch.rpm 588 kB/s | 26 kB 00:00 2024-09-17T01:18:49.843 INFO:teuthology.orchestra.run.smithi191.stdout:(24/32): gperftools-libs-2.9.1-3.el9.x86_64.rpm 2.2 MB/s | 308 kB 00:00 2024-09-17T01:18:49.869 INFO:teuthology.orchestra.run.smithi191.stdout:(25/32): liboath-2.6.7-2.el9.x86_64.rpm 967 kB/s | 49 kB 00:00 2024-09-17T01:18:49.889 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-rados-2:19.1.1-330.gc2ddf972.el9.x86_64 8/34 2024-09-17T01:18:49.894 INFO:teuthology.orchestra.run.smithi191.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 1.3 MB/s | 67 kB 00:00 2024-09-17T01:18:49.910 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-09-17T01:18:49.916 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 9/34 2024-09-17T01:18:49.928 INFO:teuthology.orchestra.run.smithi191.stdout:(27/32): re2-20211101-20.el9.x86_64.rpm 5.6 MB/s | 191 kB 00:00 2024-09-17T01:18:49.963 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-09-17T01:18:49.979 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 9/34 2024-09-17T01:18:49.986 INFO:teuthology.orchestra.run.smithi191.stdout:(28/32): parquet-libs-9.0.0-11.el9.x86_64.rpm 7.0 MB/s | 839 kB 00:00 2024-09-17T01:18:50.016 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-09-17T01:18:50.045 INFO:teuthology.orchestra.run.smithi191.stdout:(29/32): thrift-0.15.0-2.el9.x86_64.rpm 14 MB/s | 1.6 MB 00:00 2024-09-17T01:18:50.060 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-ceph-argparse-2:19.1.1-330.gc2ddf972.el9.x 11/34 2024-09-17T01:18:50.136 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cephfs-2:19.1.1-330.gc2ddf972.el9.x86_64 12/34 2024-09-17T01:18:50.168 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libradosstriper1-2:19.1.1-330.gc2ddf972.el9.x86_64 13/34 2024-09-17T01:18:50.195 INFO:teuthology.orchestra.run.smithi191.stdout:(30/32): libarrow-9.0.0-11.el9.x86_64.rpm 9.6 MB/s | 4.4 MB 00:00 2024-09-17T01:18:50.232 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: libradosstriper1-2:19.1.1-330.gc2ddf972.el9.x86_64 13/34 2024-09-17T01:18:50.266 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-09-17T01:18:50.296 INFO:teuthology.orchestra.run.smithi191.stdout:(31/32): librados2-19.1.1-330.gc2ddf972.el9.x86 11 MB/s | 3.4 MB 00:00 2024-09-17T01:18:50.316 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-09-17T01:18:50.346 INFO:teuthology.orchestra.run.smithi191.stdout:(32/32): librbd1-19.1.1-330.gc2ddf972.el9.x86_6 11 MB/s | 3.2 MB 00:00 2024-09-17T01:18:50.350 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:18:50.351 INFO:teuthology.orchestra.run.smithi191.stdout:Total 21 MB/s | 60 MB 00:02 2024-09-17T01:18:50.381 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/34 2024-09-17T01:18:50.426 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 16/34 2024-09-17T01:18:50.427 INFO:teuthology.orchestra.run.smithi047.stdout: Upgrading : librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 7/34 2024-09-17T01:18:50.450 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:18:50.472 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-09-17T01:18:50.486 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:18:50.486 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:18:50.508 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/34 2024-09-17T01:18:50.520 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 7/34 2024-09-17T01:18:50.537 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 19/34 2024-09-17T01:18:50.570 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-09-17T01:18:50.614 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-rados-2:19.1.1-330.gc2ddf972.el9.x86_64 8/34 2024-09-17T01:18:50.637 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 9/34 2024-09-17T01:18:50.708 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 9/34 2024-09-17T01:18:50.746 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-09-17T01:18:50.790 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-ceph-argparse-2:19.1.1-330.gc2ddf972.el9.x 11/34 2024-09-17T01:18:50.860 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-cephfs-2:19.1.1-330.gc2ddf972.el9.x86_64 12/34 2024-09-17T01:18:50.883 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-09-17T01:18:50.889 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : libradosstriper1-2:19.1.1-330.gc2ddf972.el9.x86_64 13/34 2024-09-17T01:18:50.937 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: libradosstriper1-2:19.1.1-330.gc2ddf972.el9.x86_64 13/34 2024-09-17T01:18:50.941 INFO:teuthology.orchestra.run.smithi160.stdout: Upgrading : librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 22/34 2024-09-17T01:18:50.971 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-09-17T01:18:50.979 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:18:50.979 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:18:51.031 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 22/34 2024-09-17T01:18:51.062 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-rbd-2:19.1.1-330.gc2ddf972.el9.x86_64 23/34 2024-09-17T01:18:51.083 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/34 2024-09-17T01:18:51.098 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-09-17T01:18:51.122 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 16/34 2024-09-17T01:18:51.181 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-09-17T01:18:51.221 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/34 2024-09-17T01:18:51.250 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 19/34 2024-09-17T01:18:51.283 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-09-17T01:18:51.591 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 25/34 2024-09-17T01:18:51.611 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-09-17T01:18:51.627 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : librgw2-2:19.1.1-330.gc2ddf972.el9.x86_64 26/34 2024-09-17T01:18:51.653 INFO:teuthology.orchestra.run.smithi047.stdout: Upgrading : librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 22/34 2024-09-17T01:18:51.698 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librgw2-2:19.1.1-330.gc2ddf972.el9.x86_64 26/34 2024-09-17T01:18:51.745 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 22/34 2024-09-17T01:18:51.775 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-rbd-2:19.1.1-330.gc2ddf972.el9.x86_64 23/34 2024-09-17T01:18:51.776 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-rgw-2:19.1.1-330.gc2ddf972.el9.x86_64 27/34 2024-09-17T01:18:51.804 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-ceph-common-2:19.1.1-330.gc2ddf972.el9.x86 28/34 2024-09-17T01:18:51.812 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-09-17T01:18:52.319 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 25/34 2024-09-17T01:18:52.348 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : librgw2-2:19.1.1-330.gc2ddf972.el9.x86_64 26/34 2024-09-17T01:18:52.413 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:18:52.419 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: librgw2-2:19.1.1-330.gc2ddf972.el9.x86_64 26/34 2024-09-17T01:18:52.499 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-rgw-2:19.1.1-330.gc2ddf972.el9.x86_64 27/34 2024-09-17T01:18:52.500 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-09-17T01:18:52.543 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-09-17T01:18:52.558 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-ceph-common-2:19.1.1-330.gc2ddf972.el9.x86 28/34 2024-09-17T01:18:52.569 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-09-17T01:18:52.591 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-09-17T01:18:52.614 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-09-17T01:18:52.810 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-09-17T01:18:52.872 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-09-17T01:18:53.216 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-09-17T01:18:53.345 INFO:teuthology.orchestra.run.smithi191.stdout: Upgrading : librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 7/34 2024-09-17T01:18:53.438 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 7/34 2024-09-17T01:18:53.529 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-rados-2:19.1.1-330.gc2ddf972.el9.x86_64 8/34 2024-09-17T01:18:53.564 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 9/34 2024-09-17T01:18:53.627 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 9/34 2024-09-17T01:18:53.664 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-09-17T01:18:53.708 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-ceph-argparse-2:19.1.1-330.gc2ddf972.el9.x 11/34 2024-09-17T01:18:53.779 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cephfs-2:19.1.1-330.gc2ddf972.el9.x86_64 12/34 2024-09-17T01:18:53.807 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libradosstriper1-2:19.1.1-330.gc2ddf972.el9.x86_64 13/34 2024-09-17T01:18:53.905 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: libradosstriper1-2:19.1.1-330.gc2ddf972.el9.x86_64 13/34 2024-09-17T01:18:53.939 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-09-17T01:18:54.058 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/34 2024-09-17T01:18:54.082 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 29/34 2024-09-17T01:18:54.099 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 16/34 2024-09-17T01:18:54.134 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 29/34 2024-09-17T01:18:54.140 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-09-17T01:18:54.181 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/34 2024-09-17T01:18:54.210 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 19/34 2024-09-17T01:18:54.243 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-09-17T01:18:54.563 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-09-17T01:18:54.613 INFO:teuthology.orchestra.run.smithi191.stdout: Upgrading : librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 22/34 2024-09-17T01:18:54.696 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 22/34 2024-09-17T01:18:54.713 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 29/34 2024-09-17T01:18:54.726 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-rbd-2:19.1.1-330.gc2ddf972.el9.x86_64 23/34 2024-09-17T01:18:54.753 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 30/34 2024-09-17T01:18:54.762 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-09-17T01:18:54.845 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 30/34 2024-09-17T01:18:54.846 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-17T01:18:54.846 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-17T01:18:54.846 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:18:54.888 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-selinux-2:19.1.1-330.gc2ddf972.el9.x86_64 31/34 2024-09-17T01:18:54.907 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 29/34 2024-09-17T01:18:54.938 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 29/34 2024-09-17T01:18:55.274 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 25/34 2024-09-17T01:18:55.307 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : librgw2-2:19.1.1-330.gc2ddf972.el9.x86_64 26/34 2024-09-17T01:18:55.371 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librgw2-2:19.1.1-330.gc2ddf972.el9.x86_64 26/34 2024-09-17T01:18:55.449 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-rgw-2:19.1.1-330.gc2ddf972.el9.x86_64 27/34 2024-09-17T01:18:55.477 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-ceph-common-2:19.1.1-330.gc2ddf972.el9.x86 28/34 2024-09-17T01:18:55.532 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 29/34 2024-09-17T01:18:55.566 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 30/34 2024-09-17T01:18:55.657 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 30/34 2024-09-17T01:18:55.658 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-17T01:18:55.658 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-17T01:18:55.658 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:18:55.693 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-selinux-2:19.1.1-330.gc2ddf972.el9.x86_64 31/34 2024-09-17T01:18:58.034 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 29/34 2024-09-17T01:18:58.065 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 29/34 2024-09-17T01:18:58.645 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 29/34 2024-09-17T01:18:58.685 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 30/34 2024-09-17T01:18:58.761 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 30/34 2024-09-17T01:18:58.762 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-17T01:18:58.762 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-17T01:18:58.762 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:18:58.803 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-selinux-2:19.1.1-330.gc2ddf972.el9.x86_64 31/34 2024-09-17T01:19:04.792 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-selinux-2:19.1.1-330.gc2ddf972.el9.x86_64 31/34 2024-09-17T01:19:04.792 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /sys 2024-09-17T01:19:04.792 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /proc 2024-09-17T01:19:04.792 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /mnt 2024-09-17T01:19:04.792 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /var/tmp 2024-09-17T01:19:04.792 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /home 2024-09-17T01:19:04.792 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /root 2024-09-17T01:19:04.792 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /tmp 2024-09-17T01:19:04.793 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:05.779 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-radosgw-2:19.1.1-330.gc2ddf972.el9.x86_64 32/34 2024-09-17T01:19:05.805 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-radosgw-2:19.1.1-330.gc2ddf972.el9.x86_64 32/34 2024-09-17T01:19:05.805 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:05.805 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-17T01:19:05.805 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-17T01:19:05.806 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-17T01:19:05.806 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:05.807 INFO:teuthology.orchestra.run.smithi160.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-09-17T01:19:05.893 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-09-17T01:19:05.893 INFO:teuthology.orchestra.run.smithi160.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-09-17T01:19:06.141 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-selinux-2:19.1.1-330.gc2ddf972.el9.x86_64 31/34 2024-09-17T01:19:06.141 INFO:teuthology.orchestra.run.smithi047.stdout:skipping the directory /sys 2024-09-17T01:19:06.141 INFO:teuthology.orchestra.run.smithi047.stdout:skipping the directory /proc 2024-09-17T01:19:06.141 INFO:teuthology.orchestra.run.smithi047.stdout:skipping the directory /mnt 2024-09-17T01:19:06.141 INFO:teuthology.orchestra.run.smithi047.stdout:skipping the directory /var/tmp 2024-09-17T01:19:06.141 INFO:teuthology.orchestra.run.smithi047.stdout:skipping the directory /home 2024-09-17T01:19:06.141 INFO:teuthology.orchestra.run.smithi047.stdout:skipping the directory /root 2024-09-17T01:19:06.142 INFO:teuthology.orchestra.run.smithi047.stdout:skipping the directory /tmp 2024-09-17T01:19:06.142 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:07.048 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-09-17T01:19:07.048 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 1/34 2024-09-17T01:19:07.048 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 2/34 2024-09-17T01:19:07.049 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-radosgw-2:19.1.1-330.gc2ddf972.el9.x86_64 3/34 2024-09-17T01:19:07.049 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-selinux-2:19.1.1-330.gc2ddf972.el9.x86_64 4/34 2024-09-17T01:19:07.049 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 5/34 2024-09-17T01:19:07.049 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libradosstriper1-2:19.1.1-330.gc2ddf972.el9.x86_64 6/34 2024-09-17T01:19:07.049 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librgw2-2:19.1.1-330.gc2ddf972.el9.x86_64 7/34 2024-09-17T01:19:07.049 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-ceph-argparse-2:19.1.1-330.gc2ddf972.el9.x 8/34 2024-09-17T01:19:07.049 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-ceph-common-2:19.1.1-330.gc2ddf972.el9.x86 9/34 2024-09-17T01:19:07.049 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cephfs-2:19.1.1-330.gc2ddf972.el9.x86_64 10/34 2024-09-17T01:19:07.049 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-rados-2:19.1.1-330.gc2ddf972.el9.x86_64 11/34 2024-09-17T01:19:07.049 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-rbd-2:19.1.1-330.gc2ddf972.el9.x86_64 12/34 2024-09-17T01:19:07.049 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-rgw-2:19.1.1-330.gc2ddf972.el9.x86_64 13/34 2024-09-17T01:19:07.049 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-09-17T01:19:07.050 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-09-17T01:19:07.050 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-09-17T01:19:07.050 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-09-17T01:19:07.050 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-09-17T01:19:07.050 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-09-17T01:19:07.050 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-09-17T01:19:07.050 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-09-17T01:19:07.050 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-09-17T01:19:07.050 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 23/34 2024-09-17T01:19:07.050 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 24/34 2024-09-17T01:19:07.050 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 25/34 2024-09-17T01:19:07.050 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-09-17T01:19:07.051 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-09-17T01:19:07.051 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 28/34 2024-09-17T01:19:07.051 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : re2-1:20211101-20.el9.x86_64 29/34 2024-09-17T01:19:07.051 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-09-17T01:19:07.051 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 31/34 2024-09-17T01:19:07.051 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-09-17T01:19:07.051 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 33/34 2024-09-17T01:19:07.147 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-radosgw-2:19.1.1-330.gc2ddf972.el9.x86_64 32/34 2024-09-17T01:19:07.178 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-radosgw-2:19.1.1-330.gc2ddf972.el9.x86_64 32/34 2024-09-17T01:19:07.178 INFO:teuthology.orchestra.run.smithi047.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:07.178 INFO:teuthology.orchestra.run.smithi047.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-17T01:19:07.178 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-17T01:19:07.179 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-17T01:19:07.179 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:07.180 INFO:teuthology.orchestra.run.smithi047.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-09-17T01:19:07.266 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-09-17T01:19:07.266 INFO:teuthology.orchestra.run.smithi047.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-09-17T01:19:08.038 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-09-17T01:19:08.038 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:08.038 INFO:teuthology.orchestra.run.smithi160.stdout:Upgraded: 2024-09-17T01:19:08.038 INFO:teuthology.orchestra.run.smithi160.stdout: librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.039 INFO:teuthology.orchestra.run.smithi160.stdout: librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.039 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:19:08.039 INFO:teuthology.orchestra.run.smithi160.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-17T01:19:08.039 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.039 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.039 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-radosgw-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.039 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-selinux-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.039 INFO:teuthology.orchestra.run.smithi160.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-17T01:19:08.039 INFO:teuthology.orchestra.run.smithi160.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-17T01:19:08.039 INFO:teuthology.orchestra.run.smithi160.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-17T01:19:08.039 INFO:teuthology.orchestra.run.smithi160.stdout: libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.039 INFO:teuthology.orchestra.run.smithi160.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-17T01:19:08.040 INFO:teuthology.orchestra.run.smithi160.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-17T01:19:08.040 INFO:teuthology.orchestra.run.smithi160.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-17T01:19:08.040 INFO:teuthology.orchestra.run.smithi160.stdout: libradosstriper1-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.040 INFO:teuthology.orchestra.run.smithi160.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-17T01:19:08.040 INFO:teuthology.orchestra.run.smithi160.stdout: librgw2-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.040 INFO:teuthology.orchestra.run.smithi160.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-17T01:19:08.040 INFO:teuthology.orchestra.run.smithi160.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-17T01:19:08.040 INFO:teuthology.orchestra.run.smithi160.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-17T01:19:08.040 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ceph-argparse-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.040 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.040 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cephfs-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.040 INFO:teuthology.orchestra.run.smithi160.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-17T01:19:08.041 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rados-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.041 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rbd-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.041 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rgw-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:08.041 INFO:teuthology.orchestra.run.smithi160.stdout: qatlib-24.02.0-1.el9.x86_64 2024-09-17T01:19:08.041 INFO:teuthology.orchestra.run.smithi160.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-09-17T01:19:08.041 INFO:teuthology.orchestra.run.smithi160.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-09-17T01:19:08.041 INFO:teuthology.orchestra.run.smithi160.stdout: re2-1:20211101-20.el9.x86_64 2024-09-17T01:19:08.041 INFO:teuthology.orchestra.run.smithi160.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-17T01:19:08.041 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:08.041 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:19:08.386 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-test 2024-09-17T01:19:08.461 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-09-17T01:19:08.461 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 1/34 2024-09-17T01:19:08.461 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 2/34 2024-09-17T01:19:08.461 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-radosgw-2:19.1.1-330.gc2ddf972.el9.x86_64 3/34 2024-09-17T01:19:08.461 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-selinux-2:19.1.1-330.gc2ddf972.el9.x86_64 4/34 2024-09-17T01:19:08.461 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 5/34 2024-09-17T01:19:08.461 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : libradosstriper1-2:19.1.1-330.gc2ddf972.el9.x86_64 6/34 2024-09-17T01:19:08.461 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : librgw2-2:19.1.1-330.gc2ddf972.el9.x86_64 7/34 2024-09-17T01:19:08.461 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-ceph-argparse-2:19.1.1-330.gc2ddf972.el9.x 8/34 2024-09-17T01:19:08.462 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-ceph-common-2:19.1.1-330.gc2ddf972.el9.x86 9/34 2024-09-17T01:19:08.462 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-cephfs-2:19.1.1-330.gc2ddf972.el9.x86_64 10/34 2024-09-17T01:19:08.462 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-rados-2:19.1.1-330.gc2ddf972.el9.x86_64 11/34 2024-09-17T01:19:08.462 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-rbd-2:19.1.1-330.gc2ddf972.el9.x86_64 12/34 2024-09-17T01:19:08.462 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-rgw-2:19.1.1-330.gc2ddf972.el9.x86_64 13/34 2024-09-17T01:19:08.462 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-09-17T01:19:08.462 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-09-17T01:19:08.462 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-09-17T01:19:08.462 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-09-17T01:19:08.462 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-09-17T01:19:08.462 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-09-17T01:19:08.462 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-09-17T01:19:08.462 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-09-17T01:19:08.463 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-09-17T01:19:08.463 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 23/34 2024-09-17T01:19:08.463 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 24/34 2024-09-17T01:19:08.463 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 25/34 2024-09-17T01:19:08.463 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-09-17T01:19:08.463 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-09-17T01:19:08.463 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 28/34 2024-09-17T01:19:08.463 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : re2-1:20211101-20.el9.x86_64 29/34 2024-09-17T01:19:08.463 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-09-17T01:19:08.463 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 31/34 2024-09-17T01:19:08.463 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-09-17T01:19:08.463 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 33/34 2024-09-17T01:19:08.968 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:27 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:09.095 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-selinux-2:19.1.1-330.gc2ddf972.el9.x86_64 31/34 2024-09-17T01:19:09.095 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /sys 2024-09-17T01:19:09.095 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /proc 2024-09-17T01:19:09.095 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /mnt 2024-09-17T01:19:09.095 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /var/tmp 2024-09-17T01:19:09.095 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /home 2024-09-17T01:19:09.095 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /root 2024-09-17T01:19:09.096 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /tmp 2024-09-17T01:19:09.096 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:09.098 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:19:09.099 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:09.099 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-17T01:19:09.099 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:09.099 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:19:09.099 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-test x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 49 M 2024-09-17T01:19:09.099 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-17T01:19:09.099 INFO:teuthology.orchestra.run.smithi160.stdout: libcephsqlite x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 163 k 2024-09-17T01:19:09.099 INFO:teuthology.orchestra.run.smithi160.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-17T01:19:09.099 INFO:teuthology.orchestra.run.smithi160.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-17T01:19:09.100 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:09.100 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:19:09.100 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:09.100 INFO:teuthology.orchestra.run.smithi160.stdout:Install 4 Packages 2024-09-17T01:19:09.100 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:09.100 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 49 M 2024-09-17T01:19:09.101 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 209 M 2024-09-17T01:19:09.101 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:19:09.450 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-09-17T01:19:09.450 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:09.450 INFO:teuthology.orchestra.run.smithi047.stdout:Upgraded: 2024-09-17T01:19:09.450 INFO:teuthology.orchestra.run.smithi047.stdout: librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.450 INFO:teuthology.orchestra.run.smithi047.stdout: librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.450 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:19:09.450 INFO:teuthology.orchestra.run.smithi047.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-17T01:19:09.451 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.451 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.451 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-radosgw-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.451 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-selinux-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.451 INFO:teuthology.orchestra.run.smithi047.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-17T01:19:09.451 INFO:teuthology.orchestra.run.smithi047.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-17T01:19:09.451 INFO:teuthology.orchestra.run.smithi047.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-17T01:19:09.451 INFO:teuthology.orchestra.run.smithi047.stdout: libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.451 INFO:teuthology.orchestra.run.smithi047.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-17T01:19:09.451 INFO:teuthology.orchestra.run.smithi047.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-17T01:19:09.451 INFO:teuthology.orchestra.run.smithi047.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-17T01:19:09.451 INFO:teuthology.orchestra.run.smithi047.stdout: libradosstriper1-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.451 INFO:teuthology.orchestra.run.smithi047.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-17T01:19:09.452 INFO:teuthology.orchestra.run.smithi047.stdout: librgw2-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.452 INFO:teuthology.orchestra.run.smithi047.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-17T01:19:09.452 INFO:teuthology.orchestra.run.smithi047.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-17T01:19:09.452 INFO:teuthology.orchestra.run.smithi047.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-17T01:19:09.452 INFO:teuthology.orchestra.run.smithi047.stdout: python3-ceph-argparse-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.452 INFO:teuthology.orchestra.run.smithi047.stdout: python3-ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.452 INFO:teuthology.orchestra.run.smithi047.stdout: python3-cephfs-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.452 INFO:teuthology.orchestra.run.smithi047.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-17T01:19:09.452 INFO:teuthology.orchestra.run.smithi047.stdout: python3-rados-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.452 INFO:teuthology.orchestra.run.smithi047.stdout: python3-rbd-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.452 INFO:teuthology.orchestra.run.smithi047.stdout: python3-rgw-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:09.452 INFO:teuthology.orchestra.run.smithi047.stdout: qatlib-24.02.0-1.el9.x86_64 2024-09-17T01:19:09.452 INFO:teuthology.orchestra.run.smithi047.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-09-17T01:19:09.453 INFO:teuthology.orchestra.run.smithi047.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-09-17T01:19:09.453 INFO:teuthology.orchestra.run.smithi047.stdout: re2-1:20211101-20.el9.x86_64 2024-09-17T01:19:09.453 INFO:teuthology.orchestra.run.smithi047.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-17T01:19:09.453 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:09.453 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:19:09.498 INFO:teuthology.orchestra.run.smithi160.stdout:(1/4): libcephsqlite-19.1.1-330.gc2ddf972.el9.x 793 kB/s | 163 kB 00:00 2024-09-17T01:19:09.665 INFO:teuthology.orchestra.run.smithi160.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 382 kB/s | 64 kB 00:00 2024-09-17T01:19:09.690 INFO:teuthology.orchestra.run.smithi160.stdout:(3/4): socat-1.7.4.1-6.el9.x86_64.rpm 764 kB/s | 304 kB 00:00 2024-09-17T01:19:09.829 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install ceph-test 2024-09-17T01:19:10.110 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-radosgw-2:19.1.1-330.gc2ddf972.el9.x86_64 32/34 2024-09-17T01:19:10.136 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-radosgw-2:19.1.1-330.gc2ddf972.el9.x86_64 32/34 2024-09-17T01:19:10.136 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:10.136 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-17T01:19:10.136 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-17T01:19:10.136 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-17T01:19:10.136 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:10.138 INFO:teuthology.orchestra.run.smithi191.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-09-17T01:19:10.221 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-09-17T01:19:10.221 INFO:teuthology.orchestra.run.smithi191.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-09-17T01:19:10.429 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:00:29 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:10.565 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:19:10.567 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:10.567 INFO:teuthology.orchestra.run.smithi047.stdout: Package Arch Version Repository Size 2024-09-17T01:19:10.567 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:10.567 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:19:10.567 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-test x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 49 M 2024-09-17T01:19:10.567 INFO:teuthology.orchestra.run.smithi047.stdout:Installing dependencies: 2024-09-17T01:19:10.567 INFO:teuthology.orchestra.run.smithi047.stdout: libcephsqlite x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 163 k 2024-09-17T01:19:10.567 INFO:teuthology.orchestra.run.smithi047.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-17T01:19:10.567 INFO:teuthology.orchestra.run.smithi047.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-17T01:19:10.567 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:10.568 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:19:10.568 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:10.568 INFO:teuthology.orchestra.run.smithi047.stdout:Install 4 Packages 2024-09-17T01:19:10.568 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:10.568 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 49 M 2024-09-17T01:19:10.568 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 209 M 2024-09-17T01:19:10.568 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:19:10.777 INFO:teuthology.orchestra.run.smithi160.stdout:(4/4): ceph-test-19.1.1-330.gc2ddf972.el9.x86_6 33 MB/s | 49 MB 00:01 2024-09-17T01:19:10.777 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:10.777 INFO:teuthology.orchestra.run.smithi160.stdout:Total 29 MB/s | 49 MB 00:01 2024-09-17T01:19:10.804 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:19:10.825 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:19:10.825 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:19:11.041 INFO:teuthology.orchestra.run.smithi047.stdout:(1/4): libcephsqlite-19.1.1-330.gc2ddf972.el9.x 768 kB/s | 163 kB 00:00 2024-09-17T01:19:11.217 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:19:11.218 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:19:11.428 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-09-17T01:19:11.429 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 1/34 2024-09-17T01:19:11.429 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 2/34 2024-09-17T01:19:11.429 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-radosgw-2:19.1.1-330.gc2ddf972.el9.x86_64 3/34 2024-09-17T01:19:11.429 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-selinux-2:19.1.1-330.gc2ddf972.el9.x86_64 4/34 2024-09-17T01:19:11.429 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 5/34 2024-09-17T01:19:11.429 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libradosstriper1-2:19.1.1-330.gc2ddf972.el9.x86_64 6/34 2024-09-17T01:19:11.429 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librgw2-2:19.1.1-330.gc2ddf972.el9.x86_64 7/34 2024-09-17T01:19:11.429 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-ceph-argparse-2:19.1.1-330.gc2ddf972.el9.x 8/34 2024-09-17T01:19:11.429 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-ceph-common-2:19.1.1-330.gc2ddf972.el9.x86 9/34 2024-09-17T01:19:11.429 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cephfs-2:19.1.1-330.gc2ddf972.el9.x86_64 10/34 2024-09-17T01:19:11.429 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-rados-2:19.1.1-330.gc2ddf972.el9.x86_64 11/34 2024-09-17T01:19:11.429 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-rbd-2:19.1.1-330.gc2ddf972.el9.x86_64 12/34 2024-09-17T01:19:11.429 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-rgw-2:19.1.1-330.gc2ddf972.el9.x86_64 13/34 2024-09-17T01:19:11.430 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-09-17T01:19:11.430 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-09-17T01:19:11.430 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-09-17T01:19:11.430 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-09-17T01:19:11.430 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-09-17T01:19:11.430 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-09-17T01:19:11.430 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-09-17T01:19:11.430 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-09-17T01:19:11.430 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-09-17T01:19:11.430 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 23/34 2024-09-17T01:19:11.430 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 24/34 2024-09-17T01:19:11.430 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 25/34 2024-09-17T01:19:11.430 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-09-17T01:19:11.431 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-09-17T01:19:11.431 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 28/34 2024-09-17T01:19:11.431 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : re2-1:20211101-20.el9.x86_64 29/34 2024-09-17T01:19:11.431 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-09-17T01:19:11.432 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 31/34 2024-09-17T01:19:11.432 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-09-17T01:19:11.432 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 33/34 2024-09-17T01:19:11.441 INFO:teuthology.orchestra.run.smithi047.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 159 kB/s | 64 kB 00:00 2024-09-17T01:19:11.491 INFO:teuthology.orchestra.run.smithi047.stdout:(3/4): socat-1.7.4.1-6.el9.x86_64.rpm 459 kB/s | 304 kB 00:00 2024-09-17T01:19:11.755 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:19:11.837 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-17T01:19:11.881 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-17T01:19:11.908 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libcephsqlite-2:19.1.1-330.gc2ddf972.el9.x86_64 3/4 2024-09-17T01:19:12.333 INFO:teuthology.orchestra.run.smithi047.stdout:(4/4): ceph-test-19.1.1-330.gc2ddf972.el9.x86_6 32 MB/s | 49 MB 00:01 2024-09-17T01:19:12.335 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:12.335 INFO:teuthology.orchestra.run.smithi047.stdout:Total 28 MB/s | 49 MB 00:01 2024-09-17T01:19:12.364 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:19:12.386 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:19:12.387 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:19:12.592 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-09-17T01:19:12.592 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:12.592 INFO:teuthology.orchestra.run.smithi191.stdout:Upgraded: 2024-09-17T01:19:12.592 INFO:teuthology.orchestra.run.smithi191.stdout: librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.593 INFO:teuthology.orchestra.run.smithi191.stdout: librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.593 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:19:12.593 INFO:teuthology.orchestra.run.smithi191.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-17T01:19:12.593 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.593 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.593 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-radosgw-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.593 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-selinux-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.593 INFO:teuthology.orchestra.run.smithi191.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-17T01:19:12.593 INFO:teuthology.orchestra.run.smithi191.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-17T01:19:12.593 INFO:teuthology.orchestra.run.smithi191.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-17T01:19:12.593 INFO:teuthology.orchestra.run.smithi191.stdout: libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.593 INFO:teuthology.orchestra.run.smithi191.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-17T01:19:12.593 INFO:teuthology.orchestra.run.smithi191.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-17T01:19:12.594 INFO:teuthology.orchestra.run.smithi191.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-17T01:19:12.594 INFO:teuthology.orchestra.run.smithi191.stdout: libradosstriper1-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.594 INFO:teuthology.orchestra.run.smithi191.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-17T01:19:12.594 INFO:teuthology.orchestra.run.smithi191.stdout: librgw2-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.594 INFO:teuthology.orchestra.run.smithi191.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-17T01:19:12.594 INFO:teuthology.orchestra.run.smithi191.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-17T01:19:12.594 INFO:teuthology.orchestra.run.smithi191.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-17T01:19:12.594 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ceph-argparse-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.594 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ceph-common-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.594 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cephfs-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.594 INFO:teuthology.orchestra.run.smithi191.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-17T01:19:12.594 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rados-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.594 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rbd-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.594 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rgw-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:12.595 INFO:teuthology.orchestra.run.smithi191.stdout: qatlib-24.02.0-1.el9.x86_64 2024-09-17T01:19:12.595 INFO:teuthology.orchestra.run.smithi191.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-09-17T01:19:12.595 INFO:teuthology.orchestra.run.smithi191.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-09-17T01:19:12.595 INFO:teuthology.orchestra.run.smithi191.stdout: re2-1:20211101-20.el9.x86_64 2024-09-17T01:19:12.595 INFO:teuthology.orchestra.run.smithi191.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-17T01:19:12.595 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:12.595 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:19:12.799 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:19:12.799 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:19:13.006 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-test 2024-09-17T01:19:13.374 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:19:13.465 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-17T01:19:13.508 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-17T01:19:13.535 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : libcephsqlite-2:19.1.1-330.gc2ddf972.el9.x86_64 3/4 2024-09-17T01:19:13.582 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:28 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:19:13.720 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:19:13.720 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:13.720 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-17T01:19:13.720 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:13.721 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:19:13.721 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-test x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 49 M 2024-09-17T01:19:13.721 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-17T01:19:13.721 INFO:teuthology.orchestra.run.smithi191.stdout: libcephsqlite x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 163 k 2024-09-17T01:19:13.721 INFO:teuthology.orchestra.run.smithi191.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-17T01:19:13.721 INFO:teuthology.orchestra.run.smithi191.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-17T01:19:13.721 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:13.721 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:19:13.721 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:13.721 INFO:teuthology.orchestra.run.smithi191.stdout:Install 4 Packages 2024-09-17T01:19:13.721 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:13.722 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 49 M 2024-09-17T01:19:13.722 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 209 M 2024-09-17T01:19:13.722 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:19:13.971 INFO:teuthology.orchestra.run.smithi191.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 1.5 MB/s | 304 kB 00:00 2024-09-17T01:19:13.997 INFO:teuthology.orchestra.run.smithi191.stdout:(2/4): libcephsqlite-19.1.1-330.gc2ddf972.el9.x 719 kB/s | 163 kB 00:00 2024-09-17T01:19:14.021 INFO:teuthology.orchestra.run.smithi191.stdout:(3/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.2 MB/s | 64 kB 00:00 2024-09-17T01:19:15.447 INFO:teuthology.orchestra.run.smithi191.stdout:(4/4): ceph-test-19.1.1-330.gc2ddf972.el9.x86_6 29 MB/s | 49 MB 00:01 2024-09-17T01:19:15.449 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:15.450 INFO:teuthology.orchestra.run.smithi191.stdout:Total 28 MB/s | 49 MB 00:01 2024-09-17T01:19:15.481 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:19:15.497 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:19:15.497 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:19:15.892 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:19:15.892 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:19:16.426 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:19:16.515 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-17T01:19:16.554 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-17T01:19:16.555 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: libcephsqlite-2:19.1.1-330.gc2ddf972.el9.x86_64 3/4 2024-09-17T01:19:16.582 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libcephsqlite-2:19.1.1-330.gc2ddf972.el9.x86_64 3/4 2024-09-17T01:19:16.640 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-test-2:19.1.1-330.gc2ddf972.el9.x86_64 4/4 2024-09-17T01:19:18.413 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: libcephsqlite-2:19.1.1-330.gc2ddf972.el9.x86_64 3/4 2024-09-17T01:19:18.494 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-test-2:19.1.1-330.gc2ddf972.el9.x86_64 4/4 2024-09-17T01:19:19.064 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-test-2:19.1.1-330.gc2ddf972.el9.x86_64 4/4 2024-09-17T01:19:19.064 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-test-2:19.1.1-330.gc2ddf972.el9.x86_64 1/4 2024-09-17T01:19:19.064 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libcephsqlite-2:19.1.1-330.gc2ddf972.el9.x86_64 2/4 2024-09-17T01:19:19.064 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-17T01:19:19.379 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-17T01:19:19.379 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:19.379 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:19:19.379 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-test-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:19.379 INFO:teuthology.orchestra.run.smithi160.stdout: libcephsqlite-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:19.379 INFO:teuthology.orchestra.run.smithi160.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-17T01:19:19.380 INFO:teuthology.orchestra.run.smithi160.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-17T01:19:19.380 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:19.380 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:19:19.692 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph 2024-09-17T01:19:20.303 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:39 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:20.447 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:19:20.450 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:20.450 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-17T01:19:20.450 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:20.450 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:19:20.450 INFO:teuthology.orchestra.run.smithi160.stdout: ceph x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 6.5 k 2024-09-17T01:19:20.450 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-17T01:19:20.450 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mds x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 2.4 M 2024-09-17T01:19:20.450 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 1.5 M 2024-09-17T01:19:20.450 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-modules-core noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 249 k 2024-09-17T01:19:20.450 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mon x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 4.7 M 2024-09-17T01:19:20.451 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-osd x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 17 M 2024-09-17T01:19:20.451 INFO:teuthology.orchestra.run.smithi160.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-09-17T01:19:20.451 INFO:teuthology.orchestra.run.smithi160.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-09-17T01:19:20.451 INFO:teuthology.orchestra.run.smithi160.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2024-09-17T01:19:20.451 INFO:teuthology.orchestra.run.smithi160.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-17T01:19:20.451 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-17T01:19:20.451 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-17T01:19:20.451 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-17T01:19:20.451 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-17T01:19:20.451 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-17T01:19:20.451 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-17T01:19:20.451 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-09-17T01:19:20.452 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-17T01:19:20.452 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-17T01:19:20.452 INFO:teuthology.orchestra.run.smithi160.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-17T01:19:20.452 INFO:teuthology.orchestra.run.smithi160.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-17T01:19:20.452 INFO:teuthology.orchestra.run.smithi160.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-17T01:19:20.452 INFO:teuthology.orchestra.run.smithi160.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-17T01:19:20.452 INFO:teuthology.orchestra.run.smithi160.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-17T01:19:20.452 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-17T01:19:20.452 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-17T01:19:20.452 INFO:teuthology.orchestra.run.smithi160.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-17T01:19:20.452 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-17T01:19:20.453 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-17T01:19:20.453 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-17T01:19:20.453 INFO:teuthology.orchestra.run.smithi160.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-17T01:19:20.453 INFO:teuthology.orchestra.run.smithi160.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-17T01:19:20.453 INFO:teuthology.orchestra.run.smithi160.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-17T01:19:20.453 INFO:teuthology.orchestra.run.smithi160.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-17T01:19:20.453 INFO:teuthology.orchestra.run.smithi160.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-17T01:19:20.453 INFO:teuthology.orchestra.run.smithi160.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-17T01:19:20.453 INFO:teuthology.orchestra.run.smithi160.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-17T01:19:20.454 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:20.454 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:19:20.454 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:20.454 INFO:teuthology.orchestra.run.smithi160.stdout:Install 37 Packages 2024-09-17T01:19:20.454 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:20.454 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 30 M 2024-09-17T01:19:20.454 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 108 M 2024-09-17T01:19:20.455 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:19:20.878 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-test-2:19.1.1-330.gc2ddf972.el9.x86_64 4/4 2024-09-17T01:19:20.878 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-test-2:19.1.1-330.gc2ddf972.el9.x86_64 1/4 2024-09-17T01:19:20.878 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : libcephsqlite-2:19.1.1-330.gc2ddf972.el9.x86_64 2/4 2024-09-17T01:19:20.878 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-17T01:19:21.166 INFO:teuthology.orchestra.run.smithi160.stdout:(1/37): ceph-19.1.1-330.gc2ddf972.el9.x86_64.rp 50 kB/s | 6.5 kB 00:00 2024-09-17T01:19:21.210 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: libcephsqlite-2:19.1.1-330.gc2ddf972.el9.x86_64 3/4 2024-09-17T01:19:21.225 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-17T01:19:21.225 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:21.226 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:19:21.226 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-test-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:21.226 INFO:teuthology.orchestra.run.smithi047.stdout: libcephsqlite-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:21.226 INFO:teuthology.orchestra.run.smithi047.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-17T01:19:21.226 INFO:teuthology.orchestra.run.smithi047.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-17T01:19:21.226 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:21.226 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:19:21.300 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-test-2:19.1.1-330.gc2ddf972.el9.x86_64 4/4 2024-09-17T01:19:21.350 INFO:teuthology.orchestra.run.smithi160.stdout:(2/37): ceph-mgr-19.1.1-330.gc2ddf972.el9.x86_6 4.9 MB/s | 1.5 MB 00:00 2024-09-17T01:19:21.400 INFO:teuthology.orchestra.run.smithi160.stdout:(3/37): ceph-mds-19.1.1-330.gc2ddf972.el9.x86_6 6.6 MB/s | 2.4 MB 00:00 2024-09-17T01:19:21.501 INFO:teuthology.orchestra.run.smithi160.stdout:(4/37): ceph-mgr-modules-core-19.1.1-330.gc2ddf 2.4 MB/s | 249 kB 00:00 2024-09-17T01:19:21.571 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install ceph 2024-09-17T01:19:21.584 INFO:teuthology.orchestra.run.smithi160.stdout:(5/37): ceph-mon-19.1.1-330.gc2ddf972.el9.x86_6 11 MB/s | 4.7 MB 00:00 2024-09-17T01:19:21.701 INFO:teuthology.orchestra.run.smithi160.stdout:(6/37): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.2 MB/s | 253 kB 00:00 2024-09-17T01:19:21.743 INFO:teuthology.orchestra.run.smithi160.stdout:(7/37): python3-ply-3.11-14.el9.noarch.rpm 2.5 MB/s | 106 kB 00:00 2024-09-17T01:19:21.785 INFO:teuthology.orchestra.run.smithi160.stdout:(8/37): python3-cryptography-36.0.1-4.el9.x86_6 6.1 MB/s | 1.2 MB 00:00 2024-09-17T01:19:21.810 INFO:teuthology.orchestra.run.smithi160.stdout:(9/37): python3-pycparser-2.20-6.el9.noarch.rpm 2.0 MB/s | 135 kB 00:00 2024-09-17T01:19:21.835 INFO:teuthology.orchestra.run.smithi160.stdout:(10/37): python3-requests-2.25.1-8.el9.noarch.r 2.4 MB/s | 125 kB 00:00 2024-09-17T01:19:21.861 INFO:teuthology.orchestra.run.smithi160.stdout:(11/37): python3-urllib3-1.26.5-6.el9.noarch.rp 4.2 MB/s | 215 kB 00:00 2024-09-17T01:19:22.028 INFO:teuthology.orchestra.run.smithi160.stdout:(12/37): ceph-osd-19.1.1-330.gc2ddf972.el9.x86_ 25 MB/s | 17 MB 00:00 2024-09-17T01:19:22.078 INFO:teuthology.orchestra.run.smithi160.stdout:(13/37): lua-5.4.4-4.el9.x86_64.rpm 777 kB/s | 188 kB 00:00 2024-09-17T01:19:22.137 INFO:teuthology.orchestra.run.smithi160.stdout:(14/37): python3-mako-1.1.4-6.el9.noarch.rpm 624 kB/s | 172 kB 00:00 2024-09-17T01:19:22.162 INFO:teuthology.orchestra.run.smithi160.stdout:(15/37): python3-markupsafe-1.1.1-12.el9.x86_64 259 kB/s | 35 kB 00:00 2024-09-17T01:19:22.182 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:00:41 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:22.187 INFO:teuthology.orchestra.run.smithi160.stdout:(16/37): python3-packaging-20.9-5.el9.noarch.rp 708 kB/s | 77 kB 00:00 2024-09-17T01:19:22.213 INFO:teuthology.orchestra.run.smithi160.stdout:(17/37): python3-pytz-2021.1-5.el9.noarch.rpm 675 kB/s | 51 kB 00:00 2024-09-17T01:19:22.246 INFO:teuthology.orchestra.run.smithi160.stdout:(18/37): python3-toml-0.10.2-6.el9.noarch.rpm 496 kB/s | 42 kB 00:00 2024-09-17T01:19:22.280 INFO:teuthology.orchestra.run.smithi160.stdout:(19/37): luarocks-3.9.2-5.el9.noarch.rpm 2.2 MB/s | 151 kB 00:00 2024-09-17T01:19:22.305 INFO:teuthology.orchestra.run.smithi160.stdout:(20/37): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 766 kB/s | 43 kB 00:00 2024-09-17T01:19:22.327 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:19:22.329 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:22.329 INFO:teuthology.orchestra.run.smithi047.stdout: Package Arch Version Repository Size 2024-09-17T01:19:22.329 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:22.330 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:19:22.330 INFO:teuthology.orchestra.run.smithi047.stdout: ceph x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 6.5 k 2024-09-17T01:19:22.330 INFO:teuthology.orchestra.run.smithi047.stdout:Installing dependencies: 2024-09-17T01:19:22.330 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mds x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 2.4 M 2024-09-17T01:19:22.330 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 1.5 M 2024-09-17T01:19:22.330 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr-modules-core noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 249 k 2024-09-17T01:19:22.330 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mon x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 4.7 M 2024-09-17T01:19:22.330 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-osd x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 17 M 2024-09-17T01:19:22.330 INFO:teuthology.orchestra.run.smithi047.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-09-17T01:19:22.330 INFO:teuthology.orchestra.run.smithi047.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-09-17T01:19:22.330 INFO:teuthology.orchestra.run.smithi047.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2024-09-17T01:19:22.330 INFO:teuthology.orchestra.run.smithi047.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-17T01:19:22.330 INFO:teuthology.orchestra.run.smithi047.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-17T01:19:22.331 INFO:teuthology.orchestra.run.smithi047.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-17T01:19:22.331 INFO:teuthology.orchestra.run.smithi047.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-17T01:19:22.331 INFO:teuthology.orchestra.run.smithi047.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-17T01:19:22.331 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-17T01:19:22.331 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-17T01:19:22.331 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-09-17T01:19:22.331 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-17T01:19:22.331 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-17T01:19:22.331 INFO:teuthology.orchestra.run.smithi047.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-17T01:19:22.331 INFO:teuthology.orchestra.run.smithi047.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-17T01:19:22.331 INFO:teuthology.orchestra.run.smithi047.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-17T01:19:22.331 INFO:teuthology.orchestra.run.smithi047.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-17T01:19:22.332 INFO:teuthology.orchestra.run.smithi047.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-17T01:19:22.332 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-17T01:19:22.332 INFO:teuthology.orchestra.run.smithi047.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-17T01:19:22.332 INFO:teuthology.orchestra.run.smithi047.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-17T01:19:22.332 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-17T01:19:22.332 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-17T01:19:22.332 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-17T01:19:22.332 INFO:teuthology.orchestra.run.smithi047.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-17T01:19:22.332 INFO:teuthology.orchestra.run.smithi047.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-17T01:19:22.332 INFO:teuthology.orchestra.run.smithi047.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-17T01:19:22.332 INFO:teuthology.orchestra.run.smithi047.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-17T01:19:22.332 INFO:teuthology.orchestra.run.smithi047.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-17T01:19:22.332 INFO:teuthology.orchestra.run.smithi047.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-17T01:19:22.333 INFO:teuthology.orchestra.run.smithi047.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-17T01:19:22.333 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:22.333 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:19:22.333 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:22.333 INFO:teuthology.orchestra.run.smithi047.stdout:Install 37 Packages 2024-09-17T01:19:22.333 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:22.334 INFO:teuthology.orchestra.run.smithi160.stdout:(21/37): python3-cheroot-8.6.0-4.el9.noarch.rpm 3.5 MB/s | 172 kB 00:00 2024-09-17T01:19:22.334 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 30 M 2024-09-17T01:19:22.334 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 108 M 2024-09-17T01:19:22.334 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:19:22.372 INFO:teuthology.orchestra.run.smithi160.stdout:(22/37): python3-jaraco-8.2.1-3.el9.noarch.rpm 258 kB/s | 11 kB 00:00 2024-09-17T01:19:22.397 INFO:teuthology.orchestra.run.smithi160.stdout:(23/37): python3-jaraco-classes-3.2.1-5.el9.noa 706 kB/s | 18 kB 00:00 2024-09-17T01:19:22.423 INFO:teuthology.orchestra.run.smithi160.stdout:(24/37): python3-jaraco-collections-3.0.0-8.el9 930 kB/s | 23 kB 00:00 2024-09-17T01:19:22.448 INFO:teuthology.orchestra.run.smithi160.stdout:(25/37): python3-cherrypy-18.6.1-2.el9.noarch.r 3.0 MB/s | 358 kB 00:00 2024-09-17T01:19:22.473 INFO:teuthology.orchestra.run.smithi160.stdout:(26/37): python3-jaraco-functools-3.5.0-2.el9.n 388 kB/s | 19 kB 00:00 2024-09-17T01:19:22.499 INFO:teuthology.orchestra.run.smithi160.stdout:(27/37): python3-jaraco-text-3.2.0-6.el9.noarch 392 kB/s | 20 kB 00:00 2024-09-17T01:19:22.524 INFO:teuthology.orchestra.run.smithi160.stdout:(28/37): python3-logutils-0.3.5-21.el9.noarch.r 919 kB/s | 46 kB 00:00 2024-09-17T01:19:22.549 INFO:teuthology.orchestra.run.smithi160.stdout:(29/37): lua-devel-5.4.4-4.el9.x86_64.rpm 62 kB/s | 22 kB 00:00 2024-09-17T01:19:22.574 INFO:teuthology.orchestra.run.smithi160.stdout:(30/37): python3-more-itertools-8.12.0-2.el9.no 1.0 MB/s | 79 kB 00:00 2024-09-17T01:19:22.608 INFO:teuthology.orchestra.run.smithi160.stdout:(31/37): python3-pyOpenSSL-21.0.0-1.el9.noarch. 3.3 MB/s | 90 kB 00:00 2024-09-17T01:19:22.641 INFO:teuthology.orchestra.run.smithi160.stdout:(32/37): python3-pecan-1.4.2-3.el9.noarch.rpm 2.3 MB/s | 272 kB 00:00 2024-09-17T01:19:22.667 INFO:teuthology.orchestra.run.smithi160.stdout:(33/37): python3-portend-3.1.0-2.el9.noarch.rpm 140 kB/s | 16 kB 00:00 2024-09-17T01:19:22.692 INFO:teuthology.orchestra.run.smithi160.stdout:(34/37): python3-tempora-5.0.0-2.el9.noarch.rpm 436 kB/s | 36 kB 00:00 2024-09-17T01:19:22.717 INFO:teuthology.orchestra.run.smithi160.stdout:(35/37): python3-zc-lockfile-2.0-10.el9.noarch. 803 kB/s | 20 kB 00:00 2024-09-17T01:19:22.743 INFO:teuthology.orchestra.run.smithi160.stdout:(36/37): python3-webob-1.8.8-2.el9.noarch.rpm 2.2 MB/s | 230 kB 00:00 2024-09-17T01:19:22.776 INFO:teuthology.orchestra.run.smithi160.stdout:(37/37): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.8 MB/s | 427 kB 00:00 2024-09-17T01:19:22.781 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:22.781 INFO:teuthology.orchestra.run.smithi160.stdout:Total 13 MB/s | 30 MB 00:02 2024-09-17T01:19:22.930 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:19:22.970 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:19:22.970 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:19:23.019 INFO:teuthology.orchestra.run.smithi047.stdout:(1/37): ceph-19.1.1-330.gc2ddf972.el9.x86_64.rp 62 kB/s | 6.5 kB 00:00 2024-09-17T01:19:23.228 INFO:teuthology.orchestra.run.smithi047.stdout:(2/37): ceph-mds-19.1.1-330.gc2ddf972.el9.x86_6 7.6 MB/s | 2.4 MB 00:00 2024-09-17T01:19:23.261 INFO:teuthology.orchestra.run.smithi047.stdout:(3/37): ceph-mgr-19.1.1-330.gc2ddf972.el9.x86_6 4.4 MB/s | 1.5 MB 00:00 2024-09-17T01:19:23.354 INFO:teuthology.orchestra.run.smithi047.stdout:(4/37): ceph-mgr-modules-core-19.1.1-330.gc2ddf 2.7 MB/s | 249 kB 00:00 2024-09-17T01:19:23.425 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:19:23.425 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:19:23.454 INFO:teuthology.orchestra.run.smithi047.stdout:(5/37): ceph-mon-19.1.1-330.gc2ddf972.el9.x86_6 11 MB/s | 4.7 MB 00:00 2024-09-17T01:19:23.705 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-test-2:19.1.1-330.gc2ddf972.el9.x86_64 4/4 2024-09-17T01:19:23.705 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-test-2:19.1.1-330.gc2ddf972.el9.x86_64 1/4 2024-09-17T01:19:23.705 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libcephsqlite-2:19.1.1-330.gc2ddf972.el9.x86_64 2/4 2024-09-17T01:19:23.705 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-17T01:19:23.762 INFO:teuthology.orchestra.run.smithi047.stdout:(6/37): ceph-osd-19.1.1-330.gc2ddf972.el9.x86_6 32 MB/s | 17 MB 00:00 2024-09-17T01:19:24.020 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-17T01:19:24.020 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:24.020 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:19:24.020 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-test-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:24.020 INFO:teuthology.orchestra.run.smithi191.stdout: libcephsqlite-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:24.020 INFO:teuthology.orchestra.run.smithi191.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-17T01:19:24.020 INFO:teuthology.orchestra.run.smithi191.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-17T01:19:24.020 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:24.020 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:19:24.079 INFO:teuthology.orchestra.run.smithi047.stdout:(7/37): python3-cffi-1.14.5-5.el9.x86_64.rpm 349 kB/s | 253 kB 00:00 2024-09-17T01:19:24.196 INFO:teuthology.orchestra.run.smithi047.stdout:(8/37): python3-pycparser-2.20-6.el9.noarch.rpm 1.1 MB/s | 135 kB 00:00 2024-09-17T01:19:24.222 INFO:teuthology.orchestra.run.smithi047.stdout:(9/37): python3-ply-3.11-14.el9.noarch.rpm 232 kB/s | 106 kB 00:00 2024-09-17T01:19:24.314 INFO:teuthology.orchestra.run.smithi047.stdout:(10/37): python3-requests-2.25.1-8.el9.noarch.r 1.0 MB/s | 125 kB 00:00 2024-09-17T01:19:24.356 INFO:teuthology.orchestra.run.smithi047.stdout:(11/37): python3-cryptography-36.0.1-4.el9.x86_ 1.4 MB/s | 1.2 MB 00:00 2024-09-17T01:19:24.358 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph 2024-09-17T01:19:24.514 INFO:teuthology.orchestra.run.smithi047.stdout:(12/37): python3-urllib3-1.26.5-6.el9.noarch.rp 735 kB/s | 215 kB 00:00 2024-09-17T01:19:24.787 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:19:24.854 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/37 2024-09-17T01:19:24.889 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/37 2024-09-17T01:19:24.931 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/37 2024-09-17T01:19:24.956 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:39 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:19:25.005 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/37 2024-09-17T01:19:25.049 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : luarocks-3.9.2-5.el9.noarch 5/37 2024-09-17T01:19:25.081 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/37 2024-09-17T01:19:25.082 INFO:teuthology.orchestra.run.smithi047.stdout:(13/37): python3-markupsafe-1.1.1-12.el9.x86_64 61 kB/s | 35 kB 00:00 2024-09-17T01:19:25.097 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:19:25.100 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:25.100 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-17T01:19:25.100 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:25.100 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:19:25.100 INFO:teuthology.orchestra.run.smithi191.stdout: ceph x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 6.5 k 2024-09-17T01:19:25.100 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-17T01:19:25.100 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mds x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 2.4 M 2024-09-17T01:19:25.100 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 1.5 M 2024-09-17T01:19:25.100 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-modules-core noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 249 k 2024-09-17T01:19:25.100 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mon x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 4.7 M 2024-09-17T01:19:25.100 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-osd x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 17 M 2024-09-17T01:19:25.100 INFO:teuthology.orchestra.run.smithi191.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-09-17T01:19:25.100 INFO:teuthology.orchestra.run.smithi191.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-09-17T01:19:25.101 INFO:teuthology.orchestra.run.smithi191.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2024-09-17T01:19:25.101 INFO:teuthology.orchestra.run.smithi191.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-17T01:19:25.101 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-17T01:19:25.101 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-17T01:19:25.101 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-17T01:19:25.101 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-17T01:19:25.101 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-17T01:19:25.101 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-17T01:19:25.101 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-09-17T01:19:25.101 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-17T01:19:25.101 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-17T01:19:25.101 INFO:teuthology.orchestra.run.smithi191.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-17T01:19:25.101 INFO:teuthology.orchestra.run.smithi191.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-17T01:19:25.102 INFO:teuthology.orchestra.run.smithi191.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-17T01:19:25.102 INFO:teuthology.orchestra.run.smithi191.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-17T01:19:25.102 INFO:teuthology.orchestra.run.smithi191.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-17T01:19:25.102 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-17T01:19:25.102 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-17T01:19:25.102 INFO:teuthology.orchestra.run.smithi191.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-17T01:19:25.102 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-17T01:19:25.102 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-17T01:19:25.102 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-17T01:19:25.102 INFO:teuthology.orchestra.run.smithi191.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-17T01:19:25.102 INFO:teuthology.orchestra.run.smithi191.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-17T01:19:25.102 INFO:teuthology.orchestra.run.smithi191.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-17T01:19:25.102 INFO:teuthology.orchestra.run.smithi191.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-17T01:19:25.102 INFO:teuthology.orchestra.run.smithi191.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-17T01:19:25.103 INFO:teuthology.orchestra.run.smithi191.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-17T01:19:25.103 INFO:teuthology.orchestra.run.smithi191.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-17T01:19:25.103 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:25.103 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:19:25.103 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:25.103 INFO:teuthology.orchestra.run.smithi191.stdout:Install 37 Packages 2024-09-17T01:19:25.103 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:25.104 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 30 M 2024-09-17T01:19:25.104 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 108 M 2024-09-17T01:19:25.104 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:19:25.115 INFO:teuthology.orchestra.run.smithi047.stdout:(14/37): python3-mako-1.1.4-6.el9.noarch.rpm 227 kB/s | 172 kB 00:00 2024-09-17T01:19:25.140 INFO:teuthology.orchestra.run.smithi047.stdout:(15/37): lua-5.4.4-4.el9.x86_64.rpm 228 kB/s | 188 kB 00:00 2024-09-17T01:19:25.190 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/37 2024-09-17T01:19:25.268 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/37 2024-09-17T01:19:25.309 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 9/37 2024-09-17T01:19:25.344 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/37 2024-09-17T01:19:25.383 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/37 2024-09-17T01:19:25.425 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/37 2024-09-17T01:19:25.458 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/37 2024-09-17T01:19:25.499 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/37 2024-09-17T01:19:25.542 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/37 2024-09-17T01:19:25.577 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/37 2024-09-17T01:19:25.625 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/37 2024-09-17T01:19:25.666 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/37 2024-09-17T01:19:25.707 INFO:teuthology.orchestra.run.smithi047.stdout:(16/37): python3-toml-0.10.2-6.el9.noarch.rpm 73 kB/s | 42 kB 00:00 2024-09-17T01:19:25.732 INFO:teuthology.orchestra.run.smithi047.stdout:(17/37): python3-packaging-20.9-5.el9.noarch.rp 119 kB/s | 77 kB 00:00 2024-09-17T01:19:25.738 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/37 2024-09-17T01:19:25.758 INFO:teuthology.orchestra.run.smithi047.stdout:(18/37): python3-pytz-2021.1-5.el9.noarch.rpm 79 kB/s | 51 kB 00:00 2024-09-17T01:19:25.808 INFO:teuthology.orchestra.run.smithi047.stdout:(19/37): luarocks-3.9.2-5.el9.noarch.rpm 2.0 MB/s | 151 kB 00:00 2024-09-17T01:19:25.850 INFO:teuthology.orchestra.run.smithi047.stdout:(20/37): python3-cheroot-8.6.0-4.el9.noarch.rpm 4.2 MB/s | 172 kB 00:00 2024-09-17T01:19:25.875 INFO:teuthology.orchestra.run.smithi047.stdout:(21/37): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 371 kB/s | 43 kB 00:00 2024-09-17T01:19:25.877 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 20/37 2024-09-17T01:19:25.901 INFO:teuthology.orchestra.run.smithi047.stdout:(22/37): python3-jaraco-8.2.1-3.el9.noarch.rpm 427 kB/s | 11 kB 00:00 2024-09-17T01:19:25.926 INFO:teuthology.orchestra.run.smithi047.stdout:(23/37): python3-jaraco-classes-3.2.1-5.el9.noa 709 kB/s | 18 kB 00:00 2024-09-17T01:19:25.951 INFO:teuthology.orchestra.run.smithi047.stdout:(24/37): lua-devel-5.4.4-4.el9.x86_64.rpm 92 kB/s | 22 kB 00:00 2024-09-17T01:19:25.965 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 21/37 2024-09-17T01:19:25.976 INFO:teuthology.orchestra.run.smithi047.stdout:(25/37): python3-jaraco-collections-3.0.0-8.el9 462 kB/s | 23 kB 00:00 2024-09-17T01:19:26.018 INFO:teuthology.orchestra.run.smithi047.stdout:(26/37): python3-cherrypy-18.6.1-2.el9.noarch.r 2.1 MB/s | 358 kB 00:00 2024-09-17T01:19:26.027 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 22/37 2024-09-17T01:19:26.043 INFO:teuthology.orchestra.run.smithi047.stdout:(27/37): python3-jaraco-text-3.2.0-6.el9.noarch 335 kB/s | 20 kB 00:00 2024-09-17T01:19:26.065 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 23/37 2024-09-17T01:19:26.069 INFO:teuthology.orchestra.run.smithi047.stdout:(28/37): python3-jaraco-functools-3.5.0-2.el9.n 165 kB/s | 19 kB 00:00 2024-09-17T01:19:26.094 INFO:teuthology.orchestra.run.smithi047.stdout:(29/37): python3-logutils-0.3.5-21.el9.noarch.r 628 kB/s | 46 kB 00:00 2024-09-17T01:19:26.119 INFO:teuthology.orchestra.run.smithi047.stdout:(30/37): python3-portend-3.1.0-2.el9.noarch.rpm 663 kB/s | 16 kB 00:00 2024-09-17T01:19:26.122 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-ply-3.11-14.el9.noarch 24/37 2024-09-17T01:19:26.132 INFO:teuthology.orchestra.run.smithi191.stdout:(1/37): ceph-19.1.1-330.gc2ddf972.el9.x86_64.rp 48 kB/s | 6.5 kB 00:00 2024-09-17T01:19:26.144 INFO:teuthology.orchestra.run.smithi047.stdout:(31/37): python3-more-itertools-8.12.0-2.el9.no 782 kB/s | 79 kB 00:00 2024-09-17T01:19:26.178 INFO:teuthology.orchestra.run.smithi047.stdout:(32/37): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.5 MB/s | 90 kB 00:00 2024-09-17T01:19:26.179 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 25/37 2024-09-17T01:19:26.203 INFO:teuthology.orchestra.run.smithi047.stdout:(33/37): python3-tempora-5.0.0-2.el9.noarch.rpm 610 kB/s | 36 kB 00:00 2024-09-17T01:19:26.229 INFO:teuthology.orchestra.run.smithi047.stdout:(34/37): python3-pecan-1.4.2-3.el9.noarch.rpm 1.7 MB/s | 272 kB 00:00 2024-09-17T01:19:26.254 INFO:teuthology.orchestra.run.smithi047.stdout:(35/37): python3-webob-1.8.8-2.el9.noarch.rpm 3.0 MB/s | 230 kB 00:00 2024-09-17T01:19:26.279 INFO:teuthology.orchestra.run.smithi047.stdout:(36/37): python3-zc-lockfile-2.0-10.el9.noarch. 399 kB/s | 20 kB 00:00 2024-09-17T01:19:26.321 INFO:teuthology.orchestra.run.smithi047.stdout:(37/37): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.6 MB/s | 427 kB 00:00 2024-09-17T01:19:26.326 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:26.326 INFO:teuthology.orchestra.run.smithi047.stdout:Total 7.6 MB/s | 30 MB 00:03 2024-09-17T01:19:26.358 INFO:teuthology.orchestra.run.smithi191.stdout:(2/37): ceph-mds-19.1.1-330.gc2ddf972.el9.x86_6 6.6 MB/s | 2.4 MB 00:00 2024-09-17T01:19:26.364 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 26/37 2024-09-17T01:19:26.400 INFO:teuthology.orchestra.run.smithi191.stdout:(3/37): ceph-mgr-19.1.1-330.gc2ddf972.el9.x86_6 3.8 MB/s | 1.5 MB 00:00 2024-09-17T01:19:26.420 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 27/37 2024-09-17T01:19:26.479 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:19:26.497 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 28/37 2024-09-17T01:19:26.500 INFO:teuthology.orchestra.run.smithi191.stdout:(4/37): ceph-mgr-modules-core-19.1.1-330.gc2ddf 2.4 MB/s | 249 kB 00:00 2024-09-17T01:19:26.523 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:19:26.523 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:19:26.567 INFO:teuthology.orchestra.run.smithi191.stdout:(5/37): ceph-mon-19.1.1-330.gc2ddf972.el9.x86_6 11 MB/s | 4.7 MB 00:00 2024-09-17T01:19:26.586 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 29/37 2024-09-17T01:19:26.637 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 30/37 2024-09-17T01:19:26.759 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 31/37 2024-09-17T01:19:26.775 INFO:teuthology.orchestra.run.smithi191.stdout:(6/37): python3-cffi-1.14.5-5.el9.x86_64.rpm 920 kB/s | 253 kB 00:00 2024-09-17T01:19:26.916 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-modules-core-2:19.1.1-330.gc2ddf972.el9.n 32/37 2024-09-17T01:19:26.954 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 33/37 2024-09-17T01:19:26.970 INFO:teuthology.orchestra.run.smithi191.stdout:(7/37): ceph-osd-19.1.1-330.gc2ddf972.el9.x86_6 28 MB/s | 17 MB 00:00 2024-09-17T01:19:26.980 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 33/37 2024-09-17T01:19:26.980 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:26.980 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-17T01:19:26.980 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-17T01:19:26.980 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-17T01:19:26.980 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:26.993 INFO:teuthology.orchestra.run.smithi191.stdout:(8/37): python3-ply-3.11-14.el9.noarch.rpm 490 kB/s | 106 kB 00:00 2024-09-17T01:19:27.006 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:19:27.006 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:19:27.052 INFO:teuthology.orchestra.run.smithi191.stdout:(9/37): python3-requests-2.25.1-8.el9.noarch.rp 2.1 MB/s | 125 kB 00:00 2024-09-17T01:19:27.101 INFO:teuthology.orchestra.run.smithi191.stdout:(10/37): python3-cryptography-36.0.1-4.el9.x86_ 2.3 MB/s | 1.2 MB 00:00 2024-09-17T01:19:27.127 INFO:teuthology.orchestra.run.smithi191.stdout:(11/37): python3-urllib3-1.26.5-6.el9.noarch.rp 2.8 MB/s | 215 kB 00:00 2024-09-17T01:19:27.169 INFO:teuthology.orchestra.run.smithi191.stdout:(12/37): python3-pycparser-2.20-6.el9.noarch.rp 680 kB/s | 135 kB 00:00 2024-09-17T01:19:27.269 INFO:teuthology.orchestra.run.smithi191.stdout:(13/37): lua-5.4.4-4.el9.x86_64.rpm 1.1 MB/s | 188 kB 00:00 2024-09-17T01:19:27.286 INFO:teuthology.orchestra.run.smithi191.stdout:(14/37): python3-markupsafe-1.1.1-12.el9.x86_64 297 kB/s | 35 kB 00:00 2024-09-17T01:19:27.311 INFO:teuthology.orchestra.run.smithi191.stdout:(15/37): python3-mako-1.1.4-6.el9.noarch.rpm 935 kB/s | 172 kB 00:00 2024-09-17T01:19:27.337 INFO:teuthology.orchestra.run.smithi191.stdout:(16/37): python3-packaging-20.9-5.el9.noarch.rp 1.1 MB/s | 77 kB 00:00 2024-09-17T01:19:27.362 INFO:teuthology.orchestra.run.smithi191.stdout:(17/37): python3-toml-0.10.2-6.el9.noarch.rpm 830 kB/s | 42 kB 00:00 2024-09-17T01:19:27.387 INFO:teuthology.orchestra.run.smithi191.stdout:(18/37): python3-pytz-2021.1-5.el9.noarch.rpm 506 kB/s | 51 kB 00:00 2024-09-17T01:19:27.429 INFO:teuthology.orchestra.run.smithi191.stdout:(19/37): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 1.0 MB/s | 43 kB 00:00 2024-09-17T01:19:27.463 INFO:teuthology.orchestra.run.smithi191.stdout:(20/37): python3-cheroot-8.6.0-4.el9.noarch.rpm 5.3 MB/s | 172 kB 00:00 2024-09-17T01:19:27.488 INFO:teuthology.orchestra.run.smithi191.stdout:(21/37): luarocks-3.9.2-5.el9.noarch.rpm 1.2 MB/s | 151 kB 00:00 2024-09-17T01:19:27.513 INFO:teuthology.orchestra.run.smithi191.stdout:(22/37): python3-jaraco-8.2.1-3.el9.noarch.rpm 426 kB/s | 11 kB 00:00 2024-09-17T01:19:27.547 INFO:teuthology.orchestra.run.smithi191.stdout:(23/37): python3-cherrypy-18.6.1-2.el9.noarch.r 4.2 MB/s | 358 kB 00:00 2024-09-17T01:19:27.572 INFO:teuthology.orchestra.run.smithi191.stdout:(24/37): python3-jaraco-classes-3.2.1-5.el9.noa 302 kB/s | 18 kB 00:00 2024-09-17T01:19:27.598 INFO:teuthology.orchestra.run.smithi191.stdout:(25/37): python3-jaraco-collections-3.0.0-8.el9 461 kB/s | 23 kB 00:00 2024-09-17T01:19:27.623 INFO:teuthology.orchestra.run.smithi191.stdout:(26/37): python3-jaraco-functools-3.5.0-2.el9.n 386 kB/s | 19 kB 00:00 2024-09-17T01:19:27.648 INFO:teuthology.orchestra.run.smithi191.stdout:(27/37): lua-devel-5.4.4-4.el9.x86_64.rpm 72 kB/s | 22 kB 00:00 2024-09-17T01:19:27.682 INFO:teuthology.orchestra.run.smithi191.stdout:(28/37): python3-jaraco-text-3.2.0-6.el9.noarch 234 kB/s | 20 kB 00:00 2024-09-17T01:19:27.707 INFO:teuthology.orchestra.run.smithi191.stdout:(29/37): python3-logutils-0.3.5-21.el9.noarch.r 552 kB/s | 46 kB 00:00 2024-09-17T01:19:27.732 INFO:teuthology.orchestra.run.smithi191.stdout:(30/37): python3-portend-3.1.0-2.el9.noarch.rpm 660 kB/s | 16 kB 00:00 2024-09-17T01:19:27.757 INFO:teuthology.orchestra.run.smithi191.stdout:(31/37): python3-more-itertools-8.12.0-2.el9.no 724 kB/s | 79 kB 00:00 2024-09-17T01:19:27.782 INFO:teuthology.orchestra.run.smithi191.stdout:(32/37): python3-tempora-5.0.0-2.el9.noarch.rpm 1.4 MB/s | 36 kB 00:00 2024-09-17T01:19:27.808 INFO:teuthology.orchestra.run.smithi191.stdout:(33/37): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.2 MB/s | 90 kB 00:00 2024-09-17T01:19:27.833 INFO:teuthology.orchestra.run.smithi191.stdout:(34/37): python3-pecan-1.4.2-3.el9.noarch.rpm 1.8 MB/s | 272 kB 00:00 2024-09-17T01:19:27.858 INFO:teuthology.orchestra.run.smithi191.stdout:(35/37): python3-webob-1.8.8-2.el9.noarch.rpm 3.0 MB/s | 230 kB 00:00 2024-09-17T01:19:27.884 INFO:teuthology.orchestra.run.smithi191.stdout:(36/37): python3-zc-lockfile-2.0-10.el9.noarch. 400 kB/s | 20 kB 00:00 2024-09-17T01:19:27.909 INFO:teuthology.orchestra.run.smithi191.stdout:(37/37): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.1 MB/s | 427 kB 00:00 2024-09-17T01:19:27.913 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:27.913 INFO:teuthology.orchestra.run.smithi191.stdout:Total 11 MB/s | 30 MB 00:02 2024-09-17T01:19:28.065 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:19:28.105 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:19:28.105 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:19:28.374 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:19:28.429 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-osd-2:19.1.1-330.gc2ddf972.el9.x86_64 34/37 2024-09-17T01:19:28.432 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/37 2024-09-17T01:19:28.456 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-osd-2:19.1.1-330.gc2ddf972.el9.x86_64 34/37 2024-09-17T01:19:28.457 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:28.457 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-17T01:19:28.457 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-17T01:19:28.457 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-17T01:19:28.457 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:28.474 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/37 2024-09-17T01:19:28.510 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/37 2024-09-17T01:19:28.575 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:19:28.576 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:19:28.586 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/37 2024-09-17T01:19:28.635 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : luarocks-3.9.2-5.el9.noarch 5/37 2024-09-17T01:19:28.667 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/37 2024-09-17T01:19:28.763 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/37 2024-09-17T01:19:28.841 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/37 2024-09-17T01:19:28.887 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 9/37 2024-09-17T01:19:28.897 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mon-2:19.1.1-330.gc2ddf972.el9.x86_64 35/37 2024-09-17T01:19:28.920 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mon-2:19.1.1-330.gc2ddf972.el9.x86_64 35/37 2024-09-17T01:19:28.920 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:28.920 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-17T01:19:28.921 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-17T01:19:28.921 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-17T01:19:28.921 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:28.921 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/37 2024-09-17T01:19:28.951 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/37 2024-09-17T01:19:28.985 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/37 2024-09-17T01:19:29.019 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/37 2024-09-17T01:19:29.060 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/37 2024-09-17T01:19:29.104 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/37 2024-09-17T01:19:29.137 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/37 2024-09-17T01:19:29.147 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mds-2:19.1.1-330.gc2ddf972.el9.x86_64 36/37 2024-09-17T01:19:29.171 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mds-2:19.1.1-330.gc2ddf972.el9.x86_64 36/37 2024-09-17T01:19:29.171 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:29.171 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-17T01:19:29.171 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-17T01:19:29.172 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-17T01:19:29.172 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:29.204 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/37 2024-09-17T01:19:29.235 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-2:19.1.1-330.gc2ddf972.el9.x86_64 37/37 2024-09-17T01:19:29.243 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/37 2024-09-17T01:19:29.321 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/37 2024-09-17T01:19:29.473 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 20/37 2024-09-17T01:19:29.553 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 21/37 2024-09-17T01:19:29.606 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 22/37 2024-09-17T01:19:29.651 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 23/37 2024-09-17T01:19:29.719 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-ply-3.11-14.el9.noarch 24/37 2024-09-17T01:19:29.782 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 25/37 2024-09-17T01:19:29.929 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:19:29.977 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 26/37 2024-09-17T01:19:30.022 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 27/37 2024-09-17T01:19:30.053 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/37 2024-09-17T01:19:30.093 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/37 2024-09-17T01:19:30.103 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 28/37 2024-09-17T01:19:30.122 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/37 2024-09-17T01:19:30.194 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/37 2024-09-17T01:19:30.209 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 29/37 2024-09-17T01:19:30.246 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 30/37 2024-09-17T01:19:30.255 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : luarocks-3.9.2-5.el9.noarch 5/37 2024-09-17T01:19:30.287 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/37 2024-09-17T01:19:30.368 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 31/37 2024-09-17T01:19:30.387 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/37 2024-09-17T01:19:30.467 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/37 2024-09-17T01:19:30.507 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 9/37 2024-09-17T01:19:30.533 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-mgr-modules-core-2:19.1.1-330.gc2ddf972.el9.n 32/37 2024-09-17T01:19:30.541 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/37 2024-09-17T01:19:30.563 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 33/37 2024-09-17T01:19:30.571 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/37 2024-09-17T01:19:30.591 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 33/37 2024-09-17T01:19:30.591 INFO:teuthology.orchestra.run.smithi047.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:30.591 INFO:teuthology.orchestra.run.smithi047.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-17T01:19:30.591 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-17T01:19:30.592 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-17T01:19:30.592 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:30.605 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/37 2024-09-17T01:19:30.640 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/37 2024-09-17T01:19:30.680 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/37 2024-09-17T01:19:30.723 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/37 2024-09-17T01:19:30.757 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/37 2024-09-17T01:19:30.849 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/37 2024-09-17T01:19:30.888 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/37 2024-09-17T01:19:30.961 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/37 2024-09-17T01:19:31.101 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 20/37 2024-09-17T01:19:31.141 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-2:19.1.1-330.gc2ddf972.el9.x86_64 37/37 2024-09-17T01:19:31.141 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-2:19.1.1-330.gc2ddf972.el9.x86_64 1/37 2024-09-17T01:19:31.142 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mds-2:19.1.1-330.gc2ddf972.el9.x86_64 2/37 2024-09-17T01:19:31.142 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 3/37 2024-09-17T01:19:31.142 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mon-2:19.1.1-330.gc2ddf972.el9.x86_64 4/37 2024-09-17T01:19:31.142 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-osd-2:19.1.1-330.gc2ddf972.el9.x86_64 5/37 2024-09-17T01:19:31.142 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-modules-core-2:19.1.1-330.gc2ddf972.el9.n 6/37 2024-09-17T01:19:31.142 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/37 2024-09-17T01:19:31.142 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/37 2024-09-17T01:19:31.142 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/37 2024-09-17T01:19:31.142 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/37 2024-09-17T01:19:31.143 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/37 2024-09-17T01:19:31.143 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/37 2024-09-17T01:19:31.143 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/37 2024-09-17T01:19:31.143 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/37 2024-09-17T01:19:31.143 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/37 2024-09-17T01:19:31.143 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 16/37 2024-09-17T01:19:31.143 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 17/37 2024-09-17T01:19:31.143 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 18/37 2024-09-17T01:19:31.143 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 19/37 2024-09-17T01:19:31.144 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 20/37 2024-09-17T01:19:31.144 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 21/37 2024-09-17T01:19:31.144 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 22/37 2024-09-17T01:19:31.144 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 23/37 2024-09-17T01:19:31.144 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 24/37 2024-09-17T01:19:31.144 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 25/37 2024-09-17T01:19:31.145 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 26/37 2024-09-17T01:19:31.145 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 27/37 2024-09-17T01:19:31.145 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 28/37 2024-09-17T01:19:31.145 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 29/37 2024-09-17T01:19:31.145 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 30/37 2024-09-17T01:19:31.146 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 31/37 2024-09-17T01:19:31.146 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 32/37 2024-09-17T01:19:31.146 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 33/37 2024-09-17T01:19:31.146 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 34/37 2024-09-17T01:19:31.146 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 35/37 2024-09-17T01:19:31.146 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 36/37 2024-09-17T01:19:31.180 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 21/37 2024-09-17T01:19:31.240 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 22/37 2024-09-17T01:19:31.279 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 23/37 2024-09-17T01:19:31.337 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-ply-3.11-14.el9.noarch 24/37 2024-09-17T01:19:31.392 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 25/37 2024-09-17T01:19:31.580 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 26/37 2024-09-17T01:19:31.633 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 27/37 2024-09-17T01:19:31.703 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 28/37 2024-09-17T01:19:31.791 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 29/37 2024-09-17T01:19:31.840 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 30/37 2024-09-17T01:19:31.957 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 31/37 2024-09-17T01:19:32.130 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-modules-core-2:19.1.1-330.gc2ddf972.el9.n 32/37 2024-09-17T01:19:32.131 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-osd-2:19.1.1-330.gc2ddf972.el9.x86_64 34/37 2024-09-17T01:19:32.159 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 33/37 2024-09-17T01:19:32.161 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-osd-2:19.1.1-330.gc2ddf972.el9.x86_64 34/37 2024-09-17T01:19:32.161 INFO:teuthology.orchestra.run.smithi047.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:32.161 INFO:teuthology.orchestra.run.smithi047.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-17T01:19:32.162 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-17T01:19:32.162 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-17T01:19:32.162 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:32.185 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 33/37 2024-09-17T01:19:32.185 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:32.185 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-17T01:19:32.185 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-17T01:19:32.185 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-17T01:19:32.185 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:32.268 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 37/37 2024-09-17T01:19:32.268 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:32.268 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:19:32.268 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:32.268 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mds-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:32.268 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:32.268 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-modules-core-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:32.268 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mon-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:32.268 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-osd-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:32.268 INFO:teuthology.orchestra.run.smithi160.stdout: lua-5.4.4-4.el9.x86_64 2024-09-17T01:19:32.269 INFO:teuthology.orchestra.run.smithi160.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-09-17T01:19:32.269 INFO:teuthology.orchestra.run.smithi160.stdout: luarocks-3.9.2-5.el9.noarch 2024-09-17T01:19:32.269 INFO:teuthology.orchestra.run.smithi160.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-17T01:19:32.269 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-17T01:19:32.269 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-17T01:19:32.269 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-17T01:19:32.269 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-17T01:19:32.269 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-17T01:19:32.269 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-17T01:19:32.269 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-17T01:19:32.269 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-17T01:19:32.269 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-17T01:19:32.269 INFO:teuthology.orchestra.run.smithi160.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-17T01:19:32.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-17T01:19:32.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-17T01:19:32.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-17T01:19:32.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-17T01:19:32.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-17T01:19:32.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ply-3.11-14.el9.noarch 2024-09-17T01:19:32.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-17T01:19:32.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-17T01:19:32.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-17T01:19:32.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-17T01:19:32.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-17T01:19:32.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-17T01:19:32.270 INFO:teuthology.orchestra.run.smithi160.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-17T01:19:32.271 INFO:teuthology.orchestra.run.smithi160.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-17T01:19:32.271 INFO:teuthology.orchestra.run.smithi160.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-17T01:19:32.271 INFO:teuthology.orchestra.run.smithi160.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-17T01:19:32.271 INFO:teuthology.orchestra.run.smithi160.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-17T01:19:32.271 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:32.271 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:19:32.623 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-mon-2:19.1.1-330.gc2ddf972.el9.x86_64 35/37 2024-09-17T01:19:32.648 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-mon-2:19.1.1-330.gc2ddf972.el9.x86_64 35/37 2024-09-17T01:19:32.649 INFO:teuthology.orchestra.run.smithi047.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:32.649 INFO:teuthology.orchestra.run.smithi047.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-17T01:19:32.649 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-17T01:19:32.649 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-17T01:19:32.649 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:32.652 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-base 2024-09-17T01:19:32.899 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-mds-2:19.1.1-330.gc2ddf972.el9.x86_64 36/37 2024-09-17T01:19:32.924 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-mds-2:19.1.1-330.gc2ddf972.el9.x86_64 36/37 2024-09-17T01:19:32.924 INFO:teuthology.orchestra.run.smithi047.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:32.924 INFO:teuthology.orchestra.run.smithi047.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-17T01:19:32.924 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-17T01:19:32.925 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-17T01:19:32.925 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:32.991 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-2:19.1.1-330.gc2ddf972.el9.x86_64 37/37 2024-09-17T01:19:33.252 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:52 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:33.342 INFO:teuthology.orchestra.run.smithi160.stdout:Package ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:19:33.384 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:19:33.385 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-17T01:19:33.385 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:19:33.460 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install cephadm 2024-09-17T01:19:33.635 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-osd-2:19.1.1-330.gc2ddf972.el9.x86_64 34/37 2024-09-17T01:19:33.662 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-osd-2:19.1.1-330.gc2ddf972.el9.x86_64 34/37 2024-09-17T01:19:33.663 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:33.663 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-17T01:19:33.663 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-17T01:19:33.663 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-17T01:19:33.663 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:34.043 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:53 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:34.102 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mon-2:19.1.1-330.gc2ddf972.el9.x86_64 35/37 2024-09-17T01:19:34.126 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mon-2:19.1.1-330.gc2ddf972.el9.x86_64 35/37 2024-09-17T01:19:34.126 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:34.127 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-17T01:19:34.127 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-17T01:19:34.127 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-17T01:19:34.127 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:34.176 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:19:34.177 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:34.177 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-17T01:19:34.177 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:34.177 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:19:34.177 INFO:teuthology.orchestra.run.smithi160.stdout: cephadm noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 765 k 2024-09-17T01:19:34.177 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:34.177 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:19:34.177 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:34.177 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-17T01:19:34.177 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:34.178 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 765 k 2024-09-17T01:19:34.178 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 771 k 2024-09-17T01:19:34.178 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:19:34.353 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mds-2:19.1.1-330.gc2ddf972.el9.x86_64 36/37 2024-09-17T01:19:34.376 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mds-2:19.1.1-330.gc2ddf972.el9.x86_64 36/37 2024-09-17T01:19:34.377 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:34.377 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-17T01:19:34.377 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-17T01:19:34.377 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-17T01:19:34.377 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:34.441 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-2:19.1.1-330.gc2ddf972.el9.x86_64 37/37 2024-09-17T01:19:34.480 INFO:teuthology.orchestra.run.smithi160.stdout:cephadm-19.1.1-330.gc2ddf972.el9.noarch.rpm 2.5 MB/s | 765 kB 00:00 2024-09-17T01:19:34.480 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:34.481 INFO:teuthology.orchestra.run.smithi160.stdout:Total 2.5 MB/s | 765 kB 00:00 2024-09-17T01:19:34.481 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:19:34.486 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:19:34.486 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:19:34.492 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:19:34.492 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:19:34.563 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:19:34.828 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-2:19.1.1-330.gc2ddf972.el9.x86_64 37/37 2024-09-17T01:19:34.828 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-2:19.1.1-330.gc2ddf972.el9.x86_64 1/37 2024-09-17T01:19:34.828 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-mds-2:19.1.1-330.gc2ddf972.el9.x86_64 2/37 2024-09-17T01:19:34.828 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 3/37 2024-09-17T01:19:34.828 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-mon-2:19.1.1-330.gc2ddf972.el9.x86_64 4/37 2024-09-17T01:19:34.828 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-osd-2:19.1.1-330.gc2ddf972.el9.x86_64 5/37 2024-09-17T01:19:34.828 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-mgr-modules-core-2:19.1.1-330.gc2ddf972.el9.n 6/37 2024-09-17T01:19:34.828 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/37 2024-09-17T01:19:34.828 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/37 2024-09-17T01:19:34.828 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/37 2024-09-17T01:19:34.829 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/37 2024-09-17T01:19:34.829 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/37 2024-09-17T01:19:34.829 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/37 2024-09-17T01:19:34.829 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/37 2024-09-17T01:19:34.829 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/37 2024-09-17T01:19:34.829 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/37 2024-09-17T01:19:34.829 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 16/37 2024-09-17T01:19:34.829 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 17/37 2024-09-17T01:19:34.829 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 18/37 2024-09-17T01:19:34.829 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 19/37 2024-09-17T01:19:34.829 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 20/37 2024-09-17T01:19:34.829 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 21/37 2024-09-17T01:19:34.829 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 22/37 2024-09-17T01:19:34.830 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 23/37 2024-09-17T01:19:34.830 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 24/37 2024-09-17T01:19:34.830 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 25/37 2024-09-17T01:19:34.830 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 26/37 2024-09-17T01:19:34.830 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 27/37 2024-09-17T01:19:34.831 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 28/37 2024-09-17T01:19:34.831 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 29/37 2024-09-17T01:19:34.831 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 30/37 2024-09-17T01:19:34.831 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 31/37 2024-09-17T01:19:34.831 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 32/37 2024-09-17T01:19:34.831 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 33/37 2024-09-17T01:19:34.831 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 34/37 2024-09-17T01:19:34.831 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 35/37 2024-09-17T01:19:34.832 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 36/37 2024-09-17T01:19:35.042 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:19:35.133 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:19:35.525 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:19:35.764 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:19:35.764 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:35.765 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:19:35.765 INFO:teuthology.orchestra.run.smithi160.stdout: cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:35.765 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:35.765 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:19:35.854 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 37/37 2024-09-17T01:19:35.854 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:35.854 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:19:35.854 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:35.854 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mds-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:35.854 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:35.854 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr-modules-core-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:35.854 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mon-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:35.854 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-osd-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:35.854 INFO:teuthology.orchestra.run.smithi047.stdout: lua-5.4.4-4.el9.x86_64 2024-09-17T01:19:35.855 INFO:teuthology.orchestra.run.smithi047.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-09-17T01:19:35.855 INFO:teuthology.orchestra.run.smithi047.stdout: luarocks-3.9.2-5.el9.noarch 2024-09-17T01:19:35.855 INFO:teuthology.orchestra.run.smithi047.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-17T01:19:35.855 INFO:teuthology.orchestra.run.smithi047.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-17T01:19:35.855 INFO:teuthology.orchestra.run.smithi047.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-17T01:19:35.855 INFO:teuthology.orchestra.run.smithi047.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-17T01:19:35.855 INFO:teuthology.orchestra.run.smithi047.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-17T01:19:35.855 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-17T01:19:35.855 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-17T01:19:35.855 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-17T01:19:35.855 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-17T01:19:35.855 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-17T01:19:35.855 INFO:teuthology.orchestra.run.smithi047.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-17T01:19:35.855 INFO:teuthology.orchestra.run.smithi047.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-17T01:19:35.856 INFO:teuthology.orchestra.run.smithi047.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-17T01:19:35.856 INFO:teuthology.orchestra.run.smithi047.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-17T01:19:35.856 INFO:teuthology.orchestra.run.smithi047.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-17T01:19:35.856 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-17T01:19:35.856 INFO:teuthology.orchestra.run.smithi047.stdout: python3-ply-3.11-14.el9.noarch 2024-09-17T01:19:35.856 INFO:teuthology.orchestra.run.smithi047.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-17T01:19:35.856 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-17T01:19:35.856 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-17T01:19:35.856 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-17T01:19:35.856 INFO:teuthology.orchestra.run.smithi047.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-17T01:19:35.857 INFO:teuthology.orchestra.run.smithi047.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-17T01:19:35.857 INFO:teuthology.orchestra.run.smithi047.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-17T01:19:35.857 INFO:teuthology.orchestra.run.smithi047.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-17T01:19:35.857 INFO:teuthology.orchestra.run.smithi047.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-17T01:19:35.857 INFO:teuthology.orchestra.run.smithi047.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-17T01:19:35.857 INFO:teuthology.orchestra.run.smithi047.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-17T01:19:35.857 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:35.857 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:19:35.950 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-immutable-object-cache 2024-09-17T01:19:36.266 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install ceph-base 2024-09-17T01:19:36.351 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-2:19.1.1-330.gc2ddf972.el9.x86_64 37/37 2024-09-17T01:19:36.352 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-2:19.1.1-330.gc2ddf972.el9.x86_64 1/37 2024-09-17T01:19:36.352 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mds-2:19.1.1-330.gc2ddf972.el9.x86_64 2/37 2024-09-17T01:19:36.352 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 3/37 2024-09-17T01:19:36.352 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mon-2:19.1.1-330.gc2ddf972.el9.x86_64 4/37 2024-09-17T01:19:36.352 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-osd-2:19.1.1-330.gc2ddf972.el9.x86_64 5/37 2024-09-17T01:19:36.352 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-modules-core-2:19.1.1-330.gc2ddf972.el9.n 6/37 2024-09-17T01:19:36.352 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/37 2024-09-17T01:19:36.352 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/37 2024-09-17T01:19:36.352 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/37 2024-09-17T01:19:36.352 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/37 2024-09-17T01:19:36.352 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/37 2024-09-17T01:19:36.353 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/37 2024-09-17T01:19:36.353 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/37 2024-09-17T01:19:36.355 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/37 2024-09-17T01:19:36.356 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/37 2024-09-17T01:19:36.356 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 16/37 2024-09-17T01:19:36.356 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 17/37 2024-09-17T01:19:36.356 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 18/37 2024-09-17T01:19:36.356 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 19/37 2024-09-17T01:19:36.356 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 20/37 2024-09-17T01:19:36.356 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 21/37 2024-09-17T01:19:36.356 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 22/37 2024-09-17T01:19:36.356 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 23/37 2024-09-17T01:19:36.356 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 24/37 2024-09-17T01:19:36.356 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 25/37 2024-09-17T01:19:36.356 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 26/37 2024-09-17T01:19:36.357 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 27/37 2024-09-17T01:19:36.357 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 28/37 2024-09-17T01:19:36.357 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 29/37 2024-09-17T01:19:36.357 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 30/37 2024-09-17T01:19:36.358 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 31/37 2024-09-17T01:19:36.358 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 32/37 2024-09-17T01:19:36.358 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 33/37 2024-09-17T01:19:36.358 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 34/37 2024-09-17T01:19:36.358 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 35/37 2024-09-17T01:19:36.358 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 36/37 2024-09-17T01:19:36.546 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:55 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:36.682 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:19:36.682 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:36.682 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repo Size 2024-09-17T01:19:36.682 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:36.682 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:19:36.683 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-immutable-object-cache x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 145 k 2024-09-17T01:19:36.683 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:36.683 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:19:36.683 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:36.683 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-17T01:19:36.683 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:36.683 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 145 k 2024-09-17T01:19:36.683 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 435 k 2024-09-17T01:19:36.684 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:19:36.879 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:00:55 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:36.894 INFO:teuthology.orchestra.run.smithi160.stdout:ceph-immutable-object-cache-19.1.1-330.gc2ddf97 692 kB/s | 145 kB 00:00 2024-09-17T01:19:36.895 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:36.895 INFO:teuthology.orchestra.run.smithi160.stdout:Total 686 kB/s | 145 kB 00:00 2024-09-17T01:19:36.895 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:19:36.902 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:19:36.903 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:19:36.960 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:19:36.961 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:19:36.972 INFO:teuthology.orchestra.run.smithi047.stdout:Package ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:19:37.017 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:19:37.018 INFO:teuthology.orchestra.run.smithi047.stdout:Nothing to do. 2024-09-17T01:19:37.019 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:19:37.082 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install cephadm 2024-09-17T01:19:37.113 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:19:37.203 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-immutable-object-cache-2:19.1.1-330.gc2ddf972.e 1/1 2024-09-17T01:19:37.229 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.1.1-330.gc2ddf972.e 1/1 2024-09-17T01:19:37.229 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:37.229 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-17T01:19:37.229 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:37.474 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 37/37 2024-09-17T01:19:37.474 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:37.474 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:19:37.474 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:37.474 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mds-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:37.475 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:37.475 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-modules-core-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:37.475 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mon-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:37.475 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-osd-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:37.475 INFO:teuthology.orchestra.run.smithi191.stdout: lua-5.4.4-4.el9.x86_64 2024-09-17T01:19:37.475 INFO:teuthology.orchestra.run.smithi191.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-09-17T01:19:37.475 INFO:teuthology.orchestra.run.smithi191.stdout: luarocks-3.9.2-5.el9.noarch 2024-09-17T01:19:37.475 INFO:teuthology.orchestra.run.smithi191.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-17T01:19:37.475 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-17T01:19:37.475 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-17T01:19:37.475 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-17T01:19:37.475 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-17T01:19:37.476 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-17T01:19:37.476 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-17T01:19:37.476 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-17T01:19:37.476 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-17T01:19:37.476 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-17T01:19:37.476 INFO:teuthology.orchestra.run.smithi191.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-17T01:19:37.476 INFO:teuthology.orchestra.run.smithi191.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-17T01:19:37.476 INFO:teuthology.orchestra.run.smithi191.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-17T01:19:37.476 INFO:teuthology.orchestra.run.smithi191.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-17T01:19:37.476 INFO:teuthology.orchestra.run.smithi191.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-17T01:19:37.476 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-17T01:19:37.476 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ply-3.11-14.el9.noarch 2024-09-17T01:19:37.476 INFO:teuthology.orchestra.run.smithi191.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-17T01:19:37.477 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-17T01:19:37.477 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-17T01:19:37.477 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-17T01:19:37.477 INFO:teuthology.orchestra.run.smithi191.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-17T01:19:37.477 INFO:teuthology.orchestra.run.smithi191.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-17T01:19:37.477 INFO:teuthology.orchestra.run.smithi191.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-17T01:19:37.477 INFO:teuthology.orchestra.run.smithi191.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-17T01:19:37.477 INFO:teuthology.orchestra.run.smithi191.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-17T01:19:37.477 INFO:teuthology.orchestra.run.smithi191.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-17T01:19:37.477 INFO:teuthology.orchestra.run.smithi191.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-17T01:19:37.477 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:37.477 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:19:37.684 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:00:56 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:37.821 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:19:37.821 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:37.822 INFO:teuthology.orchestra.run.smithi047.stdout: Package Arch Version Repository Size 2024-09-17T01:19:37.822 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:37.822 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:19:37.822 INFO:teuthology.orchestra.run.smithi047.stdout: cephadm noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 765 k 2024-09-17T01:19:37.822 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:37.822 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:19:37.822 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:37.822 INFO:teuthology.orchestra.run.smithi047.stdout:Install 1 Package 2024-09-17T01:19:37.822 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:37.822 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 765 k 2024-09-17T01:19:37.822 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 771 k 2024-09-17T01:19:37.822 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:19:37.900 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-base 2024-09-17T01:19:38.099 INFO:teuthology.orchestra.run.smithi047.stdout:cephadm-19.1.1-330.gc2ddf972.el9.noarch.rpm 2.7 MB/s | 765 kB 00:00 2024-09-17T01:19:38.100 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:38.100 INFO:teuthology.orchestra.run.smithi047.stdout:Total 2.7 MB/s | 765 kB 00:00 2024-09-17T01:19:38.100 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:19:38.105 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:19:38.106 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:19:38.112 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:19:38.112 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:19:38.186 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:19:38.206 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-immutable-object-cache-2:19.1.1-330.gc2ddf972.e 1/1 2024-09-17T01:19:38.206 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:38.206 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:19:38.206 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-immutable-object-cache-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:38.206 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:38.206 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:19:38.431 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr 2024-09-17T01:19:38.504 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:53 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:19:38.593 INFO:teuthology.orchestra.run.smithi191.stdout:Package ceph-base-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:19:38.635 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:19:38.636 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-17T01:19:38.636 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:19:38.670 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:19:38.708 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install cephadm 2024-09-17T01:19:38.773 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:19:39.029 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:58 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:39.122 INFO:teuthology.orchestra.run.smithi160.stdout:Package ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:19:39.164 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:19:39.166 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-17T01:19:39.166 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:19:39.166 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:19:39.230 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr-dashboard 2024-09-17T01:19:39.286 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:54 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:19:39.418 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:19:39.418 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:39.418 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-17T01:19:39.418 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:39.418 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:19:39.418 INFO:teuthology.orchestra.run.smithi191.stdout: cephadm noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 765 k 2024-09-17T01:19:39.418 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:39.418 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:19:39.419 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:39.419 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-17T01:19:39.419 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:39.419 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 765 k 2024-09-17T01:19:39.419 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 771 k 2024-09-17T01:19:39.419 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:19:39.430 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:19:39.430 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:39.430 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:19:39.430 INFO:teuthology.orchestra.run.smithi047.stdout: cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:39.430 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:39.430 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:19:39.645 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install ceph-immutable-object-cache 2024-09-17T01:19:39.685 INFO:teuthology.orchestra.run.smithi191.stdout:cephadm-19.1.1-330.gc2ddf972.el9.noarch.rpm 2.8 MB/s | 765 kB 00:00 2024-09-17T01:19:39.686 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:39.686 INFO:teuthology.orchestra.run.smithi191.stdout:Total 2.8 MB/s | 765 kB 00:00 2024-09-17T01:19:39.686 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:19:39.691 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:19:39.691 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:19:39.697 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:19:39.698 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:19:39.766 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:19:39.803 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:58 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:39.937 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:19:39.938 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:39.938 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-17T01:19:39.939 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:39.939 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:19:39.939 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-dashboard noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 3.6 M 2024-09-17T01:19:39.939 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-17T01:19:39.939 INFO:teuthology.orchestra.run.smithi160.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-09-17T01:19:39.939 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-grafana-dashboards noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 32 k 2024-09-17T01:19:39.939 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-prometheus-alerts noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 16 k 2024-09-17T01:19:39.939 INFO:teuthology.orchestra.run.smithi160.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-09-17T01:19:39.939 INFO:teuthology.orchestra.run.smithi160.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-09-17T01:19:39.939 INFO:teuthology.orchestra.run.smithi160.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-09-17T01:19:39.939 INFO:teuthology.orchestra.run.smithi160.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-09-17T01:19:39.939 INFO:teuthology.orchestra.run.smithi160.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-09-17T01:19:39.940 INFO:teuthology.orchestra.run.smithi160.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-09-17T01:19:39.940 INFO:teuthology.orchestra.run.smithi160.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-17T01:19:39.940 INFO:teuthology.orchestra.run.smithi160.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-17T01:19:39.940 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:39.940 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:19:39.940 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:39.940 INFO:teuthology.orchestra.run.smithi160.stdout:Install 12 Packages 2024-09-17T01:19:39.940 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:39.941 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 8.7 M 2024-09-17T01:19:39.941 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 104 M 2024-09-17T01:19:39.941 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:19:40.189 INFO:teuthology.orchestra.run.smithi160.stdout:(1/12): ceph-grafana-dashboards-19.1.1-330.gc2d 220 kB/s | 32 kB 00:00 2024-09-17T01:19:40.206 INFO:teuthology.orchestra.run.smithi160.stdout:(2/12): ceph-prometheus-alerts-19.1.1-330.gc2dd 102 kB/s | 16 kB 00:00 2024-09-17T01:19:40.212 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:19:40.251 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:00:59 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:40.297 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:19:40.388 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:19:40.389 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:40.389 INFO:teuthology.orchestra.run.smithi047.stdout: Package Arch Version Repo Size 2024-09-17T01:19:40.389 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:40.389 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:19:40.389 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-immutable-object-cache x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 145 k 2024-09-17T01:19:40.389 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:40.389 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:19:40.389 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:40.389 INFO:teuthology.orchestra.run.smithi047.stdout:Install 1 Package 2024-09-17T01:19:40.389 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:40.389 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 145 k 2024-09-17T01:19:40.390 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 435 k 2024-09-17T01:19:40.390 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:19:40.406 INFO:teuthology.orchestra.run.smithi160.stdout:(3/12): ceph-mgr-dashboard-19.1.1-330.gc2ddf972 9.8 MB/s | 3.6 MB 00:00 2024-09-17T01:19:40.431 INFO:teuthology.orchestra.run.smithi160.stdout:(4/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.2 MB/s | 269 kB 00:00 2024-09-17T01:19:40.506 INFO:teuthology.orchestra.run.smithi160.stdout:(5/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 7.2 MB/s | 548 kB 00:00 2024-09-17T01:19:40.532 INFO:teuthology.orchestra.run.smithi160.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 785 kB/s | 19 kB 00:00 2024-09-17T01:19:40.565 INFO:teuthology.orchestra.run.smithi160.stdout:(7/12): protobuf-3.14.0-13.el9.x86_64.rpm 2.7 MB/s | 1.0 MB 00:00 2024-09-17T01:19:40.605 INFO:teuthology.orchestra.run.smithi047.stdout:ceph-immutable-object-cache-19.1.1-330.gc2ddf97 674 kB/s | 145 kB 00:00 2024-09-17T01:19:40.606 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:40.606 INFO:teuthology.orchestra.run.smithi047.stdout:Total 668 kB/s | 145 kB 00:00 2024-09-17T01:19:40.607 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:19:40.615 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:19:40.615 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:19:40.649 INFO:teuthology.orchestra.run.smithi160.stdout:(8/12): python3-grpcio-1.46.7-10.el9.x86_64.rpm 17 MB/s | 2.0 MB 00:00 2024-09-17T01:19:40.674 INFO:teuthology.orchestra.run.smithi160.stdout:(9/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 1.3 MB/s | 144 kB 00:00 2024-09-17T01:19:40.676 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:19:40.676 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:19:40.701 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:19:40.708 INFO:teuthology.orchestra.run.smithi160.stdout:(10/12): python3-repoze-lru-0.7-16.el9.noarch.r 525 kB/s | 31 kB 00:00 2024-09-17T01:19:40.733 INFO:teuthology.orchestra.run.smithi160.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 3.1 MB/s | 188 kB 00:00 2024-09-17T01:19:40.792 INFO:teuthology.orchestra.run.smithi160.stdout:(12/12): protobuf-compiler-3.14.0-13.el9.x86_64 2.2 MB/s | 863 kB 00:00 2024-09-17T01:19:40.795 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:40.796 INFO:teuthology.orchestra.run.smithi160.stdout:Total 10 MB/s | 8.7 MB 00:00 2024-09-17T01:19:40.842 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:19:40.849 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:19:40.859 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:19:40.859 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:19:40.940 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-immutable-object-cache-2:19.1.1-330.gc2ddf972.e 1/1 2024-09-17T01:19:40.959 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:19:40.959 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:40.959 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:19:40.959 INFO:teuthology.orchestra.run.smithi191.stdout: cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:40.959 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:40.959 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:19:40.967 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.1.1-330.gc2ddf972.e 1/1 2024-09-17T01:19:40.967 INFO:teuthology.orchestra.run.smithi047.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:40.967 INFO:teuthology.orchestra.run.smithi047.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-17T01:19:40.967 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:41.060 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:19:41.061 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:19:41.173 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-immutable-object-cache 2024-09-17T01:19:41.590 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:19:41.659 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-09-17T01:19:41.702 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-09-17T01:19:41.748 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-09-17T01:19:41.763 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:56 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:19:41.779 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-09-17T01:19:41.873 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-09-17T01:19:41.882 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-immutable-object-cache-2:19.1.1-330.gc2ddf972.e 1/1 2024-09-17T01:19:41.883 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:41.883 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:19:41.883 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-immutable-object-cache-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:41.883 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:41.883 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:19:41.896 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:19:41.897 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:41.897 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repo Size 2024-09-17T01:19:41.897 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:41.897 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:19:41.897 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-immutable-object-cache x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 145 k 2024-09-17T01:19:41.897 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:41.897 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:19:41.897 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:41.897 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-17T01:19:41.897 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:41.898 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 145 k 2024-09-17T01:19:41.898 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 435 k 2024-09-17T01:19:41.898 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:19:41.998 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-09-17T01:19:42.091 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-09-17T01:19:42.115 INFO:teuthology.orchestra.run.smithi191.stdout:ceph-immutable-object-cache-19.1.1-330.gc2ddf97 669 kB/s | 145 kB 00:00 2024-09-17T01:19:42.116 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:42.117 INFO:teuthology.orchestra.run.smithi191.stdout:Total 662 kB/s | 145 kB 00:00 2024-09-17T01:19:42.117 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:19:42.124 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:19:42.124 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:19:42.126 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install ceph-mgr 2024-09-17T01:19:42.143 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-09-17T01:19:42.171 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-09-17T01:19:42.183 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:19:42.184 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:19:42.203 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-prometheus-alerts-2:19.1.1-330.gc2ddf972.el9. 10/12 2024-09-17T01:19:42.347 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:19:42.434 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-immutable-object-cache-2:19.1.1-330.gc2ddf972.e 1/1 2024-09-17T01:19:42.460 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.1.1-330.gc2ddf972.e 1/1 2024-09-17T01:19:42.460 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:19:42.460 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-17T01:19:42.460 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:42.734 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:01 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:42.826 INFO:teuthology.orchestra.run.smithi047.stdout:Package ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:19:42.872 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:19:42.873 INFO:teuthology.orchestra.run.smithi047.stdout:Nothing to do. 2024-09-17T01:19:42.873 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:19:42.948 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install ceph-mgr-dashboard 2024-09-17T01:19:43.278 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-grafana-dashboards-2:19.1.1-330.gc2ddf972.el9 11/12 2024-09-17T01:19:43.311 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-dashboard-2:19.1.1-330.gc2ddf972.el9.noar 12/12 2024-09-17T01:19:43.407 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-immutable-object-cache-2:19.1.1-330.gc2ddf972.e 1/1 2024-09-17T01:19:43.407 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:43.408 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:19:43.408 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-immutable-object-cache-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:19:43.408 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:43.408 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:19:43.551 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:02 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:43.607 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr 2024-09-17T01:19:43.692 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:19:43.693 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:43.693 INFO:teuthology.orchestra.run.smithi047.stdout: Package Arch Version Repository Size 2024-09-17T01:19:43.693 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:43.694 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:19:43.694 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr-dashboard noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 3.6 M 2024-09-17T01:19:43.694 INFO:teuthology.orchestra.run.smithi047.stdout:Installing dependencies: 2024-09-17T01:19:43.694 INFO:teuthology.orchestra.run.smithi047.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-09-17T01:19:43.694 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-grafana-dashboards noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 32 k 2024-09-17T01:19:43.695 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-prometheus-alerts noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 16 k 2024-09-17T01:19:43.695 INFO:teuthology.orchestra.run.smithi047.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-09-17T01:19:43.695 INFO:teuthology.orchestra.run.smithi047.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-09-17T01:19:43.695 INFO:teuthology.orchestra.run.smithi047.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-09-17T01:19:43.695 INFO:teuthology.orchestra.run.smithi047.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-09-17T01:19:43.695 INFO:teuthology.orchestra.run.smithi047.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-09-17T01:19:43.696 INFO:teuthology.orchestra.run.smithi047.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-09-17T01:19:43.696 INFO:teuthology.orchestra.run.smithi047.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-17T01:19:43.696 INFO:teuthology.orchestra.run.smithi047.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-17T01:19:43.696 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:43.696 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:19:43.696 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:19:43.696 INFO:teuthology.orchestra.run.smithi047.stdout:Install 12 Packages 2024-09-17T01:19:43.696 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:43.697 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 8.7 M 2024-09-17T01:19:43.697 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 104 M 2024-09-17T01:19:43.697 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:19:44.200 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:59 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:19:44.291 INFO:teuthology.orchestra.run.smithi191.stdout:Package ceph-mgr-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:19:44.334 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:19:44.335 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-17T01:19:44.335 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:19:44.415 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr-dashboard 2024-09-17T01:19:44.593 INFO:teuthology.orchestra.run.smithi047.stdout:(1/12): ceph-prometheus-alerts-19.1.1-330.gc2dd 112 kB/s | 16 kB 00:00 2024-09-17T01:19:44.619 INFO:teuthology.orchestra.run.smithi047.stdout:(2/12): ceph-grafana-dashboards-19.1.1-330.gc2d 184 kB/s | 32 kB 00:00 2024-09-17T01:19:44.693 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.1.1-330.gc2ddf972.el9.noar 12/12 2024-09-17T01:19:44.693 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-grafana-dashboards-2:19.1.1-330.gc2ddf972.el9 1/12 2024-09-17T01:19:44.693 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-dashboard-2:19.1.1-330.gc2ddf972.el9.noar 2/12 2024-09-17T01:19:44.693 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-prometheus-alerts-2:19.1.1-330.gc2ddf972.el9. 3/12 2024-09-17T01:19:44.693 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-09-17T01:19:44.693 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-09-17T01:19:44.693 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-09-17T01:19:44.693 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-09-17T01:19:44.693 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-09-17T01:19:44.693 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-09-17T01:19:44.694 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-09-17T01:19:44.694 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-09-17T01:19:44.777 INFO:teuthology.orchestra.run.smithi047.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.7 MB/s | 269 kB 00:00 2024-09-17T01:19:44.844 INFO:teuthology.orchestra.run.smithi047.stdout:(4/12): ceph-mgr-dashboard-19.1.1-330.gc2ddf972 8.9 MB/s | 3.6 MB 00:00 2024-09-17T01:19:44.886 INFO:teuthology.orchestra.run.smithi047.stdout:(5/12): protobuf-3.14.0-13.el9.x86_64.rpm 3.5 MB/s | 1.0 MB 00:00 2024-09-17T01:19:44.937 INFO:teuthology.orchestra.run.smithi047.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 390 kB/s | 19 kB 00:00 2024-09-17T01:19:44.970 INFO:teuthology.orchestra.run.smithi047.stdout:(7/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 4.3 MB/s | 548 kB 00:00 2024-09-17T01:19:44.995 INFO:teuthology.orchestra.run.smithi047.stdout:(8/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 5.7 MB/s | 144 kB 00:00 2024-09-17T01:19:44.997 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:59 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:19:45.021 INFO:teuthology.orchestra.run.smithi047.stdout:(9/12): python3-repoze-lru-0.7-16.el9.noarch.rp 1.2 MB/s | 31 kB 00:00 2024-09-17T01:19:45.023 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-09-17T01:19:45.023 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:45.023 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:19:45.023 INFO:teuthology.orchestra.run.smithi160.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-09-17T01:19:45.023 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-grafana-dashboards-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:45.023 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-dashboard-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:45.023 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-prometheus-alerts-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:45.024 INFO:teuthology.orchestra.run.smithi160.stdout: grpc-data-1.46.7-10.el9.noarch 2024-09-17T01:19:45.024 INFO:teuthology.orchestra.run.smithi160.stdout: protobuf-3.14.0-13.el9.x86_64 2024-09-17T01:19:45.024 INFO:teuthology.orchestra.run.smithi160.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-09-17T01:19:45.024 INFO:teuthology.orchestra.run.smithi160.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-09-17T01:19:45.024 INFO:teuthology.orchestra.run.smithi160.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-09-17T01:19:45.024 INFO:teuthology.orchestra.run.smithi160.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-09-17T01:19:45.024 INFO:teuthology.orchestra.run.smithi160.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-17T01:19:45.024 INFO:teuthology.orchestra.run.smithi160.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-17T01:19:45.024 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:45.024 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:19:45.054 INFO:teuthology.orchestra.run.smithi047.stdout:(10/12): protobuf-compiler-3.14.0-13.el9.x86_64 3.0 MB/s | 863 kB 00:00 2024-09-17T01:19:45.088 INFO:teuthology.orchestra.run.smithi047.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 2.8 MB/s | 188 kB 00:00 2024-09-17T01:19:45.131 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:19:45.132 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:45.132 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-17T01:19:45.132 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:45.132 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:19:45.132 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-dashboard noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 3.6 M 2024-09-17T01:19:45.132 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-17T01:19:45.132 INFO:teuthology.orchestra.run.smithi191.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-09-17T01:19:45.132 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-grafana-dashboards noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 32 k 2024-09-17T01:19:45.132 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-prometheus-alerts noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 16 k 2024-09-17T01:19:45.132 INFO:teuthology.orchestra.run.smithi191.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-09-17T01:19:45.132 INFO:teuthology.orchestra.run.smithi191.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-09-17T01:19:45.133 INFO:teuthology.orchestra.run.smithi191.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-09-17T01:19:45.133 INFO:teuthology.orchestra.run.smithi191.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-09-17T01:19:45.133 INFO:teuthology.orchestra.run.smithi191.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-09-17T01:19:45.133 INFO:teuthology.orchestra.run.smithi191.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-09-17T01:19:45.133 INFO:teuthology.orchestra.run.smithi191.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-17T01:19:45.133 INFO:teuthology.orchestra.run.smithi191.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-17T01:19:45.133 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:45.133 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:19:45.133 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:19:45.133 INFO:teuthology.orchestra.run.smithi191.stdout:Install 12 Packages 2024-09-17T01:19:45.133 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:45.134 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 8.7 M 2024-09-17T01:19:45.134 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 104 M 2024-09-17T01:19:45.134 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:19:45.146 INFO:teuthology.orchestra.run.smithi047.stdout:(12/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 9.7 MB/s | 2.0 MB 00:00 2024-09-17T01:19:45.151 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:45.151 INFO:teuthology.orchestra.run.smithi047.stdout:Total 6.0 MB/s | 8.7 MB 00:01 2024-09-17T01:19:45.203 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:19:45.224 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:19:45.224 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:19:45.281 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-17T01:19:45.458 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:19:45.458 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:19:45.637 INFO:teuthology.orchestra.run.smithi191.stdout:(1/12): ceph-grafana-dashboards-19.1.1-330.gc2d 209 kB/s | 32 kB 00:00 2024-09-17T01:19:45.653 INFO:teuthology.orchestra.run.smithi191.stdout:(2/12): ceph-prometheus-alerts-19.1.1-330.gc2dd 97 kB/s | 16 kB 00:00 2024-09-17T01:19:45.863 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:04 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:45.870 INFO:teuthology.orchestra.run.smithi191.stdout:(3/12): ceph-mgr-dashboard-19.1.1-330.gc2ddf972 9.2 MB/s | 3.6 MB 00:00 2024-09-17T01:19:45.895 INFO:teuthology.orchestra.run.smithi191.stdout:(4/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.1 MB/s | 269 kB 00:00 2024-09-17T01:19:45.946 INFO:teuthology.orchestra.run.smithi191.stdout:(5/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 11 MB/s | 548 kB 00:00 2024-09-17T01:19:45.963 INFO:teuthology.orchestra.run.smithi191.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 1.1 MB/s | 19 kB 00:00 2024-09-17T01:19:45.998 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:19:45.999 INFO:teuthology.orchestra.run.smithi160.stdout:====================================================================================== 2024-09-17T01:19:46.000 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-17T01:19:46.000 INFO:teuthology.orchestra.run.smithi160.stdout:====================================================================================== 2024-09-17T01:19:46.000 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:19:46.000 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-diskprediction-local noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 7.4 M 2024-09-17T01:19:46.000 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-17T01:19:46.000 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-17T01:19:46.001 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-17T01:19:46.001 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-17T01:19:46.001 INFO:teuthology.orchestra.run.smithi160.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-17T01:19:46.001 INFO:teuthology.orchestra.run.smithi160.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-17T01:19:46.001 INFO:teuthology.orchestra.run.smithi160.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-17T01:19:46.001 INFO:teuthology.orchestra.run.smithi160.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-17T01:19:46.001 INFO:teuthology.orchestra.run.smithi160.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-17T01:19:46.001 INFO:teuthology.orchestra.run.smithi160.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-17T01:19:46.001 INFO:teuthology.orchestra.run.smithi160.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-17T01:19:46.001 INFO:teuthology.orchestra.run.smithi160.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-17T01:19:46.001 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:46.001 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:19:46.002 INFO:teuthology.orchestra.run.smithi160.stdout:====================================================================================== 2024-09-17T01:19:46.002 INFO:teuthology.orchestra.run.smithi160.stdout:Install 12 Packages 2024-09-17T01:19:46.002 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:46.002 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 38 M 2024-09-17T01:19:46.002 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 212 M 2024-09-17T01:19:46.002 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:19:46.006 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:19:46.030 INFO:teuthology.orchestra.run.smithi191.stdout:(7/12): python3-grpcio-1.46.7-10.el9.x86_64.rpm 31 MB/s | 2.0 MB 00:00 2024-09-17T01:19:46.055 INFO:teuthology.orchestra.run.smithi191.stdout:(8/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 5.7 MB/s | 144 kB 00:00 2024-09-17T01:19:46.089 INFO:teuthology.orchestra.run.smithi191.stdout:(9/12): protobuf-3.14.0-13.el9.x86_64.rpm 2.2 MB/s | 1.0 MB 00:00 2024-09-17T01:19:46.097 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-09-17T01:19:46.114 INFO:teuthology.orchestra.run.smithi191.stdout:(10/12): python3-repoze-lru-0.7-16.el9.noarch.r 524 kB/s | 31 kB 00:00 2024-09-17T01:19:46.133 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-09-17T01:19:46.156 INFO:teuthology.orchestra.run.smithi191.stdout:(11/12): protobuf-compiler-3.14.0-13.el9.x86_64 3.0 MB/s | 863 kB 00:00 2024-09-17T01:19:46.180 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-09-17T01:19:46.189 INFO:teuthology.orchestra.run.smithi191.stdout:(12/12): python3-routes-2.5.1-5.el9.noarch.rpm 1.8 MB/s | 188 kB 00:00 2024-09-17T01:19:46.192 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:46.193 INFO:teuthology.orchestra.run.smithi191.stdout:Total 8.2 MB/s | 8.7 MB 00:01 2024-09-17T01:19:46.209 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-09-17T01:19:46.216 INFO:teuthology.orchestra.run.smithi160.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.5 MB/s | 191 kB 00:00 2024-09-17T01:19:46.241 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:19:46.257 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:19:46.257 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:19:46.291 INFO:teuthology.orchestra.run.smithi160.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 437 kB/s | 33 kB 00:00 2024-09-17T01:19:46.313 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-09-17T01:19:46.433 INFO:teuthology.orchestra.run.smithi160.stdout:(3/12): libgfortran-11.5.0-2.el9.x86_64.rpm 2.3 MB/s | 801 kB 00:00 2024-09-17T01:19:46.442 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-09-17T01:19:46.455 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:19:46.456 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:19:46.541 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-09-17T01:19:46.542 INFO:teuthology.orchestra.run.smithi160.stdout:(4/12): ceph-mgr-diskprediction-local-19.1.1-33 16 MB/s | 7.4 MB 00:00 2024-09-17T01:19:46.567 INFO:teuthology.orchestra.run.smithi160.stdout:(5/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 136 kB/s | 18 kB 00:00 2024-09-17T01:19:46.590 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-09-17T01:19:46.618 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-09-17T01:19:46.642 INFO:teuthology.orchestra.run.smithi160.stdout:(6/12): openblas-0.3.26-2.el9.x86_64.rpm 385 kB/s | 38 kB 00:00 2024-09-17T01:19:46.658 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-prometheus-alerts-2:19.1.1-330.gc2ddf972.el9. 10/12 2024-09-17T01:19:46.742 INFO:teuthology.orchestra.run.smithi160.stdout:(7/12): python3-devel-3.9.19-8.el9.x86_64.rpm 2.4 MB/s | 245 kB 00:00 2024-09-17T01:19:46.868 INFO:teuthology.orchestra.run.smithi160.stdout:(8/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 5.2 MB/s | 3.0 MB 00:00 2024-09-17T01:19:46.926 INFO:teuthology.orchestra.run.smithi160.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 4.2 MB/s | 250 kB 00:00 2024-09-17T01:19:46.984 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:19:46.993 INFO:teuthology.orchestra.run.smithi160.stdout:(10/12): openblas-openmp-0.3.26-2.el9.x86_64.rp 12 MB/s | 4.9 MB 00:00 2024-09-17T01:19:47.065 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-09-17T01:19:47.100 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-09-17T01:19:47.147 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-09-17T01:19:47.177 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-09-17T01:19:47.210 INFO:teuthology.orchestra.run.smithi160.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 11 MB/s | 5.1 MB 00:00 2024-09-17T01:19:47.278 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-09-17T01:19:47.412 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-09-17T01:19:47.506 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-09-17T01:19:47.566 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-09-17T01:19:47.602 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-09-17T01:19:47.634 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-prometheus-alerts-2:19.1.1-330.gc2ddf972.el9. 10/12 2024-09-17T01:19:47.660 INFO:teuthology.orchestra.run.smithi160.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 22 MB/s | 16 MB 00:00 2024-09-17T01:19:47.661 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:47.661 INFO:teuthology.orchestra.run.smithi160.stdout:Total 23 MB/s | 38 MB 00:01 2024-09-17T01:19:47.774 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-grafana-dashboards-2:19.1.1-330.gc2ddf972.el9 11/12 2024-09-17T01:19:47.808 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-mgr-dashboard-2:19.1.1-330.gc2ddf972.el9.noar 12/12 2024-09-17T01:19:48.015 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:19:48.041 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:19:48.041 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:19:48.465 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:19:48.465 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:19:48.694 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-grafana-dashboards-2:19.1.1-330.gc2ddf972.el9 11/12 2024-09-17T01:19:48.735 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-dashboard-2:19.1.1-330.gc2ddf972.el9.noar 12/12 2024-09-17T01:19:49.174 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.1.1-330.gc2ddf972.el9.noar 12/12 2024-09-17T01:19:49.174 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-grafana-dashboards-2:19.1.1-330.gc2ddf972.el9 1/12 2024-09-17T01:19:49.174 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-mgr-dashboard-2:19.1.1-330.gc2ddf972.el9.noar 2/12 2024-09-17T01:19:49.174 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-prometheus-alerts-2:19.1.1-330.gc2ddf972.el9. 3/12 2024-09-17T01:19:49.174 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-09-17T01:19:49.174 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-09-17T01:19:49.174 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-09-17T01:19:49.174 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-09-17T01:19:49.174 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-09-17T01:19:49.174 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-09-17T01:19:49.174 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-09-17T01:19:49.175 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-09-17T01:19:49.248 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:19:49.326 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-17T01:19:49.366 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-17T01:19:49.457 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-17T01:19:49.492 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-09-17T01:19:49.492 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:49.492 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:19:49.492 INFO:teuthology.orchestra.run.smithi047.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-09-17T01:19:49.492 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-grafana-dashboards-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:49.492 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr-dashboard-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:49.492 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-prometheus-alerts-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:49.493 INFO:teuthology.orchestra.run.smithi047.stdout: grpc-data-1.46.7-10.el9.noarch 2024-09-17T01:19:49.493 INFO:teuthology.orchestra.run.smithi047.stdout: protobuf-3.14.0-13.el9.x86_64 2024-09-17T01:19:49.493 INFO:teuthology.orchestra.run.smithi047.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-09-17T01:19:49.493 INFO:teuthology.orchestra.run.smithi047.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-09-17T01:19:49.493 INFO:teuthology.orchestra.run.smithi047.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-09-17T01:19:49.493 INFO:teuthology.orchestra.run.smithi047.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-09-17T01:19:49.493 INFO:teuthology.orchestra.run.smithi047.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-17T01:19:49.493 INFO:teuthology.orchestra.run.smithi047.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-17T01:19:49.493 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:49.493 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:19:49.494 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-17T01:19:49.679 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-17T01:19:49.708 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-17T01:19:49.743 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-17T01:19:49.785 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-17T01:19:50.125 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.1.1-330.gc2ddf972.el9.noar 12/12 2024-09-17T01:19:50.125 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-grafana-dashboards-2:19.1.1-330.gc2ddf972.el9 1/12 2024-09-17T01:19:50.125 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-dashboard-2:19.1.1-330.gc2ddf972.el9.noar 2/12 2024-09-17T01:19:50.125 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-prometheus-alerts-2:19.1.1-330.gc2ddf972.el9. 3/12 2024-09-17T01:19:50.126 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-09-17T01:19:50.126 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-09-17T01:19:50.126 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-09-17T01:19:50.126 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-09-17T01:19:50.126 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-09-17T01:19:50.126 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-09-17T01:19:50.126 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-09-17T01:19:50.126 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-09-17T01:19:50.349 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:09 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:50.432 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-17T01:19:50.438 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-09-17T01:19:50.438 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:50.438 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:19:50.438 INFO:teuthology.orchestra.run.smithi191.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-09-17T01:19:50.439 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-grafana-dashboards-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:50.439 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-dashboard-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:50.439 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-prometheus-alerts-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:50.439 INFO:teuthology.orchestra.run.smithi191.stdout: grpc-data-1.46.7-10.el9.noarch 2024-09-17T01:19:50.439 INFO:teuthology.orchestra.run.smithi191.stdout: protobuf-3.14.0-13.el9.x86_64 2024-09-17T01:19:50.439 INFO:teuthology.orchestra.run.smithi191.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-09-17T01:19:50.439 INFO:teuthology.orchestra.run.smithi191.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-09-17T01:19:50.439 INFO:teuthology.orchestra.run.smithi191.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-09-17T01:19:50.439 INFO:teuthology.orchestra.run.smithi191.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-09-17T01:19:50.439 INFO:teuthology.orchestra.run.smithi191.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-17T01:19:50.439 INFO:teuthology.orchestra.run.smithi191.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-17T01:19:50.439 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:50.439 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:19:50.488 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:19:50.489 INFO:teuthology.orchestra.run.smithi047.stdout:====================================================================================== 2024-09-17T01:19:50.489 INFO:teuthology.orchestra.run.smithi047.stdout: Package Arch Version Repository Size 2024-09-17T01:19:50.489 INFO:teuthology.orchestra.run.smithi047.stdout:====================================================================================== 2024-09-17T01:19:50.490 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:19:50.490 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr-diskprediction-local noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 7.4 M 2024-09-17T01:19:50.490 INFO:teuthology.orchestra.run.smithi047.stdout:Installing dependencies: 2024-09-17T01:19:50.490 INFO:teuthology.orchestra.run.smithi047.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-17T01:19:50.490 INFO:teuthology.orchestra.run.smithi047.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-17T01:19:50.490 INFO:teuthology.orchestra.run.smithi047.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-17T01:19:50.490 INFO:teuthology.orchestra.run.smithi047.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-17T01:19:50.490 INFO:teuthology.orchestra.run.smithi047.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-17T01:19:50.490 INFO:teuthology.orchestra.run.smithi047.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-17T01:19:50.490 INFO:teuthology.orchestra.run.smithi047.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-17T01:19:50.490 INFO:teuthology.orchestra.run.smithi047.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-17T01:19:50.490 INFO:teuthology.orchestra.run.smithi047.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-17T01:19:50.491 INFO:teuthology.orchestra.run.smithi047.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-17T01:19:50.491 INFO:teuthology.orchestra.run.smithi047.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-17T01:19:50.491 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:50.491 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:19:50.491 INFO:teuthology.orchestra.run.smithi047.stdout:====================================================================================== 2024-09-17T01:19:50.491 INFO:teuthology.orchestra.run.smithi047.stdout:Install 12 Packages 2024-09-17T01:19:50.491 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:19:50.492 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 38 M 2024-09-17T01:19:50.492 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 212 M 2024-09-17T01:19:50.492 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:19:50.546 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-17T01:19:50.694 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-17T01:19:51.012 INFO:teuthology.orchestra.run.smithi047.stdout:(1/12): ceph-mgr-diskprediction-local-19.1.1-33 16 MB/s | 7.4 MB 00:00 2024-09-17T01:19:51.079 INFO:teuthology.orchestra.run.smithi047.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 492 kB/s | 33 kB 00:00 2024-09-17T01:19:51.276 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:06 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:19:51.371 INFO:teuthology.orchestra.run.smithi047.stdout:(3/12): libquadmath-11.5.0-2.el9.x86_64.rpm 235 kB/s | 191 kB 00:00 2024-09-17T01:19:51.409 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:19:51.410 INFO:teuthology.orchestra.run.smithi191.stdout:====================================================================================== 2024-09-17T01:19:51.410 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout:====================================================================================== 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-diskprediction-local noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 7.4 M 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-17T01:19:51.411 INFO:teuthology.orchestra.run.smithi191.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-17T01:19:51.412 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:51.412 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:19:51.412 INFO:teuthology.orchestra.run.smithi191.stdout:====================================================================================== 2024-09-17T01:19:51.412 INFO:teuthology.orchestra.run.smithi191.stdout:Install 12 Packages 2024-09-17T01:19:51.412 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:19:51.412 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 38 M 2024-09-17T01:19:51.412 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 212 M 2024-09-17T01:19:51.412 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:19:51.438 INFO:teuthology.orchestra.run.smithi047.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 275 kB/s | 18 kB 00:00 2024-09-17T01:19:51.488 INFO:teuthology.orchestra.run.smithi047.stdout:(5/12): openblas-0.3.26-2.el9.x86_64.rpm 771 kB/s | 38 kB 00:00 2024-09-17T01:19:51.589 INFO:teuthology.orchestra.run.smithi047.stdout:(6/12): libgfortran-11.5.0-2.el9.x86_64.rpm 776 kB/s | 801 kB 00:01 2024-09-17T01:19:51.715 INFO:teuthology.orchestra.run.smithi047.stdout:(7/12): python3-devel-3.9.19-8.el9.x86_64.rpm 1.9 MB/s | 245 kB 00:00 2024-09-17T01:19:51.772 INFO:teuthology.orchestra.run.smithi191.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 888 kB/s | 191 kB 00:00 2024-09-17T01:19:51.787 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-17T01:19:51.880 INFO:teuthology.orchestra.run.smithi191.stdout:(2/12): libgfortran-11.5.0-2.el9.x86_64.rpm 2.4 MB/s | 801 kB 00:00 2024-09-17T01:19:51.881 INFO:teuthology.orchestra.run.smithi047.stdout:(8/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 3.7 MB/s | 3.0 MB 00:00 2024-09-17T01:19:51.973 INFO:teuthology.orchestra.run.smithi047.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.7 MB/s | 250 kB 00:00 2024-09-17T01:19:52.031 INFO:teuthology.orchestra.run.smithi191.stdout:(3/12): ceph-mgr-diskprediction-local-19.1.1-33 16 MB/s | 7.4 MB 00:00 2024-09-17T01:19:52.089 INFO:teuthology.orchestra.run.smithi191.stdout:(4/12): flexiblas-3.0.4-8.el9.x86_64.rpm 103 kB/s | 33 kB 00:00 2024-09-17T01:19:52.289 INFO:teuthology.orchestra.run.smithi191.stdout:(5/12): openblas-0.3.26-2.el9.x86_64.rpm 192 kB/s | 38 kB 00:00 2024-09-17T01:19:52.315 INFO:teuthology.orchestra.run.smithi191.stdout:(6/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 64 kB/s | 18 kB 00:00 2024-09-17T01:19:52.632 INFO:teuthology.orchestra.run.smithi047.stdout:(10/12): openblas-openmp-0.3.26-2.el9.x86_64.rp 4.3 MB/s | 4.9 MB 00:01 2024-09-17T01:19:52.782 INFO:teuthology.orchestra.run.smithi191.stdout:(7/12): python3-devel-3.9.19-8.el9.x86_64.rpm 524 kB/s | 245 kB 00:00 2024-09-17T01:19:52.821 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-17T01:19:52.857 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-diskprediction-local-2:19.1.1-330.gc2ddf9 12/12 2024-09-17T01:19:53.007 INFO:teuthology.orchestra.run.smithi047.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 3.9 MB/s | 5.1 MB 00:01 2024-09-17T01:19:53.057 INFO:teuthology.orchestra.run.smithi191.stdout:(8/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 2.5 MB/s | 3.0 MB 00:01 2024-09-17T01:19:53.191 INFO:teuthology.orchestra.run.smithi191.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 1.8 MB/s | 250 kB 00:00 2024-09-17T01:19:53.325 INFO:teuthology.orchestra.run.smithi191.stdout:(10/12): openblas-openmp-0.3.26-2.el9.x86_64.rp 4.8 MB/s | 4.9 MB 00:01 2024-09-17T01:19:54.716 INFO:teuthology.orchestra.run.smithi191.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 2.6 MB/s | 5.1 MB 00:01 2024-09-17T01:19:55.339 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.1.1-330.gc2ddf9 12/12 2024-09-17T01:19:55.339 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.1.1-330.gc2ddf9 1/12 2024-09-17T01:19:55.340 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-17T01:19:55.340 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-17T01:19:55.340 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-17T01:19:55.340 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-17T01:19:55.340 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-17T01:19:55.340 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-17T01:19:55.340 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-17T01:19:55.340 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-17T01:19:55.340 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-17T01:19:55.340 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-17T01:19:55.796 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-17T01:19:55.796 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:55.796 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:19:55.796 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-diskprediction-local-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:19:55.796 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-17T01:19:55.796 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-17T01:19:55.796 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-17T01:19:55.796 INFO:teuthology.orchestra.run.smithi160.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-17T01:19:55.796 INFO:teuthology.orchestra.run.smithi160.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-17T01:19:55.796 INFO:teuthology.orchestra.run.smithi160.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-17T01:19:55.796 INFO:teuthology.orchestra.run.smithi160.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-17T01:19:55.797 INFO:teuthology.orchestra.run.smithi160.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-17T01:19:55.797 INFO:teuthology.orchestra.run.smithi160.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-17T01:19:55.797 INFO:teuthology.orchestra.run.smithi160.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-17T01:19:55.797 INFO:teuthology.orchestra.run.smithi160.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-17T01:19:55.797 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:55.797 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:19:56.186 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr-rook 2024-09-17T01:19:56.257 INFO:teuthology.orchestra.run.smithi047.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 3.8 MB/s | 16 MB 00:04 2024-09-17T01:19:56.258 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:56.258 INFO:teuthology.orchestra.run.smithi047.stdout:Total 6.6 MB/s | 38 MB 00:05 2024-09-17T01:19:56.631 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:19:56.659 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:19:56.659 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:19:56.782 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:15 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:19:56.917 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:19:56.918 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:56.918 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-17T01:19:56.918 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:56.918 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:19:56.918 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-rook noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 49 k 2024-09-17T01:19:56.918 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-17T01:19:56.918 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-17T01:19:56.918 INFO:teuthology.orchestra.run.smithi160.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-17T01:19:56.919 INFO:teuthology.orchestra.run.smithi160.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-17T01:19:56.919 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-17T01:19:56.919 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-17T01:19:56.919 INFO:teuthology.orchestra.run.smithi160.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-17T01:19:56.919 INFO:teuthology.orchestra.run.smithi160.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-17T01:19:56.919 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-17T01:19:56.919 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-17T01:19:56.919 INFO:teuthology.orchestra.run.smithi160.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-17T01:19:56.919 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-17T01:19:56.919 INFO:teuthology.orchestra.run.smithi160.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-17T01:19:56.919 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:56.919 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:19:56.920 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:19:56.920 INFO:teuthology.orchestra.run.smithi160.stdout:Install 13 Packages 2024-09-17T01:19:56.920 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:19:56.920 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 2.2 M 2024-09-17T01:19:56.920 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 26 M 2024-09-17T01:19:56.920 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:19:57.113 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:19:57.114 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:19:57.458 INFO:teuthology.orchestra.run.smithi160.stdout:(1/13): ceph-mgr-rook-19.1.1-330.gc2ddf972.el9. 292 kB/s | 49 kB 00:00 2024-09-17T01:19:57.583 INFO:teuthology.orchestra.run.smithi160.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 87 kB/s | 26 kB 00:00 2024-09-17T01:19:57.608 INFO:teuthology.orchestra.run.smithi160.stdout:(3/13): python3-jsonpointer-2.0-4.el9.noarch.rp 60 kB/s | 19 kB 00:00 2024-09-17T01:19:57.916 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:19:57.984 INFO:teuthology.orchestra.run.smithi160.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 423 kB/s | 159 kB 00:00 2024-09-17T01:19:58.011 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-17T01:19:58.056 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-17T01:19:58.075 INFO:teuthology.orchestra.run.smithi160.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 597 kB/s | 279 kB 00:00 2024-09-17T01:19:58.101 INFO:teuthology.orchestra.run.smithi160.stdout:(6/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 346 kB/s | 222 kB 00:00 2024-09-17T01:19:58.126 INFO:teuthology.orchestra.run.smithi160.stdout:(7/13): python3-requests-oauthlib-1.3.0-12.el9. 378 kB/s | 54 kB 00:00 2024-09-17T01:19:58.176 INFO:teuthology.orchestra.run.smithi160.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 321 kB/s | 32 kB 00:00 2024-09-17T01:19:58.189 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-17T01:19:58.201 INFO:teuthology.orchestra.run.smithi160.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 188 kB/s | 14 kB 00:00 2024-09-17T01:19:58.232 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-17T01:19:58.235 INFO:teuthology.orchestra.run.smithi160.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 1.7 MB/s | 59 kB 00:00 2024-09-17T01:19:58.260 INFO:teuthology.orchestra.run.smithi160.stdout:(11/13): python3-google-auth-2.34.0-1.el9.noarc 1.6 MB/s | 220 kB 00:00 2024-09-17T01:19:58.286 INFO:teuthology.orchestra.run.smithi160.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 1.7 MB/s | 90 kB 00:00 2024-09-17T01:19:58.327 INFO:teuthology.orchestra.run.smithi160.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 6.8 MB/s | 1.0 MB 00:00 2024-09-17T01:19:58.330 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:19:58.330 INFO:teuthology.orchestra.run.smithi160.stdout:Total 1.6 MB/s | 2.2 MB 00:01 2024-09-17T01:19:58.394 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:19:58.410 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:19:58.410 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:19:58.424 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-17T01:19:58.463 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-17T01:19:58.499 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:19:58.500 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:19:58.543 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-17T01:19:59.007 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:19:59.191 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-17T01:19:59.245 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-17T01:19:59.247 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-17T01:19:59.309 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-17T01:19:59.346 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-17T01:19:59.363 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-17T01:19:59.387 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-17T01:19:59.499 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-17T01:19:59.600 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-17T01:19:59.656 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-17T01:20:00.381 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-17T01:20:00.437 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-17T01:20:00.470 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-17T01:20:00.518 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-17T01:20:00.540 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-rook-2:19.1.1-330.gc2ddf972.el9.noarch 13/13 2024-09-17T01:20:00.685 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-17T01:20:01.343 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-rook-2:19.1.1-330.gc2ddf972.el9.noarch 13/13 2024-09-17T01:20:01.343 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-rook-2:19.1.1-330.gc2ddf972.el9.noarch 1/13 2024-09-17T01:20:01.343 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-17T01:20:01.343 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-17T01:20:01.343 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-17T01:20:01.343 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-17T01:20:01.343 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-17T01:20:01.343 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-17T01:20:01.344 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-17T01:20:01.344 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-17T01:20:01.344 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-17T01:20:01.344 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-17T01:20:01.344 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-17T01:20:01.677 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-17T01:20:01.677 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:01.677 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:20:01.677 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-rook-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:20:01.677 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-17T01:20:01.677 INFO:teuthology.orchestra.run.smithi160.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-17T01:20:01.677 INFO:teuthology.orchestra.run.smithi160.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-17T01:20:01.678 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-17T01:20:01.678 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-17T01:20:01.678 INFO:teuthology.orchestra.run.smithi160.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-17T01:20:01.678 INFO:teuthology.orchestra.run.smithi160.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-17T01:20:01.678 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-17T01:20:01.678 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-17T01:20:01.678 INFO:teuthology.orchestra.run.smithi160.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-17T01:20:01.678 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-17T01:20:01.678 INFO:teuthology.orchestra.run.smithi160.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-17T01:20:01.678 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:01.678 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:01.784 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-17T01:20:01.813 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-mgr-diskprediction-local-2:19.1.1-330.gc2ddf9 12/12 2024-09-17T01:20:01.935 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr-cephadm 2024-09-17T01:20:02.513 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:21 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:02.645 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:02.646 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:02.646 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-17T01:20:02.646 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:02.646 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:20:02.647 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-cephadm noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 146 k 2024-09-17T01:20:02.647 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-17T01:20:02.647 INFO:teuthology.orchestra.run.smithi160.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-17T01:20:02.647 INFO:teuthology.orchestra.run.smithi160.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-17T01:20:02.647 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-17T01:20:02.647 INFO:teuthology.orchestra.run.smithi160.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-17T01:20:02.647 INFO:teuthology.orchestra.run.smithi160.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-17T01:20:02.647 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:02.647 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:20:02.648 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:02.648 INFO:teuthology.orchestra.run.smithi160.stdout:Install 6 Packages 2024-09-17T01:20:02.648 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:02.648 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 7.0 M 2024-09-17T01:20:02.648 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 33 M 2024-09-17T01:20:02.648 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:20:02.929 INFO:teuthology.orchestra.run.smithi160.stdout:(1/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.3 MB/s | 248 kB 00:00 2024-09-17T01:20:02.954 INFO:teuthology.orchestra.run.smithi160.stdout:(2/6): ceph-mgr-cephadm-19.1.1-330.gc2ddf972.el 676 kB/s | 146 kB 00:00 2024-09-17T01:20:03.004 INFO:teuthology.orchestra.run.smithi160.stdout:(3/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 7.1 MB/s | 548 kB 00:00 2024-09-17T01:20:03.030 INFO:teuthology.orchestra.run.smithi160.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 840 kB/s | 58 kB 00:00 2024-09-17T01:20:03.085 INFO:teuthology.orchestra.run.smithi160.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 934 kB/s | 74 kB 00:00 2024-09-17T01:20:03.188 INFO:teuthology.orchestra.run.smithi160.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 13 MB/s | 6.0 MB 00:00 2024-09-17T01:20:03.191 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:03.191 INFO:teuthology.orchestra.run.smithi160.stdout:Total 13 MB/s | 7.0 MB 00:00 2024-09-17T01:20:03.261 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:20:03.273 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:20:03.273 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:20:03.373 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:20:03.373 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:20:03.677 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:20:03.846 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-17T01:20:03.901 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-17T01:20:04.420 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-17T01:20:04.421 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.1.1-330.gc2ddf9 12/12 2024-09-17T01:20:04.421 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.1.1-330.gc2ddf9 1/12 2024-09-17T01:20:04.421 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-17T01:20:04.421 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-17T01:20:04.421 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-17T01:20:04.421 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-17T01:20:04.421 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-17T01:20:04.421 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-17T01:20:04.421 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-17T01:20:04.422 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-17T01:20:04.422 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-17T01:20:04.422 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-17T01:20:04.509 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-17T01:20:04.573 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-17T01:20:04.602 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 6/6 2024-09-17T01:20:04.820 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-17T01:20:04.820 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:04.820 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:20:04.820 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr-diskprediction-local-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:20:04.820 INFO:teuthology.orchestra.run.smithi047.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-17T01:20:04.820 INFO:teuthology.orchestra.run.smithi047.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-17T01:20:04.820 INFO:teuthology.orchestra.run.smithi047.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-17T01:20:04.820 INFO:teuthology.orchestra.run.smithi047.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-17T01:20:04.821 INFO:teuthology.orchestra.run.smithi047.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-17T01:20:04.821 INFO:teuthology.orchestra.run.smithi047.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-17T01:20:04.821 INFO:teuthology.orchestra.run.smithi047.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-17T01:20:04.821 INFO:teuthology.orchestra.run.smithi047.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-17T01:20:04.821 INFO:teuthology.orchestra.run.smithi047.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-17T01:20:04.821 INFO:teuthology.orchestra.run.smithi047.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-17T01:20:04.821 INFO:teuthology.orchestra.run.smithi047.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-17T01:20:04.821 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:04.821 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:05.176 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install ceph-mgr-rook 2024-09-17T01:20:05.371 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 6/6 2024-09-17T01:20:05.372 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/6 2024-09-17T01:20:05.372 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-17T01:20:05.372 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-17T01:20:05.372 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-17T01:20:05.372 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-17T01:20:05.644 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-17T01:20:05.645 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:05.645 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:20:05.645 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:20:05.645 INFO:teuthology.orchestra.run.smithi160.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-17T01:20:05.645 INFO:teuthology.orchestra.run.smithi160.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-17T01:20:05.645 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-17T01:20:05.645 INFO:teuthology.orchestra.run.smithi160.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-17T01:20:05.645 INFO:teuthology.orchestra.run.smithi160.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-17T01:20:05.645 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:05.645 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:05.789 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:24 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:05.900 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-fuse 2024-09-17T01:20:05.931 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:05.932 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:05.932 INFO:teuthology.orchestra.run.smithi047.stdout: Package Arch Version Repository Size 2024-09-17T01:20:05.932 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:05.932 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:20:05.932 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr-rook noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 49 k 2024-09-17T01:20:05.932 INFO:teuthology.orchestra.run.smithi047.stdout:Installing dependencies: 2024-09-17T01:20:05.932 INFO:teuthology.orchestra.run.smithi047.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-17T01:20:05.933 INFO:teuthology.orchestra.run.smithi047.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-17T01:20:05.933 INFO:teuthology.orchestra.run.smithi047.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-17T01:20:05.933 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-17T01:20:05.933 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-17T01:20:05.933 INFO:teuthology.orchestra.run.smithi047.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-17T01:20:05.933 INFO:teuthology.orchestra.run.smithi047.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-17T01:20:05.933 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-17T01:20:05.933 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-17T01:20:05.933 INFO:teuthology.orchestra.run.smithi047.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-17T01:20:05.933 INFO:teuthology.orchestra.run.smithi047.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-17T01:20:05.933 INFO:teuthology.orchestra.run.smithi047.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-17T01:20:05.933 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:05.933 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:20:05.933 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:05.934 INFO:teuthology.orchestra.run.smithi047.stdout:Install 13 Packages 2024-09-17T01:20:05.934 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:05.934 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 2.2 M 2024-09-17T01:20:05.934 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 26 M 2024-09-17T01:20:05.934 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:20:06.485 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:25 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:06.597 INFO:teuthology.orchestra.run.smithi047.stdout:(1/13): ceph-mgr-rook-19.1.1-330.gc2ddf972.el9. 290 kB/s | 49 kB 00:00 2024-09-17T01:20:06.621 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:06.625 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:06.625 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-17T01:20:06.625 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:06.625 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:20:06.625 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-fuse x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 897 k 2024-09-17T01:20:06.625 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-09-17T01:20:06.625 INFO:teuthology.orchestra.run.smithi160.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-17T01:20:06.625 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:06.625 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:20:06.625 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:06.625 INFO:teuthology.orchestra.run.smithi160.stdout:Install 2 Packages 2024-09-17T01:20:06.625 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:06.626 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 977 k 2024-09-17T01:20:06.626 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 2.9 M 2024-09-17T01:20:06.626 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:20:06.714 INFO:teuthology.orchestra.run.smithi047.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 67 kB/s | 19 kB 00:00 2024-09-17T01:20:06.740 INFO:teuthology.orchestra.run.smithi047.stdout:(3/13): python3-jsonpatch-1.21-16.el9.noarch.rp 82 kB/s | 26 kB 00:00 2024-09-17T01:20:06.907 INFO:teuthology.orchestra.run.smithi160.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 526 kB/s | 80 kB 00:00 2024-09-17T01:20:07.065 INFO:teuthology.orchestra.run.smithi160.stdout:(2/2): ceph-fuse-19.1.1-330.gc2ddf972.el9.x86_6 2.8 MB/s | 897 kB 00:00 2024-09-17T01:20:07.066 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:07.066 INFO:teuthology.orchestra.run.smithi160.stdout:Total 2.2 MB/s | 977 kB 00:00 2024-09-17T01:20:07.078 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:20:07.090 INFO:teuthology.orchestra.run.smithi047.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 423 kB/s | 159 kB 00:00 2024-09-17T01:20:07.099 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:20:07.100 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:20:07.157 INFO:teuthology.orchestra.run.smithi047.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 397 kB/s | 222 kB 00:00 2024-09-17T01:20:07.181 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:20:07.181 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:20:07.199 INFO:teuthology.orchestra.run.smithi047.stdout:(6/13): python3-pyasn1-modules-0.4.8-6.el9.noar 608 kB/s | 279 kB 00:00 2024-09-17T01:20:07.224 INFO:teuthology.orchestra.run.smithi047.stdout:(7/13): python3-requests-oauthlib-1.3.0-12.el9. 401 kB/s | 54 kB 00:00 2024-09-17T01:20:07.257 INFO:teuthology.orchestra.run.smithi047.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 321 kB/s | 32 kB 00:00 2024-09-17T01:20:07.316 INFO:teuthology.orchestra.run.smithi047.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 122 kB/s | 14 kB 00:00 2024-09-17T01:20:07.341 INFO:teuthology.orchestra.run.smithi047.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 2.5 MB/s | 59 kB 00:00 2024-09-17T01:20:07.367 INFO:teuthology.orchestra.run.smithi047.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 3.5 MB/s | 90 kB 00:00 2024-09-17T01:20:07.372 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:20:07.400 INFO:teuthology.orchestra.run.smithi047.stdout:(12/13): python3-google-auth-2.34.0-1.el9.noarc 1.3 MB/s | 220 kB 00:00 2024-09-17T01:20:07.434 INFO:teuthology.orchestra.run.smithi047.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 6.2 MB/s | 1.0 MB 00:00 2024-09-17T01:20:07.437 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:07.437 INFO:teuthology.orchestra.run.smithi047.stdout:Total 1.5 MB/s | 2.2 MB 00:01 2024-09-17T01:20:07.510 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:20:07.527 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:20:07.527 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:20:07.531 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-17T01:20:07.598 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 2/2 2024-09-17T01:20:07.626 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:20:07.628 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:20:08.260 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:20:08.299 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 2/2 2024-09-17T01:20:08.299 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 1/2 2024-09-17T01:20:08.440 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-17T01:20:08.503 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-17T01:20:08.569 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-17T01:20:08.595 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-17T01:20:08.596 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:08.596 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:20:08.596 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-17T01:20:08.596 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:08.596 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:08.603 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-17T01:20:08.645 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-17T01:20:08.752 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-17T01:20:08.863 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-17T01:20:08.897 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-volume 2024-09-17T01:20:08.923 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-17T01:20:09.495 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:28 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:09.632 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:09.633 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:09.633 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-09-17T01:20:09.633 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:09.634 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:20:09.634 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-volume noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 285 k 2024-09-17T01:20:09.634 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:09.634 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:20:09.634 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:09.634 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-17T01:20:09.634 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:09.634 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 285 k 2024-09-17T01:20:09.634 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 1.3 M 2024-09-17T01:20:09.634 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:20:09.691 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-17T01:20:09.744 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-17T01:20:09.778 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-17T01:20:09.826 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-17T01:20:09.844 INFO:teuthology.orchestra.run.smithi160.stdout:ceph-volume-19.1.1-330.gc2ddf972.el9.noarch.rpm 1.3 MB/s | 285 kB 00:00 2024-09-17T01:20:09.845 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:09.845 INFO:teuthology.orchestra.run.smithi160.stdout:Total 1.3 MB/s | 285 kB 00:00 2024-09-17T01:20:09.845 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:20:09.854 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:20:09.854 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:20:09.855 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-mgr-rook-2:19.1.1-330.gc2ddf972.el9.noarch 13/13 2024-09-17T01:20:09.879 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:20:09.879 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:20:10.096 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:20:10.180 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-volume-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:20:10.196 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-volume-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:20:10.196 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:20:10.196 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-17T01:20:10.196 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:10.604 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-mgr-rook-2:19.1.1-330.gc2ddf972.el9.noarch 13/13 2024-09-17T01:20:10.605 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-mgr-rook-2:19.1.1-330.gc2ddf972.el9.noarch 1/13 2024-09-17T01:20:10.605 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-17T01:20:10.605 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-17T01:20:10.605 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-17T01:20:10.605 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-17T01:20:10.605 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-17T01:20:10.605 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-17T01:20:10.605 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-17T01:20:10.605 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-17T01:20:10.605 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-17T01:20:10.605 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-17T01:20:10.605 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-17T01:20:10.943 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-17T01:20:10.943 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:10.943 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:20:10.944 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr-rook-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:20:10.944 INFO:teuthology.orchestra.run.smithi047.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-17T01:20:10.944 INFO:teuthology.orchestra.run.smithi047.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-17T01:20:10.944 INFO:teuthology.orchestra.run.smithi047.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-17T01:20:10.944 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-17T01:20:10.944 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-17T01:20:10.944 INFO:teuthology.orchestra.run.smithi047.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-17T01:20:10.944 INFO:teuthology.orchestra.run.smithi047.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-17T01:20:10.944 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-17T01:20:10.944 INFO:teuthology.orchestra.run.smithi047.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-17T01:20:10.944 INFO:teuthology.orchestra.run.smithi047.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-17T01:20:10.944 INFO:teuthology.orchestra.run.smithi047.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-17T01:20:10.945 INFO:teuthology.orchestra.run.smithi047.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-17T01:20:10.945 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:10.945 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:11.200 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install ceph-mgr-cephadm 2024-09-17T01:20:11.211 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-volume-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:20:11.211 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:11.211 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:20:11.211 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-volume-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:20:11.211 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:11.212 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:11.511 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install librados-devel 2024-09-17T01:20:11.810 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:30 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:11.949 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:11.949 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:11.949 INFO:teuthology.orchestra.run.smithi047.stdout: Package Arch Version Repository Size 2024-09-17T01:20:11.949 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:11.950 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:20:11.950 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr-cephadm noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 146 k 2024-09-17T01:20:11.950 INFO:teuthology.orchestra.run.smithi047.stdout:Installing dependencies: 2024-09-17T01:20:11.950 INFO:teuthology.orchestra.run.smithi047.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-17T01:20:11.950 INFO:teuthology.orchestra.run.smithi047.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-17T01:20:11.950 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-17T01:20:11.950 INFO:teuthology.orchestra.run.smithi047.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-17T01:20:11.950 INFO:teuthology.orchestra.run.smithi047.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-17T01:20:11.950 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:11.950 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:20:11.950 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:11.950 INFO:teuthology.orchestra.run.smithi047.stdout:Install 6 Packages 2024-09-17T01:20:11.950 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:11.951 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 7.0 M 2024-09-17T01:20:11.951 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 33 M 2024-09-17T01:20:11.951 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:20:12.117 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:31 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:12.252 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:12.252 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:12.252 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repo Size 2024-09-17T01:20:12.253 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:12.253 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:20:12.253 INFO:teuthology.orchestra.run.smithi160.stdout: librados-devel x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 127 k 2024-09-17T01:20:12.253 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:12.253 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:20:12.253 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:12.253 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-17T01:20:12.253 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:12.254 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 127 k 2024-09-17T01:20:12.254 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 456 k 2024-09-17T01:20:12.254 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:20:12.336 INFO:teuthology.orchestra.run.smithi047.stdout:(1/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.3 MB/s | 248 kB 00:00 2024-09-17T01:20:12.361 INFO:teuthology.orchestra.run.smithi047.stdout:(2/6): ceph-mgr-cephadm-19.1.1-330.gc2ddf972.el 707 kB/s | 146 kB 00:00 2024-09-17T01:20:12.420 INFO:teuthology.orchestra.run.smithi047.stdout:(3/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 6.4 MB/s | 548 kB 00:00 2024-09-17T01:20:12.442 INFO:teuthology.orchestra.run.smithi160.stdout:librados-devel-19.1.1-330.gc2ddf972.el9.x86_64. 674 kB/s | 127 kB 00:00 2024-09-17T01:20:12.442 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:12.443 INFO:teuthology.orchestra.run.smithi160.stdout:Total 668 kB/s | 127 kB 00:00 2024-09-17T01:20:12.443 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:20:12.445 INFO:teuthology.orchestra.run.smithi047.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 691 kB/s | 58 kB 00:00 2024-09-17T01:20:12.448 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:20:12.448 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:20:12.470 INFO:teuthology.orchestra.run.smithi047.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.4 MB/s | 74 kB 00:00 2024-09-17T01:20:12.513 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:20:12.513 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:20:12.664 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:20:12.781 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : librados-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:13.121 INFO:teuthology.orchestra.run.smithi047.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 6.2 MB/s | 6.0 MB 00:00 2024-09-17T01:20:13.123 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:13.123 INFO:teuthology.orchestra.run.smithi047.stdout:Total 6.0 MB/s | 7.0 MB 00:01 2024-09-17T01:20:13.197 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:20:13.210 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:20:13.211 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:20:13.248 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librados-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:13.319 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:20:13.319 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:20:13.525 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librados-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:13.526 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:13.526 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:20:13.526 INFO:teuthology.orchestra.run.smithi160.stdout: librados-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:13.526 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:13.526 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:13.642 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:20:13.801 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install libcephfs2 2024-09-17T01:20:13.818 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-17T01:20:13.865 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-17T01:20:14.056 INFO:teuthology.orchestra.run.smithi191.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 798 kB/s | 16 MB 00:20 2024-09-17T01:20:14.057 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:14.058 INFO:teuthology.orchestra.run.smithi191.stdout:Total 1.7 MB/s | 38 MB 00:22 2024-09-17T01:20:14.406 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:33 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:14.411 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:20:14.417 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-17T01:20:14.437 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:20:14.437 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:20:14.499 INFO:teuthology.orchestra.run.smithi160.stdout:Package libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:14.503 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-17T01:20:14.545 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:14.546 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-17T01:20:14.546 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:14.574 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-17T01:20:14.601 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-mgr-cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 6/6 2024-09-17T01:20:14.617 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install libcephfs-devel 2024-09-17T01:20:14.879 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:20:14.879 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:20:15.209 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:34 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:15.344 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:15.344 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:15.344 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repo Size 2024-09-17T01:20:15.344 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:15.344 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:20:15.344 INFO:teuthology.orchestra.run.smithi160.stdout: libcephfs-devel x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 32 k 2024-09-17T01:20:15.345 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:15.345 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:20:15.345 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:15.345 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-17T01:20:15.345 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:15.345 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 32 k 2024-09-17T01:20:15.345 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 142 k 2024-09-17T01:20:15.346 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:20:15.368 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 6/6 2024-09-17T01:20:15.368 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-mgr-cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/6 2024-09-17T01:20:15.368 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-17T01:20:15.369 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-17T01:20:15.369 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-17T01:20:15.369 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-17T01:20:15.504 INFO:teuthology.orchestra.run.smithi160.stdout:libcephfs-devel-19.1.1-330.gc2ddf972.el9.x86_64 200 kB/s | 32 kB 00:00 2024-09-17T01:20:15.504 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:15.505 INFO:teuthology.orchestra.run.smithi160.stdout:Total 199 kB/s | 32 kB 00:00 2024-09-17T01:20:15.505 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:20:15.508 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:20:15.508 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:20:15.527 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:20:15.527 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:20:15.618 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:20:15.647 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-17T01:20:15.647 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:15.647 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:20:15.647 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-mgr-cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:20:15.647 INFO:teuthology.orchestra.run.smithi047.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-17T01:20:15.647 INFO:teuthology.orchestra.run.smithi047.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-17T01:20:15.647 INFO:teuthology.orchestra.run.smithi047.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-17T01:20:15.647 INFO:teuthology.orchestra.run.smithi047.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-17T01:20:15.647 INFO:teuthology.orchestra.run.smithi047.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-17T01:20:15.647 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:15.648 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:15.668 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:20:15.735 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libcephfs-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:15.757 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-17T01:20:15.804 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-17T01:20:15.903 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-17T01:20:15.919 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install ceph-fuse 2024-09-17T01:20:15.938 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-17T01:20:16.123 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-17T01:20:16.152 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: libcephfs-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:16.154 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-17T01:20:16.231 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-17T01:20:16.389 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libcephfs-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:16.390 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:16.390 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:20:16.390 INFO:teuthology.orchestra.run.smithi160.stdout: libcephfs-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:16.390 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:16.390 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:16.523 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:35 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:16.578 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install librados2 2024-09-17T01:20:16.663 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:16.663 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:16.663 INFO:teuthology.orchestra.run.smithi047.stdout: Package Arch Version Repository Size 2024-09-17T01:20:16.663 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:16.663 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:20:16.663 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-fuse x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 897 k 2024-09-17T01:20:16.663 INFO:teuthology.orchestra.run.smithi047.stdout:Installing dependencies: 2024-09-17T01:20:16.664 INFO:teuthology.orchestra.run.smithi047.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-17T01:20:16.664 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:16.664 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:20:16.664 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:16.664 INFO:teuthology.orchestra.run.smithi047.stdout:Install 2 Packages 2024-09-17T01:20:16.664 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:16.664 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 977 k 2024-09-17T01:20:16.665 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 2.9 M 2024-09-17T01:20:16.665 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:20:16.865 INFO:teuthology.orchestra.run.smithi047.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 531 kB/s | 80 kB 00:00 2024-09-17T01:20:16.886 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-17T01:20:16.990 INFO:teuthology.orchestra.run.smithi047.stdout:(2/2): ceph-fuse-19.1.1-330.gc2ddf972.el9.x86_6 3.2 MB/s | 897 kB 00:00 2024-09-17T01:20:16.991 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:16.991 INFO:teuthology.orchestra.run.smithi047.stdout:Total 2.9 MB/s | 977 kB 00:00 2024-09-17T01:20:17.003 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:20:17.017 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-17T01:20:17.025 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:20:17.025 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:20:17.112 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:20:17.112 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:20:17.167 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:36 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:17.257 INFO:teuthology.orchestra.run.smithi160.stdout:Package librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:17.301 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:17.302 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-17T01:20:17.303 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:17.311 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:20:17.374 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install librbd1 2024-09-17T01:20:17.459 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-17T01:20:17.535 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 2/2 2024-09-17T01:20:17.962 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:36 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:18.052 INFO:teuthology.orchestra.run.smithi160.stdout:Package librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:18.095 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:18.097 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-17T01:20:18.097 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:18.166 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install python3-rados 2024-09-17T01:20:18.202 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 2/2 2024-09-17T01:20:18.202 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 1/2 2024-09-17T01:20:18.256 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-17T01:20:18.513 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-17T01:20:18.513 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:18.513 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:20:18.513 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-17T01:20:18.513 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:18.513 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:18.741 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:37 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:18.787 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install ceph-volume 2024-09-17T01:20:18.830 INFO:teuthology.orchestra.run.smithi160.stdout:Package python3-rados-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:18.873 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:18.874 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-17T01:20:18.875 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:18.949 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install python3-rgw 2024-09-17T01:20:19.310 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-17T01:20:19.337 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-diskprediction-local-2:19.1.1-330.gc2ddf9 12/12 2024-09-17T01:20:19.398 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:38 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:19.533 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:38 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:19.537 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:19.538 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:19.538 INFO:teuthology.orchestra.run.smithi047.stdout: Package Arch Version Repository Size 2024-09-17T01:20:19.538 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:19.538 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:20:19.538 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-volume noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 285 k 2024-09-17T01:20:19.538 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:19.538 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:20:19.538 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:19.538 INFO:teuthology.orchestra.run.smithi047.stdout:Install 1 Package 2024-09-17T01:20:19.538 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:19.539 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 285 k 2024-09-17T01:20:19.539 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 1.3 M 2024-09-17T01:20:19.539 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:20:19.623 INFO:teuthology.orchestra.run.smithi160.stdout:Package python3-rgw-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:19.667 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:19.668 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-17T01:20:19.669 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:19.741 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install python3-cephfs 2024-09-17T01:20:19.770 INFO:teuthology.orchestra.run.smithi047.stdout:ceph-volume-19.1.1-330.gc2ddf972.el9.noarch.rpm 1.2 MB/s | 285 kB 00:00 2024-09-17T01:20:19.770 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:19.771 INFO:teuthology.orchestra.run.smithi047.stdout:Total 1.2 MB/s | 285 kB 00:00 2024-09-17T01:20:19.771 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:20:19.780 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:20:19.780 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:20:19.806 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:20:19.807 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:20:20.039 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:20:20.106 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : ceph-volume-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:20:20.122 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: ceph-volume-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:20:20.122 INFO:teuthology.orchestra.run.smithi047.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:20:20.123 INFO:teuthology.orchestra.run.smithi047.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-17T01:20:20.123 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:20.329 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:39 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:20.419 INFO:teuthology.orchestra.run.smithi160.stdout:Package python3-cephfs-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:20.463 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:20.464 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-17T01:20:20.464 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:20.538 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install python3-rbd 2024-09-17T01:20:21.117 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:40 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:21.148 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : ceph-volume-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:20:21.148 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:21.149 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:20:21.149 INFO:teuthology.orchestra.run.smithi047.stdout: ceph-volume-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:20:21.149 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:21.149 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:21.206 INFO:teuthology.orchestra.run.smithi160.stdout:Package python3-rbd-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:21.249 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:21.250 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-09-17T01:20:21.251 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:21.323 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install rbd-fuse 2024-09-17T01:20:21.476 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install librados-devel 2024-09-17T01:20:22.052 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:41 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:22.097 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:41 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:22.105 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.1.1-330.gc2ddf9 12/12 2024-09-17T01:20:22.105 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.1.1-330.gc2ddf9 1/12 2024-09-17T01:20:22.105 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-17T01:20:22.105 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-17T01:20:22.105 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-17T01:20:22.105 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-17T01:20:22.105 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-17T01:20:22.106 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-17T01:20:22.106 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-17T01:20:22.106 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-17T01:20:22.106 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-17T01:20:22.106 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-17T01:20:22.186 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:22.186 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:22.186 INFO:teuthology.orchestra.run.smithi160.stdout: Package Architecture Version Repository Size 2024-09-17T01:20:22.186 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:22.187 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:20:22.187 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-fuse x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 85 k 2024-09-17T01:20:22.187 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:22.187 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:20:22.187 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:22.187 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-17T01:20:22.187 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:22.187 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 85 k 2024-09-17T01:20:22.187 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 231 k 2024-09-17T01:20:22.187 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:20:22.236 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:22.237 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:22.237 INFO:teuthology.orchestra.run.smithi047.stdout: Package Arch Version Repo Size 2024-09-17T01:20:22.237 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:22.237 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:20:22.237 INFO:teuthology.orchestra.run.smithi047.stdout: librados-devel x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 127 k 2024-09-17T01:20:22.238 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:22.238 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:20:22.238 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:22.238 INFO:teuthology.orchestra.run.smithi047.stdout:Install 1 Package 2024-09-17T01:20:22.238 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:22.238 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 127 k 2024-09-17T01:20:22.238 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 456 k 2024-09-17T01:20:22.238 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:20:22.382 INFO:teuthology.orchestra.run.smithi160.stdout:rbd-fuse-19.1.1-330.gc2ddf972.el9.x86_64.rpm 439 kB/s | 85 kB 00:00 2024-09-17T01:20:22.382 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:22.383 INFO:teuthology.orchestra.run.smithi160.stdout:Total 436 kB/s | 85 kB 00:00 2024-09-17T01:20:22.383 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:20:22.389 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:20:22.389 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:20:22.434 INFO:teuthology.orchestra.run.smithi047.stdout:librados-devel-19.1.1-330.gc2ddf972.el9.x86_64. 645 kB/s | 127 kB 00:00 2024-09-17T01:20:22.435 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:22.435 INFO:teuthology.orchestra.run.smithi047.stdout:Total 641 kB/s | 127 kB 00:00 2024-09-17T01:20:22.435 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:20:22.441 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:20:22.441 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:20:22.453 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:20:22.453 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:20:22.510 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:20:22.511 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:20:22.518 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-17T01:20:22.519 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:22.519 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:20:22.519 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-diskprediction-local-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:20:22.519 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-17T01:20:22.519 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-17T01:20:22.519 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-17T01:20:22.519 INFO:teuthology.orchestra.run.smithi191.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-17T01:20:22.519 INFO:teuthology.orchestra.run.smithi191.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-17T01:20:22.519 INFO:teuthology.orchestra.run.smithi191.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-17T01:20:22.519 INFO:teuthology.orchestra.run.smithi191.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-17T01:20:22.519 INFO:teuthology.orchestra.run.smithi191.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-17T01:20:22.519 INFO:teuthology.orchestra.run.smithi191.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-17T01:20:22.519 INFO:teuthology.orchestra.run.smithi191.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-17T01:20:22.520 INFO:teuthology.orchestra.run.smithi191.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-17T01:20:22.520 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:22.520 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:22.611 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:20:22.665 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:20:22.713 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : rbd-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:22.777 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : librados-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:22.891 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr-rook 2024-09-17T01:20:23.108 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: rbd-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:23.225 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: librados-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:23.369 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : rbd-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:23.369 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:23.370 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:20:23.370 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:23.370 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:23.370 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:23.483 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:38 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:23.495 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : librados-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:23.495 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:23.495 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:20:23.495 INFO:teuthology.orchestra.run.smithi047.stdout: librados-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:23.495 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:23.496 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:23.619 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:23.620 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:23.620 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-17T01:20:23.620 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:23.620 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:20:23.620 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-rook noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 49 k 2024-09-17T01:20:23.620 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-17T01:20:23.620 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-17T01:20:23.620 INFO:teuthology.orchestra.run.smithi191.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-17T01:20:23.621 INFO:teuthology.orchestra.run.smithi191.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-17T01:20:23.621 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-17T01:20:23.621 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-17T01:20:23.621 INFO:teuthology.orchestra.run.smithi191.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-17T01:20:23.621 INFO:teuthology.orchestra.run.smithi191.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-17T01:20:23.621 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-17T01:20:23.621 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-17T01:20:23.621 INFO:teuthology.orchestra.run.smithi191.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-17T01:20:23.621 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-17T01:20:23.621 INFO:teuthology.orchestra.run.smithi191.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-17T01:20:23.621 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:23.621 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:20:23.621 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:23.622 INFO:teuthology.orchestra.run.smithi191.stdout:Install 13 Packages 2024-09-17T01:20:23.622 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:23.622 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 2.2 M 2024-09-17T01:20:23.622 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 26 M 2024-09-17T01:20:23.622 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:20:23.654 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install rbd-mirror 2024-09-17T01:20:23.760 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install libcephfs2 2024-09-17T01:20:23.946 INFO:teuthology.orchestra.run.smithi191.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 171 kB/s | 19 kB 00:00 2024-09-17T01:20:23.971 INFO:teuthology.orchestra.run.smithi191.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 187 kB/s | 26 kB 00:00 2024-09-17T01:20:23.996 INFO:teuthology.orchestra.run.smithi191.stdout:(3/13): ceph-mgr-rook-19.1.1-330.gc2ddf972.el9. 303 kB/s | 49 kB 00:00 2024-09-17T01:20:24.096 INFO:teuthology.orchestra.run.smithi191.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.2 MB/s | 159 kB 00:00 2024-09-17T01:20:24.122 INFO:teuthology.orchestra.run.smithi191.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.2 MB/s | 222 kB 00:00 2024-09-17T01:20:24.147 INFO:teuthology.orchestra.run.smithi191.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.0 MB/s | 54 kB 00:00 2024-09-17T01:20:24.189 INFO:teuthology.orchestra.run.smithi191.stdout:(7/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.4 MB/s | 279 kB 00:00 2024-09-17T01:20:24.214 INFO:teuthology.orchestra.run.smithi191.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 349 kB/s | 32 kB 00:00 2024-09-17T01:20:24.239 INFO:teuthology.orchestra.run.smithi191.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 153 kB/s | 14 kB 00:00 2024-09-17T01:20:24.270 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:43 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:24.273 INFO:teuthology.orchestra.run.smithi191.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 1.8 MB/s | 59 kB 00:00 2024-09-17T01:20:24.332 INFO:teuthology.orchestra.run.smithi191.stdout:(11/13): python3-google-auth-2.34.0-1.el9.noarc 1.5 MB/s | 220 kB 00:00 2024-09-17T01:20:24.359 INFO:teuthology.orchestra.run.smithi191.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 1.0 MB/s | 90 kB 00:00 2024-09-17T01:20:24.373 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:43 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:24.391 INFO:teuthology.orchestra.run.smithi191.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 6.0 MB/s | 1.0 MB 00:00 2024-09-17T01:20:24.393 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:24.393 INFO:teuthology.orchestra.run.smithi191.stdout:Total 2.9 MB/s | 2.2 MB 00:00 2024-09-17T01:20:24.410 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:24.411 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:24.411 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repo Size 2024-09-17T01:20:24.411 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:24.411 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:20:24.411 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-mirror x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 3.1 M 2024-09-17T01:20:24.412 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:24.412 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:20:24.412 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:24.412 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-17T01:20:24.412 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:24.412 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 3.1 M 2024-09-17T01:20:24.412 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 13 M 2024-09-17T01:20:24.412 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:20:24.457 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:20:24.467 INFO:teuthology.orchestra.run.smithi047.stdout:Package libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:24.473 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:20:24.473 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:20:24.514 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:24.515 INFO:teuthology.orchestra.run.smithi047.stdout:Nothing to do. 2024-09-17T01:20:24.515 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:24.562 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:20:24.563 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:20:24.593 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install libcephfs-devel 2024-09-17T01:20:24.761 INFO:teuthology.orchestra.run.smithi160.stdout:rbd-mirror-19.1.1-330.gc2ddf972.el9.x86_64.rpm 8.9 MB/s | 3.1 MB 00:00 2024-09-17T01:20:24.761 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:24.762 INFO:teuthology.orchestra.run.smithi160.stdout:Total 8.8 MB/s | 3.1 MB 00:00 2024-09-17T01:20:24.762 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:20:24.771 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:20:24.771 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:20:24.853 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:20:24.854 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:20:25.072 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:20:25.202 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:44 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:25.255 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-17T01:20:25.281 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:20:25.321 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-17T01:20:25.339 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:25.340 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:25.340 INFO:teuthology.orchestra.run.smithi047.stdout: Package Arch Version Repo Size 2024-09-17T01:20:25.340 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:25.340 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:20:25.340 INFO:teuthology.orchestra.run.smithi047.stdout: libcephfs-devel x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 32 k 2024-09-17T01:20:25.341 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:25.341 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:20:25.341 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:25.341 INFO:teuthology.orchestra.run.smithi047.stdout:Install 1 Package 2024-09-17T01:20:25.341 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:25.341 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 32 k 2024-09-17T01:20:25.341 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 142 k 2024-09-17T01:20:25.341 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:20:25.362 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : rbd-mirror-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:25.387 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: rbd-mirror-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:25.388 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:20:25.388 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-17T01:20:25.388 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-17T01:20:25.388 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-17T01:20:25.388 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:25.480 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-17T01:20:25.500 INFO:teuthology.orchestra.run.smithi047.stdout:libcephfs-devel-19.1.1-330.gc2ddf972.el9.x86_64 200 kB/s | 32 kB 00:00 2024-09-17T01:20:25.500 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:25.500 INFO:teuthology.orchestra.run.smithi047.stdout:Total 198 kB/s | 32 kB 00:00 2024-09-17T01:20:25.501 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:20:25.504 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:20:25.504 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:20:25.517 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-17T01:20:25.528 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:20:25.529 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:20:25.559 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-17T01:20:25.624 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:20:25.663 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-17T01:20:25.742 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : libcephfs-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:25.771 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-17T01:20:25.827 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-17T01:20:26.106 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: libcephfs-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:26.340 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : libcephfs-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:26.340 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:26.340 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:20:26.340 INFO:teuthology.orchestra.run.smithi047.stdout: libcephfs-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:26.340 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:26.340 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:26.538 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install librados2 2024-09-17T01:20:26.564 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-17T01:20:26.625 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-17T01:20:26.648 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : rbd-mirror-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:26.648 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:26.648 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:20:26.648 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-mirror-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:26.648 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:26.648 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:26.658 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-17T01:20:26.707 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-17T01:20:26.737 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-rook-2:19.1.1-330.gc2ddf972.el9.noarch 13/13 2024-09-17T01:20:26.856 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install rbd-nbd 2024-09-17T01:20:27.150 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:46 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:27.242 INFO:teuthology.orchestra.run.smithi047.stdout:Package librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:27.289 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:27.290 INFO:teuthology.orchestra.run.smithi047.stdout:Nothing to do. 2024-09-17T01:20:27.290 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:27.367 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install librbd1 2024-09-17T01:20:27.460 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:46 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:27.475 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-rook-2:19.1.1-330.gc2ddf972.el9.noarch 13/13 2024-09-17T01:20:27.475 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-rook-2:19.1.1-330.gc2ddf972.el9.noarch 1/13 2024-09-17T01:20:27.476 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-17T01:20:27.476 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-17T01:20:27.476 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-17T01:20:27.476 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-17T01:20:27.476 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-17T01:20:27.476 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-17T01:20:27.476 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-17T01:20:27.476 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-17T01:20:27.476 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-17T01:20:27.476 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-17T01:20:27.476 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-17T01:20:27.592 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-09-17T01:20:27.592 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:27.592 INFO:teuthology.orchestra.run.smithi160.stdout: Package Architecture Version Repository Size 2024-09-17T01:20:27.592 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:27.592 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-09-17T01:20:27.592 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-nbd x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 170 k 2024-09-17T01:20:27.592 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:27.592 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-09-17T01:20:27.593 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-09-17T01:20:27.593 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-09-17T01:20:27.593 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:27.593 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 170 k 2024-09-17T01:20:27.593 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 494 k 2024-09-17T01:20:27.593 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-09-17T01:20:27.805 INFO:teuthology.orchestra.run.smithi160.stdout:rbd-nbd-19.1.1-330.gc2ddf972.el9.x86_64.rpm 804 kB/s | 170 kB 00:00 2024-09-17T01:20:27.806 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:27.806 INFO:teuthology.orchestra.run.smithi160.stdout:Total 799 kB/s | 170 kB 00:00 2024-09-17T01:20:27.806 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-09-17T01:20:27.807 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-17T01:20:27.807 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:27.807 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:20:27.807 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-rook-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:20:27.807 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-17T01:20:27.807 INFO:teuthology.orchestra.run.smithi191.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-17T01:20:27.807 INFO:teuthology.orchestra.run.smithi191.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-17T01:20:27.807 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-17T01:20:27.808 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-17T01:20:27.808 INFO:teuthology.orchestra.run.smithi191.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-17T01:20:27.808 INFO:teuthology.orchestra.run.smithi191.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-17T01:20:27.808 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-17T01:20:27.808 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-17T01:20:27.808 INFO:teuthology.orchestra.run.smithi191.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-17T01:20:27.808 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-17T01:20:27.808 INFO:teuthology.orchestra.run.smithi191.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-17T01:20:27.808 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:27.808 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:27.814 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-09-17T01:20:27.814 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-09-17T01:20:27.879 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-09-17T01:20:27.879 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-09-17T01:20:27.975 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:46 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:28.034 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-09-17T01:20:28.069 INFO:teuthology.orchestra.run.smithi047.stdout:Package librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:28.081 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr-cephadm 2024-09-17T01:20:28.115 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:28.116 INFO:teuthology.orchestra.run.smithi047.stdout:Nothing to do. 2024-09-17T01:20:28.117 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:28.145 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : rbd-nbd-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:28.192 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install python3-rados 2024-09-17T01:20:28.568 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: rbd-nbd-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:28.653 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:43 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:28.786 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:28.786 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:28.786 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-17T01:20:28.787 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:28.787 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:20:28.787 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-cephadm noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 146 k 2024-09-17T01:20:28.787 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-17T01:20:28.787 INFO:teuthology.orchestra.run.smithi191.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-17T01:20:28.787 INFO:teuthology.orchestra.run.smithi191.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-17T01:20:28.787 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-17T01:20:28.787 INFO:teuthology.orchestra.run.smithi191.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-17T01:20:28.787 INFO:teuthology.orchestra.run.smithi191.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-17T01:20:28.787 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:28.787 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:20:28.787 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:28.788 INFO:teuthology.orchestra.run.smithi191.stdout:Install 6 Packages 2024-09-17T01:20:28.788 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:28.788 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 7.0 M 2024-09-17T01:20:28.788 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 33 M 2024-09-17T01:20:28.788 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:20:28.805 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:47 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:28.831 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : rbd-nbd-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:28.831 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:28.831 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-09-17T01:20:28.831 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-nbd-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:28.831 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:20:28.831 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-09-17T01:20:28.898 INFO:teuthology.orchestra.run.smithi047.stdout:Package python3-rados-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:28.944 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:28.945 INFO:teuthology.orchestra.run.smithi047.stdout:Nothing to do. 2024-09-17T01:20:28.945 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:29.026 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install python3-rgw 2024-09-17T01:20:29.065 DEBUG:teuthology.parallel:result is None 2024-09-17T01:20:29.584 INFO:teuthology.orchestra.run.smithi191.stdout:(1/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 2.0 MB/s | 248 kB 00:00 2024-09-17T01:20:29.634 INFO:teuthology.orchestra.run.smithi191.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 11 MB/s | 548 kB 00:00 2024-09-17T01:20:29.635 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:48 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:29.659 INFO:teuthology.orchestra.run.smithi191.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 2.3 MB/s | 58 kB 00:00 2024-09-17T01:20:29.693 INFO:teuthology.orchestra.run.smithi191.stdout:(4/6): ceph-mgr-cephadm-19.1.1-330.gc2ddf972.el 627 kB/s | 146 kB 00:00 2024-09-17T01:20:29.718 INFO:teuthology.orchestra.run.smithi191.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.2 MB/s | 74 kB 00:00 2024-09-17T01:20:29.728 INFO:teuthology.orchestra.run.smithi047.stdout:Package python3-rgw-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:29.775 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:29.776 INFO:teuthology.orchestra.run.smithi047.stdout:Nothing to do. 2024-09-17T01:20:29.776 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:29.850 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install python3-cephfs 2024-09-17T01:20:30.456 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:49 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:30.550 INFO:teuthology.orchestra.run.smithi047.stdout:Package python3-cephfs-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:30.596 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:30.597 INFO:teuthology.orchestra.run.smithi047.stdout:Nothing to do. 2024-09-17T01:20:30.597 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:30.675 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install python3-rbd 2024-09-17T01:20:31.002 INFO:teuthology.orchestra.run.smithi191.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 3.9 MB/s | 6.0 MB 00:01 2024-09-17T01:20:31.003 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:31.004 INFO:teuthology.orchestra.run.smithi191.stdout:Total 3.2 MB/s | 7.0 MB 00:02 2024-09-17T01:20:31.078 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:20:31.089 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:20:31.089 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:20:31.191 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:20:31.191 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:20:31.296 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:50 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:31.392 INFO:teuthology.orchestra.run.smithi047.stdout:Package python3-rbd-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:31.438 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:31.439 INFO:teuthology.orchestra.run.smithi047.stdout:Nothing to do. 2024-09-17T01:20:31.439 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:31.502 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:20:31.521 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install rbd-fuse 2024-09-17T01:20:31.674 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-17T01:20:31.720 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-17T01:20:32.140 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:51 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:32.242 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-17T01:20:32.280 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:32.280 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:32.280 INFO:teuthology.orchestra.run.smithi047.stdout: Package Architecture Version Repository Size 2024-09-17T01:20:32.280 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:32.281 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:20:32.281 INFO:teuthology.orchestra.run.smithi047.stdout: rbd-fuse x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 85 k 2024-09-17T01:20:32.281 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:32.281 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:20:32.281 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:32.281 INFO:teuthology.orchestra.run.smithi047.stdout:Install 1 Package 2024-09-17T01:20:32.281 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:32.281 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 85 k 2024-09-17T01:20:32.282 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 231 k 2024-09-17T01:20:32.282 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:20:32.321 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-17T01:20:32.394 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-17T01:20:32.432 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 6/6 2024-09-17T01:20:32.470 INFO:teuthology.orchestra.run.smithi047.stdout:rbd-fuse-19.1.1-330.gc2ddf972.el9.x86_64.rpm 455 kB/s | 85 kB 00:00 2024-09-17T01:20:32.470 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:32.471 INFO:teuthology.orchestra.run.smithi047.stdout:Total 451 kB/s | 85 kB 00:00 2024-09-17T01:20:32.471 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:20:32.478 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:20:32.478 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:20:32.546 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:20:32.547 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:20:32.715 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:20:32.820 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : rbd-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:33.233 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 6/6 2024-09-17T01:20:33.233 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 1/6 2024-09-17T01:20:33.233 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-17T01:20:33.233 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-17T01:20:33.233 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-17T01:20:33.233 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-17T01:20:33.359 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: rbd-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:33.547 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-17T01:20:33.548 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:33.548 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:20:33.548 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-cephadm-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:20:33.548 INFO:teuthology.orchestra.run.smithi191.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-17T01:20:33.548 INFO:teuthology.orchestra.run.smithi191.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-17T01:20:33.548 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-17T01:20:33.548 INFO:teuthology.orchestra.run.smithi191.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-17T01:20:33.548 INFO:teuthology.orchestra.run.smithi191.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-17T01:20:33.548 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:33.548 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:33.628 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : rbd-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:33.628 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:33.628 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:20:33.628 INFO:teuthology.orchestra.run.smithi047.stdout: rbd-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:33.628 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:33.628 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:33.809 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-fuse 2024-09-17T01:20:33.865 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install rbd-mirror 2024-09-17T01:20:34.390 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:49 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:34.482 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:53 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:34.522 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:34.522 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:34.523 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-17T01:20:34.523 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:34.523 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:20:34.523 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-fuse x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 897 k 2024-09-17T01:20:34.523 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-09-17T01:20:34.523 INFO:teuthology.orchestra.run.smithi191.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-17T01:20:34.523 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:34.523 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:20:34.523 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:34.523 INFO:teuthology.orchestra.run.smithi191.stdout:Install 2 Packages 2024-09-17T01:20:34.523 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:34.524 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 977 k 2024-09-17T01:20:34.524 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 2.9 M 2024-09-17T01:20:34.524 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:20:34.622 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:34.623 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:34.624 INFO:teuthology.orchestra.run.smithi047.stdout: Package Arch Version Repo Size 2024-09-17T01:20:34.624 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:34.624 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:20:34.624 INFO:teuthology.orchestra.run.smithi047.stdout: rbd-mirror x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 3.1 M 2024-09-17T01:20:34.624 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:34.624 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:20:34.625 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:34.625 INFO:teuthology.orchestra.run.smithi047.stdout:Install 1 Package 2024-09-17T01:20:34.625 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:34.625 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 3.1 M 2024-09-17T01:20:34.625 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 13 M 2024-09-17T01:20:34.626 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:20:34.829 INFO:teuthology.orchestra.run.smithi191.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 457 kB/s | 80 kB 00:00 2024-09-17T01:20:34.913 INFO:teuthology.orchestra.run.smithi191.stdout:(2/2): ceph-fuse-19.1.1-330.gc2ddf972.el9.x86_6 3.4 MB/s | 897 kB 00:00 2024-09-17T01:20:34.913 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:34.913 INFO:teuthology.orchestra.run.smithi191.stdout:Total 2.4 MB/s | 977 kB 00:00 2024-09-17T01:20:34.925 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:20:34.947 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:20:34.947 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:20:35.002 INFO:teuthology.orchestra.run.smithi047.stdout:rbd-mirror-19.1.1-330.gc2ddf972.el9.x86_64.rpm 8.2 MB/s | 3.1 MB 00:00 2024-09-17T01:20:35.003 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:35.003 INFO:teuthology.orchestra.run.smithi047.stdout:Total 8.2 MB/s | 3.1 MB 00:00 2024-09-17T01:20:35.004 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:20:35.014 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:20:35.014 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:20:35.029 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:20:35.029 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:20:35.101 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:20:35.101 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:20:35.211 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:20:35.369 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-17T01:20:35.437 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 2/2 2024-09-17T01:20:35.558 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:20:35.624 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : rbd-mirror-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:35.650 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: rbd-mirror-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:35.650 INFO:teuthology.orchestra.run.smithi047.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:20:35.650 INFO:teuthology.orchestra.run.smithi047.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-17T01:20:35.650 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-17T01:20:35.650 INFO:teuthology.orchestra.run.smithi047.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-17T01:20:35.650 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:36.139 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 2/2 2024-09-17T01:20:36.139 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 1/2 2024-09-17T01:20:36.465 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-17T01:20:36.465 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:36.465 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:20:36.465 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-17T01:20:36.465 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:36.465 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:36.778 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-volume 2024-09-17T01:20:36.877 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : rbd-mirror-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:36.877 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:36.877 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:20:36.877 INFO:teuthology.orchestra.run.smithi047.stdout: rbd-mirror-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:36.877 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:36.877 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:37.102 DEBUG:teuthology.orchestra.run.smithi047:> sudo yum -y install rbd-nbd 2024-09-17T01:20:37.381 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:52 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:37.517 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:37.518 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:37.519 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-09-17T01:20:37.519 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:37.519 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:20:37.519 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-volume noarch 2:19.1.1-330.gc2ddf972.el9 ceph-noarch 285 k 2024-09-17T01:20:37.519 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:37.519 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:20:37.519 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:37.520 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-17T01:20:37.520 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:37.520 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 285 k 2024-09-17T01:20:37.520 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 1.3 M 2024-09-17T01:20:37.520 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:20:37.720 INFO:teuthology.orchestra.run.smithi047.stdout:Last metadata expiration check: 0:01:56 ago on Tue 17 Sep 2024 01:18:41 AM UTC. 2024-09-17T01:20:37.759 INFO:teuthology.orchestra.run.smithi191.stdout:ceph-volume-19.1.1-330.gc2ddf972.el9.noarch.rpm 1.2 MB/s | 285 kB 00:00 2024-09-17T01:20:37.760 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:37.761 INFO:teuthology.orchestra.run.smithi191.stdout:Total 1.2 MB/s | 285 kB 00:00 2024-09-17T01:20:37.761 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:20:37.769 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:20:37.769 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:20:37.795 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:20:37.795 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:20:37.857 INFO:teuthology.orchestra.run.smithi047.stdout:Dependencies resolved. 2024-09-17T01:20:37.857 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:37.858 INFO:teuthology.orchestra.run.smithi047.stdout: Package Architecture Version Repository Size 2024-09-17T01:20:37.858 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:37.858 INFO:teuthology.orchestra.run.smithi047.stdout:Installing: 2024-09-17T01:20:37.858 INFO:teuthology.orchestra.run.smithi047.stdout: rbd-nbd x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 170 k 2024-09-17T01:20:37.858 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:37.858 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction Summary 2024-09-17T01:20:37.858 INFO:teuthology.orchestra.run.smithi047.stdout:================================================================================ 2024-09-17T01:20:37.858 INFO:teuthology.orchestra.run.smithi047.stdout:Install 1 Package 2024-09-17T01:20:37.858 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:37.858 INFO:teuthology.orchestra.run.smithi047.stdout:Total download size: 170 k 2024-09-17T01:20:37.858 INFO:teuthology.orchestra.run.smithi047.stdout:Installed size: 494 k 2024-09-17T01:20:37.858 INFO:teuthology.orchestra.run.smithi047.stdout:Downloading Packages: 2024-09-17T01:20:38.020 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:20:38.068 INFO:teuthology.orchestra.run.smithi047.stdout:rbd-nbd-19.1.1-330.gc2ddf972.el9.x86_64.rpm 814 kB/s | 170 kB 00:00 2024-09-17T01:20:38.069 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:38.069 INFO:teuthology.orchestra.run.smithi047.stdout:Total 807 kB/s | 170 kB 00:00 2024-09-17T01:20:38.069 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction check 2024-09-17T01:20:38.078 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction check succeeded. 2024-09-17T01:20:38.078 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction test 2024-09-17T01:20:38.087 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-volume-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:20:38.103 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-volume-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:20:38.103 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:20:38.103 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-17T01:20:38.104 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:38.146 INFO:teuthology.orchestra.run.smithi047.stdout:Transaction test succeeded. 2024-09-17T01:20:38.146 INFO:teuthology.orchestra.run.smithi047.stdout:Running transaction 2024-09-17T01:20:38.308 INFO:teuthology.orchestra.run.smithi047.stdout: Preparing : 1/1 2024-09-17T01:20:38.410 INFO:teuthology.orchestra.run.smithi047.stdout: Installing : rbd-nbd-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:38.958 INFO:teuthology.orchestra.run.smithi047.stdout: Running scriptlet: rbd-nbd-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:39.149 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-volume-2:19.1.1-330.gc2ddf972.el9.noarch 1/1 2024-09-17T01:20:39.149 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:39.149 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:20:39.149 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-volume-2:19.1.1-330.gc2ddf972.el9.noarch 2024-09-17T01:20:39.149 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:39.149 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:39.209 INFO:teuthology.orchestra.run.smithi047.stdout: Verifying : rbd-nbd-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:39.209 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:39.210 INFO:teuthology.orchestra.run.smithi047.stdout:Installed: 2024-09-17T01:20:39.210 INFO:teuthology.orchestra.run.smithi047.stdout: rbd-nbd-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:39.210 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:20:39.210 INFO:teuthology.orchestra.run.smithi047.stdout:Complete! 2024-09-17T01:20:39.456 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install librados-devel 2024-09-17T01:20:39.494 DEBUG:teuthology.parallel:result is None 2024-09-17T01:20:40.055 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:55 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:40.189 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:40.190 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:40.190 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repo Size 2024-09-17T01:20:40.190 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:40.190 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:20:40.190 INFO:teuthology.orchestra.run.smithi191.stdout: librados-devel x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 127 k 2024-09-17T01:20:40.191 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:40.191 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:20:40.191 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:40.191 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-17T01:20:40.191 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:40.191 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 127 k 2024-09-17T01:20:40.191 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 456 k 2024-09-17T01:20:40.191 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:20:40.398 INFO:teuthology.orchestra.run.smithi191.stdout:librados-devel-19.1.1-330.gc2ddf972.el9.x86_64. 614 kB/s | 127 kB 00:00 2024-09-17T01:20:40.398 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:40.399 INFO:teuthology.orchestra.run.smithi191.stdout:Total 609 kB/s | 127 kB 00:00 2024-09-17T01:20:40.399 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:20:40.404 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:20:40.404 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:20:40.468 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:20:40.469 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:20:40.622 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:20:40.738 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : librados-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:41.211 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librados-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:41.504 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librados-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:41.504 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:41.504 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:20:41.504 INFO:teuthology.orchestra.run.smithi191.stdout: librados-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:41.504 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:41.504 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:41.785 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install libcephfs2 2024-09-17T01:20:42.381 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:57 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:42.471 INFO:teuthology.orchestra.run.smithi191.stdout:Package libcephfs2-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:42.516 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:42.517 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-17T01:20:42.517 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:42.609 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install libcephfs-devel 2024-09-17T01:20:43.213 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:58 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:43.345 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:43.346 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:43.346 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repo Size 2024-09-17T01:20:43.346 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:43.346 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:20:43.346 INFO:teuthology.orchestra.run.smithi191.stdout: libcephfs-devel x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 32 k 2024-09-17T01:20:43.346 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:43.346 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:20:43.346 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:43.346 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-17T01:20:43.346 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:43.347 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 32 k 2024-09-17T01:20:43.347 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 142 k 2024-09-17T01:20:43.347 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:20:43.507 INFO:teuthology.orchestra.run.smithi191.stdout:libcephfs-devel-19.1.1-330.gc2ddf972.el9.x86_64 198 kB/s | 32 kB 00:00 2024-09-17T01:20:43.507 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:43.508 INFO:teuthology.orchestra.run.smithi191.stdout:Total 196 kB/s | 32 kB 00:00 2024-09-17T01:20:43.508 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:20:43.511 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:20:43.511 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:20:43.530 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:20:43.530 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:20:43.625 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:20:43.738 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libcephfs-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:44.120 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: libcephfs-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:44.355 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libcephfs-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:44.355 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:44.355 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:20:44.355 INFO:teuthology.orchestra.run.smithi191.stdout: libcephfs-devel-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:44.355 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:44.356 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:44.558 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install librados2 2024-09-17T01:20:45.145 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:02:00 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:45.236 INFO:teuthology.orchestra.run.smithi191.stdout:Package librados2-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:45.279 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:45.280 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-17T01:20:45.280 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:45.361 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install librbd1 2024-09-17T01:20:45.945 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:02:00 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:46.034 INFO:teuthology.orchestra.run.smithi191.stdout:Package librbd1-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:46.077 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:46.078 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-17T01:20:46.078 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:46.155 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install python3-rados 2024-09-17T01:20:46.740 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:02:01 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:46.829 INFO:teuthology.orchestra.run.smithi191.stdout:Package python3-rados-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:46.872 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:46.873 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-17T01:20:46.873 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:46.955 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install python3-rgw 2024-09-17T01:20:47.540 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:02:02 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:47.631 INFO:teuthology.orchestra.run.smithi191.stdout:Package python3-rgw-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:47.674 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:47.675 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-17T01:20:47.675 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:47.755 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install python3-cephfs 2024-09-17T01:20:48.354 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:02:03 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:48.445 INFO:teuthology.orchestra.run.smithi191.stdout:Package python3-cephfs-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:48.488 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:48.489 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-17T01:20:48.490 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:48.572 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install python3-rbd 2024-09-17T01:20:49.163 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:02:04 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:49.254 INFO:teuthology.orchestra.run.smithi191.stdout:Package python3-rbd-2:19.1.1-330.gc2ddf972.el9.x86_64 is already installed. 2024-09-17T01:20:49.297 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:49.298 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-09-17T01:20:49.298 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:49.378 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install rbd-fuse 2024-09-17T01:20:49.958 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:02:04 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:50.090 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:50.091 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:50.091 INFO:teuthology.orchestra.run.smithi191.stdout: Package Architecture Version Repository Size 2024-09-17T01:20:50.091 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:50.091 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:20:50.091 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-fuse x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 85 k 2024-09-17T01:20:50.092 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:50.092 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:20:50.092 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:50.092 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-17T01:20:50.092 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:50.092 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 85 k 2024-09-17T01:20:50.092 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 231 k 2024-09-17T01:20:50.092 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:20:50.287 INFO:teuthology.orchestra.run.smithi191.stdout:rbd-fuse-19.1.1-330.gc2ddf972.el9.x86_64.rpm 439 kB/s | 85 kB 00:00 2024-09-17T01:20:50.287 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:50.287 INFO:teuthology.orchestra.run.smithi191.stdout:Total 436 kB/s | 85 kB 00:00 2024-09-17T01:20:50.288 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:20:50.294 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:20:50.294 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:20:50.360 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:20:50.360 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:20:50.514 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:20:50.618 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : rbd-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:51.028 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: rbd-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:51.287 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : rbd-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:51.288 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:51.288 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:20:51.288 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-fuse-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:51.288 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:51.288 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:51.598 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install rbd-mirror 2024-09-17T01:20:52.196 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:02:07 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:52.333 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:52.334 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:52.334 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repo Size 2024-09-17T01:20:52.334 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:52.334 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:20:52.334 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-mirror x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 3.1 M 2024-09-17T01:20:52.334 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:52.334 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:20:52.334 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:52.335 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-17T01:20:52.335 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:52.335 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 3.1 M 2024-09-17T01:20:52.335 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 13 M 2024-09-17T01:20:52.335 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:20:52.688 INFO:teuthology.orchestra.run.smithi191.stdout:rbd-mirror-19.1.1-330.gc2ddf972.el9.x86_64.rpm 8.8 MB/s | 3.1 MB 00:00 2024-09-17T01:20:52.689 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:52.689 INFO:teuthology.orchestra.run.smithi191.stdout:Total 8.7 MB/s | 3.1 MB 00:00 2024-09-17T01:20:52.689 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:20:52.698 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:20:52.698 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:20:52.780 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:20:52.780 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:20:53.214 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:20:53.281 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : rbd-mirror-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:53.306 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: rbd-mirror-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:53.306 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-17T01:20:53.306 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-17T01:20:53.306 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-17T01:20:53.306 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-17T01:20:53.307 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:54.469 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : rbd-mirror-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:54.469 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:54.469 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:20:54.469 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-mirror-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:54.469 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:54.469 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:54.668 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install rbd-nbd 2024-09-17T01:20:55.272 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:02:10 ago on Tue 17 Sep 2024 01:18:45 AM UTC. 2024-09-17T01:20:55.404 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-09-17T01:20:55.405 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:55.405 INFO:teuthology.orchestra.run.smithi191.stdout: Package Architecture Version Repository Size 2024-09-17T01:20:55.405 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:55.405 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-09-17T01:20:55.405 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-nbd x86_64 2:19.1.1-330.gc2ddf972.el9 ceph 170 k 2024-09-17T01:20:55.405 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:55.405 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-09-17T01:20:55.405 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-09-17T01:20:55.405 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-09-17T01:20:55.405 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:55.406 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 170 k 2024-09-17T01:20:55.406 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 494 k 2024-09-17T01:20:55.406 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-09-17T01:20:55.614 INFO:teuthology.orchestra.run.smithi191.stdout:rbd-nbd-19.1.1-330.gc2ddf972.el9.x86_64.rpm 820 kB/s | 170 kB 00:00 2024-09-17T01:20:55.614 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:20:55.614 INFO:teuthology.orchestra.run.smithi191.stdout:Total 815 kB/s | 170 kB 00:00 2024-09-17T01:20:55.615 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-09-17T01:20:55.622 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-09-17T01:20:55.622 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-09-17T01:20:55.687 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-09-17T01:20:55.688 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-09-17T01:20:55.841 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-09-17T01:20:55.945 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : rbd-nbd-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:56.371 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: rbd-nbd-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:56.645 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : rbd-nbd-2:19.1.1-330.gc2ddf972.el9.x86_64 1/1 2024-09-17T01:20:56.645 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:56.645 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-09-17T01:20:56.645 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-nbd-2:19.1.1-330.gc2ddf972.el9.x86_64 2024-09-17T01:20:56.645 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:20:56.645 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-09-17T01:20:56.938 DEBUG:teuthology.parallel:result is None 2024-09-17T01:20:56.939 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T01:20:57.083 DEBUG:teuthology.orchestra.run.smithi047:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-17T01:20:57.110 INFO:teuthology.orchestra.run.smithi047.stdout:19.1.1-330.gc2ddf972.el9 2024-09-17T01:20:57.111 INFO:teuthology.packaging:The installed version of ceph is 19.1.1-330.gc2ddf972.el9 2024-09-17T01:20:57.111 INFO:teuthology.task.install:The correct ceph version 19.1.1-330.gc2ddf972 is installed. 2024-09-17T01:20:57.113 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T01:20:57.254 DEBUG:teuthology.orchestra.run.smithi160:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-17T01:20:57.279 INFO:teuthology.orchestra.run.smithi160.stdout:19.1.1-330.gc2ddf972.el9 2024-09-17T01:20:57.279 INFO:teuthology.packaging:The installed version of ceph is 19.1.1-330.gc2ddf972.el9 2024-09-17T01:20:57.280 INFO:teuthology.task.install:The correct ceph version 19.1.1-330.gc2ddf972 is installed. 2024-09-17T01:20:57.281 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T01:20:57.417 DEBUG:teuthology.orchestra.run.smithi191:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-17T01:20:57.440 INFO:teuthology.orchestra.run.smithi191.stdout:19.1.1-330.gc2ddf972.el9 2024-09-17T01:20:57.440 INFO:teuthology.packaging:The installed version of ceph is 19.1.1-330.gc2ddf972.el9 2024-09-17T01:20:57.440 INFO:teuthology.task.install:The correct ceph version 19.1.1-330.gc2ddf972 is installed. 2024-09-17T01:20:57.442 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-17T01:20:57.442 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-09-17T01:20:57.442 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-17T01:20:57.474 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-17T01:20:57.474 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-17T01:20:57.504 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-17T01:20:57.505 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-17T01:20:57.532 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-17T01:20:57.532 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-09-17T01:20:57.532 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/usr/bin/daemon-helper 2024-09-17T01:20:57.563 DEBUG:teuthology.orchestra.run.smithi047:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-17T01:20:57.633 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-17T01:20:57.633 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/usr/bin/daemon-helper 2024-09-17T01:20:57.663 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-17T01:20:57.731 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-17T01:20:57.731 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/usr/bin/daemon-helper 2024-09-17T01:20:57.758 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-17T01:20:57.823 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-17T01:20:57.824 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-09-17T01:20:57.824 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-17T01:20:57.855 DEBUG:teuthology.orchestra.run.smithi047:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-17T01:20:57.925 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-17T01:20:57.925 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-17T01:20:57.954 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-17T01:20:58.022 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-17T01:20:58.022 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-17T01:20:58.049 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-17T01:20:58.115 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-17T01:20:58.115 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-09-17T01:20:58.115 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/usr/bin/stdin-killer 2024-09-17T01:20:58.146 DEBUG:teuthology.orchestra.run.smithi047:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-17T01:20:58.216 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-17T01:20:58.216 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/usr/bin/stdin-killer 2024-09-17T01:20:58.241 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-17T01:20:58.307 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-17T01:20:58.307 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/usr/bin/stdin-killer 2024-09-17T01:20:58.333 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-17T01:20:58.400 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-17T01:20:58.517 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': False}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN', 'mons down', 'mon down', 'out of quorum', 'CEPHADM_STRAY_HOST', 'CEPHADM_STRAY_DAEMON', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': 'c2ddf9721ef254645201cdbabd9c8f49c30a586f'} 2024-09-17T01:20:58.517 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T01:20:58.518 INFO:tasks.cephadm:Cluster fsid is 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:20:58.518 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-17T01:20:58.518 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.47', 'mon.b': '172.21.15.160', 'mon.c': '172.21.15.191'} 2024-09-17T01:20:58.518 INFO:tasks.cephadm:First mon is mon.a on smithi047 2024-09-17T01:20:58.518 INFO:tasks.cephadm:First mgr is a 2024-09-17T01:20:58.518 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-17T01:20:58.518 DEBUG:teuthology.orchestra.run.smithi047:> sudo hostname $(hostname -s) 2024-09-17T01:20:58.550 DEBUG:teuthology.orchestra.run.smithi160:> sudo hostname $(hostname -s) 2024-09-17T01:20:58.575 DEBUG:teuthology.orchestra.run.smithi191:> sudo hostname $(hostname -s) 2024-09-17T01:20:58.601 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-17T01:20:58.601 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T01:20:58.742 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'c2ddf9721ef254645201cdbabd9c8f49c30a586f', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/56092/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.1.1-330-gc2ddf972', 'node_name': '172.21.5.35+adami05', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.1.1-330.gc2ddf972'}, 'url': 'https://2.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-09-16 16:11:17.578068', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://2.chacra.ceph.com/repos/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-09-17T01:20:58.882 INFO:tasks.util.chacra:got chacra host 2.chacra.ceph.com, ref squid, sha1 c2ddf9721ef254645201cdbabd9c8f49c30a586f from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T01:20:58.884 INFO:tasks.cephadm:Discovered cachra url: https://2.chacra.ceph.com/binaries/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/x86_64/flavors/default/cephadm 2024-09-17T01:20:58.884 INFO:tasks.cephadm:Downloading cephadm from url: https://2.chacra.ceph.com/binaries/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/x86_64/flavors/default/cephadm 2024-09-17T01:20:58.884 DEBUG:teuthology.orchestra.run.smithi047:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T01:20:59.259 INFO:teuthology.orchestra.run.smithi047.stdout:-rw-r--r--. 1 ubuntu ubuntu 784439 Sep 17 01:20 /home/ubuntu/cephtest/cephadm 2024-09-17T01:20:59.259 DEBUG:teuthology.orchestra.run.smithi160:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T01:20:59.597 INFO:teuthology.orchestra.run.smithi160.stdout:-rw-r--r--. 1 ubuntu ubuntu 784439 Sep 17 01:20 /home/ubuntu/cephtest/cephadm 2024-09-17T01:20:59.597 DEBUG:teuthology.orchestra.run.smithi191:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T01:20:59.944 INFO:teuthology.orchestra.run.smithi191.stdout:-rw-r--r--. 1 ubuntu ubuntu 784439 Sep 17 01:20 /home/ubuntu/cephtest/cephadm 2024-09-17T01:20:59.945 DEBUG:teuthology.orchestra.run.smithi047:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T01:20:59.965 DEBUG:teuthology.orchestra.run.smithi160:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T01:20:59.982 DEBUG:teuthology.orchestra.run.smithi191:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T01:21:00.013 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f on all hosts... 2024-09-17T01:21:00.013 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f pull 2024-09-17T01:21:00.016 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f pull 2024-09-17T01:21:00.025 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f pull 2024-09-17T01:21:01.566 INFO:teuthology.orchestra.run.smithi160.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f... 2024-09-17T01:21:01.588 INFO:teuthology.orchestra.run.smithi047.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f... 2024-09-17T01:21:01.717 INFO:teuthology.orchestra.run.smithi191.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f... 2024-09-17T01:21:29.553 INFO:teuthology.orchestra.run.smithi191.stdout:{ 2024-09-17T01:21:29.553 INFO:teuthology.orchestra.run.smithi191.stdout: "ceph_version": "ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable)", 2024-09-17T01:21:29.553 INFO:teuthology.orchestra.run.smithi191.stdout: "image_id": "ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b", 2024-09-17T01:21:29.553 INFO:teuthology.orchestra.run.smithi191.stdout: "repo_digests": [ 2024-09-17T01:21:29.553 INFO:teuthology.orchestra.run.smithi191.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3" 2024-09-17T01:21:29.553 INFO:teuthology.orchestra.run.smithi191.stdout: ] 2024-09-17T01:21:29.553 INFO:teuthology.orchestra.run.smithi191.stdout:} 2024-09-17T01:21:34.853 INFO:teuthology.orchestra.run.smithi160.stdout:{ 2024-09-17T01:21:34.853 INFO:teuthology.orchestra.run.smithi160.stdout: "ceph_version": "ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable)", 2024-09-17T01:21:34.853 INFO:teuthology.orchestra.run.smithi160.stdout: "image_id": "ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b", 2024-09-17T01:21:34.853 INFO:teuthology.orchestra.run.smithi160.stdout: "repo_digests": [ 2024-09-17T01:21:34.853 INFO:teuthology.orchestra.run.smithi160.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3" 2024-09-17T01:21:34.853 INFO:teuthology.orchestra.run.smithi160.stdout: ] 2024-09-17T01:21:34.853 INFO:teuthology.orchestra.run.smithi160.stdout:} 2024-09-17T01:21:37.778 INFO:teuthology.orchestra.run.smithi047.stdout:{ 2024-09-17T01:21:37.778 INFO:teuthology.orchestra.run.smithi047.stdout: "ceph_version": "ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable)", 2024-09-17T01:21:37.778 INFO:teuthology.orchestra.run.smithi047.stdout: "image_id": "ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b", 2024-09-17T01:21:37.779 INFO:teuthology.orchestra.run.smithi047.stdout: "repo_digests": [ 2024-09-17T01:21:37.779 INFO:teuthology.orchestra.run.smithi047.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3" 2024-09-17T01:21:37.779 INFO:teuthology.orchestra.run.smithi047.stdout: ] 2024-09-17T01:21:37.779 INFO:teuthology.orchestra.run.smithi047.stdout:} 2024-09-17T01:21:37.807 DEBUG:teuthology.orchestra.run.smithi047:> sudo mkdir -p /etc/ceph 2024-09-17T01:21:37.850 DEBUG:teuthology.orchestra.run.smithi160:> sudo mkdir -p /etc/ceph 2024-09-17T01:21:37.883 DEBUG:teuthology.orchestra.run.smithi191:> sudo mkdir -p /etc/ceph 2024-09-17T01:21:37.917 DEBUG:teuthology.orchestra.run.smithi047:> sudo chmod 777 /etc/ceph 2024-09-17T01:21:37.944 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod 777 /etc/ceph 2024-09-17T01:21:37.971 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod 777 /etc/ceph 2024-09-17T01:21:38.001 INFO:tasks.cephadm:Writing seed config... 2024-09-17T01:21:38.003 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-09-17T01:21:38.004 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-17T01:21:38.004 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-17T01:21:38.004 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-09-17T01:21:38.004 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-17T01:21:38.004 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-17T01:21:38.004 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-17T01:21:38.005 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-17T01:21:38.005 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-17T01:21:38.006 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-09-17T01:21:38.006 DEBUG:teuthology.orchestra.run.smithi047:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-17T01:21:38.024 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 = 181a7ed8-7493-11ef-bceb-c7b262605968 mon election default strategy = 1 [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 mgr/cephadm/use_agent = False [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-17T01:21:38.025 DEBUG:teuthology.orchestra.run.smithi047:mon.a> sudo journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.a.service 2024-09-17T01:21:38.068 DEBUG:teuthology.orchestra.run.smithi047:mgr.a> sudo journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mgr.a.service 2024-09-17T01:21:38.111 INFO:tasks.cephadm:Bootstrapping... 2024-09-17T01:21:38.112 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f -v bootstrap --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 --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-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 172.21.15.47 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-17T01:21:38.322 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------------------------------------------------------------------- 2024-09-17T01:21:38.322 INFO:teuthology.orchestra.run.smithi047.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f', '-v', 'bootstrap', '--fsid', '181a7ed8-7493-11ef-bceb-c7b262605968', '--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-id', 'a', '--mgr-id', 'a', '--orphan-initial-daemons', '--skip-monitoring-stack', '--mon-ip', '172.21.15.47', '--skip-admin-label'] 2024-09-17T01:21:38.322 INFO:teuthology.orchestra.run.smithi047.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-17T01:21:38.323 INFO:teuthology.orchestra.run.smithi047.stdout:Verifying podman|docker is present... 2024-09-17T01:21:38.347 INFO:teuthology.orchestra.run.smithi047.stdout:/bin/podman: stdout 5.2.2 2024-09-17T01:21:38.347 INFO:teuthology.orchestra.run.smithi047.stdout:Verifying lvm2 is present... 2024-09-17T01:21:38.347 INFO:teuthology.orchestra.run.smithi047.stdout:Verifying time synchronization is in place... 2024-09-17T01:21:38.355 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T01:21:38.355 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T01:21:38.362 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T01:21:38.362 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout inactive 2024-09-17T01:21:38.369 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout enabled 2024-09-17T01:21:38.375 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout active 2024-09-17T01:21:38.375 INFO:teuthology.orchestra.run.smithi047.stdout:Unit chronyd.service is enabled and running 2024-09-17T01:21:38.375 INFO:teuthology.orchestra.run.smithi047.stdout:Repeating the final host check... 2024-09-17T01:21:38.398 INFO:teuthology.orchestra.run.smithi047.stdout:/bin/podman: stdout 5.2.2 2024-09-17T01:21:38.398 INFO:teuthology.orchestra.run.smithi047.stdout:podman (/bin/podman) version 5.2.2 is present 2024-09-17T01:21:38.398 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl is present 2024-09-17T01:21:38.398 INFO:teuthology.orchestra.run.smithi047.stdout:lvcreate is present 2024-09-17T01:21:38.404 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T01:21:38.404 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T01:21:38.411 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T01:21:38.411 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout inactive 2024-09-17T01:21:38.418 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout enabled 2024-09-17T01:21:38.425 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout active 2024-09-17T01:21:38.425 INFO:teuthology.orchestra.run.smithi047.stdout:Unit chronyd.service is enabled and running 2024-09-17T01:21:38.425 INFO:teuthology.orchestra.run.smithi047.stdout:Host looks OK 2024-09-17T01:21:38.425 INFO:teuthology.orchestra.run.smithi047.stdout:Cluster fsid: 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:21:38.426 INFO:teuthology.orchestra.run.smithi047.stdout:Acquiring lock 140604926022656 on /run/cephadm/181a7ed8-7493-11ef-bceb-c7b262605968.lock 2024-09-17T01:21:38.426 INFO:teuthology.orchestra.run.smithi047.stdout:Lock 140604926022656 acquired on /run/cephadm/181a7ed8-7493-11ef-bceb-c7b262605968.lock 2024-09-17T01:21:38.426 INFO:teuthology.orchestra.run.smithi047.stdout:Verifying IP 172.21.15.47 port 3300 ... 2024-09-17T01:21:38.426 INFO:teuthology.orchestra.run.smithi047.stdout:Verifying IP 172.21.15.47 port 6789 ... 2024-09-17T01:21:38.426 INFO:teuthology.orchestra.run.smithi047.stdout:Base mon IP(s) is [172.21.15.47:3300, 172.21.15.47:6789], mon addrv is [v2:172.21.15.47:3300,v1:172.21.15.47:6789] 2024-09-17T01:21:38.429 INFO:teuthology.orchestra.run.smithi047.stdout:/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.47 metric 100 2024-09-17T01:21:38.429 INFO:teuthology.orchestra.run.smithi047.stdout:/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.47 metric 100 2024-09-17T01:21:38.432 INFO:teuthology.orchestra.run.smithi047.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-17T01:21:38.432 INFO:teuthology.orchestra.run.smithi047.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-17T01:21:38.432 INFO:teuthology.orchestra.run.smithi047.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1789sec hoplimit 64 pref medium 2024-09-17T01:21:38.434 INFO:teuthology.orchestra.run.smithi047.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-17T01:21:38.434 INFO:teuthology.orchestra.run.smithi047.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-17T01:21:38.435 INFO:teuthology.orchestra.run.smithi047.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T01:21:38.435 INFO:teuthology.orchestra.run.smithi047.stdout:/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-09-17T01:21:38.435 INFO:teuthology.orchestra.run.smithi047.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:148e/64 scope link 2024-09-17T01:21:38.435 INFO:teuthology.orchestra.run.smithi047.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T01:21:38.435 INFO:teuthology.orchestra.run.smithi047.stdout:Mon IP `172.21.15.47` is in CIDR network `172.21.0.0/20` 2024-09-17T01:21:38.436 INFO:teuthology.orchestra.run.smithi047.stdout:Mon IP `172.21.15.47` is in CIDR network `172.21.0.0/20` 2024-09-17T01:21:38.436 INFO:teuthology.orchestra.run.smithi047.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-17T01:21:38.436 INFO:teuthology.orchestra.run.smithi047.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-17T01:21:38.436 INFO:teuthology.orchestra.run.smithi047.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f... 2024-09-17T01:21:38.890 INFO:teuthology.orchestra.run.smithi047.stdout:/bin/podman: stdout ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b 2024-09-17T01:21:38.890 INFO:teuthology.orchestra.run.smithi047.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f... 2024-09-17T01:21:38.890 INFO:teuthology.orchestra.run.smithi047.stdout:/bin/podman: stderr Getting image source signatures 2024-09-17T01:21:38.890 INFO:teuthology.orchestra.run.smithi047.stdout:/bin/podman: stderr Copying blob sha256:83d928f919f2c1e0c1bd6bccd6df0f26dec4d40362b4c5deccad70d7b002219d 2024-09-17T01:21:38.890 INFO:teuthology.orchestra.run.smithi047.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-09-17T01:21:38.891 INFO:teuthology.orchestra.run.smithi047.stdout:/bin/podman: stderr Copying config sha256:ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b 2024-09-17T01:21:38.891 INFO:teuthology.orchestra.run.smithi047.stdout:/bin/podman: stderr Writing manifest to image destination 2024-09-17T01:21:39.819 INFO:teuthology.orchestra.run.smithi047.stdout:ceph: stdout ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable) 2024-09-17T01:21:39.819 INFO:teuthology.orchestra.run.smithi047.stdout:Ceph version: ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable) 2024-09-17T01:21:39.819 INFO:teuthology.orchestra.run.smithi047.stdout:Extracting ceph user uid/gid from container image... 2024-09-17T01:21:40.700 INFO:teuthology.orchestra.run.smithi047.stdout:stat: stdout 167 167 2024-09-17T01:21:40.700 INFO:teuthology.orchestra.run.smithi047.stdout:Creating initial keys... 2024-09-17T01:21:43.184 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-authtool: stdout AQCk2ehmYQY+OxAAIhnfwmEw5apuV1Lwdz8/og== 2024-09-17T01:21:44.239 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-authtool: stdout AQCn2ehmyrcVHhAAI6rtNfAbGosATKiZFpgv6A== 2024-09-17T01:21:45.186 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph-authtool: stdout AQCo2ehmsyRLIhAA10P6O8L5ayfPBfwSwif44Q== 2024-09-17T01:21:45.187 INFO:teuthology.orchestra.run.smithi047.stdout:Creating initial monmap... 2024-09-17T01:21:46.110 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T01:21:46.110 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-17T01:21:46.110 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:21:46.110 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T01:21:46.111 INFO:teuthology.orchestra.run.smithi047.stdout:monmaptool for a [v2:172.21.15.47:3300,v1:172.21.15.47:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T01:21:46.111 INFO:teuthology.orchestra.run.smithi047.stdout:setting min_mon_release = quincy 2024-09-17T01:21:46.111 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/monmaptool: set fsid to 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:21:46.111 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T01:21:46.111 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:21:46.111 INFO:teuthology.orchestra.run.smithi047.stdout:Creating mon... 2024-09-17T01:21:47.006 INFO:teuthology.orchestra.run.smithi047.stdout:create mon.a on 2024-09-17T01:21:47.235 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-09-17T01:21:47.406 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-09-17T01:21:47.589 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-181a7ed8-7493-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-181a7ed8-7493-11ef-bceb-c7b262605968.target. 2024-09-17T01:21:47.589 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-181a7ed8-7493-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-181a7ed8-7493-11ef-bceb-c7b262605968.target. 2024-09-17T01:21:47.858 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.a 2024-09-17T01:21:47.858 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Failed to reset failed state of unit ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.a.service: Unit ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.a.service not loaded. 2024-09-17T01:21:48.044 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-181a7ed8-7493-11ef-bceb-c7b262605968.target.wants/ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.a.service → /etc/systemd/system/ceph-181a7ed8-7493-11ef-bceb-c7b262605968@.service. 2024-09-17T01:21:48.575 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T01:21:48.576 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout disabled 2024-09-17T01:21:48.583 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T01:21:48.584 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout inactive 2024-09-17T01:21:48.584 INFO:teuthology.orchestra.run.smithi047.stdout:firewalld.service is not enabled 2024-09-17T01:21:48.584 INFO:teuthology.orchestra.run.smithi047.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T01:21:48.584 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for mon to start... 2024-09-17T01:21:48.584 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for mon... 2024-09-17T01:21:49.666 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:49 smithi047 ceph-mon[29272]: from='client.? 172.21.15.47:0/397041825' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-09-17T01:21:49.670 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout cluster: 2024-09-17T01:21:49.670 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout id: 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:21:49.670 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-17T01:21:49.670 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-09-17T01:21:49.670 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout services: 2024-09-17T01:21:49.671 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.520489s) 2024-09-17T01:21:49.671 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-17T01:21:49.671 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-17T01:21:49.671 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-09-17T01:21:49.671 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout data: 2024-09-17T01:21:49.671 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-17T01:21:49.671 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-17T01:21:49.671 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-17T01:21:49.671 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout pgs: 2024-09-17T01:21:49.671 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-09-17T01:21:49.671 INFO:teuthology.orchestra.run.smithi047.stdout:mon is available 2024-09-17T01:21:49.671 INFO:teuthology.orchestra.run.smithi047.stdout:Assimilating anything we can from ceph.conf... 2024-09-17T01:21:50.663 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:50 smithi047 ceph-mon[29272]: from='client.? 172.21.15.47:0/4003919032' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-17T01:21:50.663 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:50 smithi047 ceph-mon[29272]: from='client.? 172.21.15.47:0/4003919032' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-17T01:21:50.667 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-09-17T01:21:50.667 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T01:21:50.667 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout fsid = 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:21:50.667 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.47:3300,v1:172.21.15.47:6789] 2024-09-17T01:21:50.668 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T01:21:50.668 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T01:21:50.668 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T01:21:50.668 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T01:21:50.668 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-09-17T01:21:50.668 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T01:21:50.668 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-09-17T01:21:50.668 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T01:21:50.668 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-09-17T01:21:50.668 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T01:21:50.668 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T01:21:50.668 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T01:21:50.668 INFO:teuthology.orchestra.run.smithi047.stdout:Generating new minimal ceph.conf... 2024-09-17T01:21:51.631 INFO:teuthology.orchestra.run.smithi047.stdout:Restarting the monitor... 2024-09-17T01:21:51.890 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:51 smithi047 ceph-mon[29272]: from='client.? 172.21.15.47:0/1929127335' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:21:51.890 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:51 smithi047 systemd[1]: Stopping Ceph mon.a for 181a7ed8-7493-11ef-bceb-c7b262605968... 2024-09-17T01:21:52.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:51 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a[29268]: 2024-09-17T01:21:51.891+0000 7fccb77c8640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-17T01:21:52.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:51 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a[29268]: 2024-09-17T01:21:51.891+0000 7fccb77c8640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-17T01:21:52.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:51 smithi047 podman[29512]: 2024-09-17 01:21:51.902348915 +0000 UTC m=+0.101675052 container died 36e770a8779a0e3054803bf682a9fbd91ca9c7a113da0c530a33c14be2a99aee (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_CLEAN=True, RELEASE=squid-c2ddf97, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2) 2024-09-17T01:21:52.534 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:52 smithi047 podman[29512]: 2024-09-17 01:21:52.232844055 +0000 UTC m=+0.432170191 container cleanup 36e770a8779a0e3054803bf682a9fbd91ca9c7a113da0c530a33c14be2a99aee (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a, maintainer=Guillaume Abrioux , RELEASE=squid-c2ddf97, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, ceph=True) 2024-09-17T01:21:52.535 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:52 smithi047 bash[29512]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a 2024-09-17T01:21:52.535 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:52 smithi047 podman[29524]: 2024-09-17 01:21:52.425461843 +0000 UTC m=+0.518324218 container remove 36e770a8779a0e3054803bf682a9fbd91ca9c7a113da0c530a33c14be2a99aee (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=squid-c2ddf97, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T01:21:52.865 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:52 smithi047 systemd[1]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-17T01:21:52.865 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:52 smithi047 systemd[1]: Stopped Ceph mon.a for 181a7ed8-7493-11ef-bceb-c7b262605968. 2024-09-17T01:21:52.865 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:52 smithi047 systemd[1]: Starting Ceph mon.a for 181a7ed8-7493-11ef-bceb-c7b262605968... 2024-09-17T01:21:53.152 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:52 smithi047 podman[29619]: 2024-09-17 01:21:52.868053623 +0000 UTC m=+0.109962813 container create 3b2a12b780814d19007e0255d183bc520fb6e4a226495d9f43debd5649c3417e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=squid-c2ddf97, GIT_CLEAN=True, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, ceph=True, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731) 2024-09-17T01:21:53.152 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:52 smithi047 podman[29619]: 2024-09-17 01:21:52.774218335 +0000 UTC m=+0.016127544 image pull ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T01:21:53.152 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 podman[29619]: 2024-09-17 01:21:53.079090793 +0000 UTC m=+0.320999982 container init 3b2a12b780814d19007e0255d183bc520fb6e4a226495d9f43debd5649c3417e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_CLEAN=True, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=squid-c2ddf97, org.label-schema.vendor=CentOS) 2024-09-17T01:21:53.152 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 podman[29619]: 2024-09-17 01:21:53.082259863 +0000 UTC m=+0.324169059 container start 3b2a12b780814d19007e0255d183bc520fb6e4a226495d9f43debd5649c3417e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_CLEAN=True, org.label-schema.license=GPLv2, RELEASE=squid-c2ddf97, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T01:21:53.152 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: set uid:gid to 167:167 (ceph:ceph) 2024-09-17T01:21:53.152 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable), process ceph-mon, pid 2 2024-09-17T01:21:53.152 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: pidfile_write: ignore empty --pid-file 2024-09-17T01:21:53.153 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: load: jerasure load: lrc 2024-09-17T01:21:53.153 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: RocksDB version: 7.9.2 2024-09-17T01:21:53.153 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Git sha 0 2024-09-17T01:21:53.153 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Compile date 2024-09-16 15:09:42 2024-09-17T01:21:53.153 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: DB SUMMARY 2024-09-17T01:21:53.153 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: DB Session ID: HOVTOXZLWOAMTAYL5TX1 2024-09-17T01:21:53.153 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: CURRENT file: CURRENT 2024-09-17T01:21:53.153 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: IDENTITY file: IDENTITY 2024-09-17T01:21:53.153 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-17T01:21:53.153 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-17T01:21:53.153 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 88787 ; 2024-09-17T01:21:53.153 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.error_if_exists: 0 2024-09-17T01:21:53.154 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.create_if_missing: 0 2024-09-17T01:21:53.154 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.paranoid_checks: 1 2024-09-17T01:21:53.154 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T01:21:53.154 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T01:21:53.155 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T01:21:53.155 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.env: 0x55ad73abf940 2024-09-17T01:21:53.155 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.fs: PosixFileSystem 2024-09-17T01:21:53.155 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.info_log: 0x55ad756ef6e0 2024-09-17T01:21:53.155 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_file_opening_threads: 16 2024-09-17T01:21:53.155 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.statistics: (nil) 2024-09-17T01:21:53.155 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.use_fsync: 0 2024-09-17T01:21:53.155 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_log_file_size: 0 2024-09-17T01:21:53.155 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T01:21:53.155 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T01:21:53.155 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.keep_log_file_num: 1000 2024-09-17T01:21:53.155 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.recycle_log_file_num: 0 2024-09-17T01:21:53.155 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.allow_fallocate: 1 2024-09-17T01:21:53.156 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.allow_mmap_reads: 0 2024-09-17T01:21:53.156 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.allow_mmap_writes: 0 2024-09-17T01:21:53.156 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.use_direct_reads: 0 2024-09-17T01:21:53.156 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T01:21:53.156 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.create_missing_column_families: 0 2024-09-17T01:21:53.156 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.db_log_dir: 2024-09-17T01:21:53.156 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.wal_dir: 2024-09-17T01:21:53.156 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T01:21:53.156 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T01:21:53.156 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T01:21:53.156 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T01:21:53.156 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T01:21:53.157 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T01:21:53.157 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.advise_random_on_open: 1 2024-09-17T01:21:53.157 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.db_write_buffer_size: 0 2024-09-17T01:21:53.157 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.write_buffer_manager: 0x55ad756fedc0 2024-09-17T01:21:53.157 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T01:21:53.157 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T01:21:53.157 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T01:21:53.157 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.rate_limiter: (nil) 2024-09-17T01:21:53.157 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T01:21:53.157 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.wal_recovery_mode: 2 2024-09-17T01:21:53.157 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.enable_thread_tracking: 0 2024-09-17T01:21:53.157 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.enable_pipelined_write: 0 2024-09-17T01:21:53.158 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.unordered_write: 0 2024-09-17T01:21:53.158 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T01:21:53.158 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T01:21:53.158 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T01:21:53.158 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T01:21:53.158 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.row_cache: None 2024-09-17T01:21:53.158 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.wal_filter: None 2024-09-17T01:21:53.158 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T01:21:53.158 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.allow_ingest_behind: 0 2024-09-17T01:21:53.158 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.two_write_queues: 0 2024-09-17T01:21:53.158 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.manual_wal_flush: 0 2024-09-17T01:21:53.158 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.wal_compression: 0 2024-09-17T01:21:53.158 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.atomic_flush: 0 2024-09-17T01:21:53.159 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T01:21:53.159 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T01:21:53.159 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T01:21:53.159 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.log_readahead_size: 0 2024-09-17T01:21:53.159 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T01:21:53.159 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.best_efforts_recovery: 0 2024-09-17T01:21:53.159 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T01:21:53.159 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T01:21:53.159 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.allow_data_in_errors: 0 2024-09-17T01:21:53.159 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.db_host_id: __hostname__ 2024-09-17T01:21:53.159 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T01:21:53.159 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_background_jobs: 2 2024-09-17T01:21:53.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_background_compactions: -1 2024-09-17T01:21:53.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_subcompactions: 1 2024-09-17T01:21:53.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T01:21:53.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T01:21:53.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T01:21:53.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_total_wal_size: 0 2024-09-17T01:21:53.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T01:21:53.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T01:21:53.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T01:21:53.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T01:21:53.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_open_files: -1 2024-09-17T01:21:53.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.bytes_per_sync: 0 2024-09-17T01:21:53.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T01:21:53.161 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T01:21:53.161 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compaction_readahead_size: 0 2024-09-17T01:21:53.161 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_background_flushes: -1 2024-09-17T01:21:53.161 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Compression algorithms supported: 2024-09-17T01:21:53.161 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: kZSTD supported: 0 2024-09-17T01:21:53.161 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: kXpressCompression supported: 0 2024-09-17T01:21:53.161 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: kBZip2Compression supported: 0 2024-09-17T01:21:53.161 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T01:21:53.161 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: kLZ4Compression supported: 1 2024-09-17T01:21:53.161 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: kZlibCompression supported: 1 2024-09-17T01:21:53.161 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: kLZ4HCCompression supported: 1 2024-09-17T01:21:53.161 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: kSnappyCompression supported: 1 2024-09-17T01:21:53.161 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T01:21:53.162 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T01:21:53.162 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-09-17T01:21:53.162 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T01:21:53.162 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T01:21:53.162 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.merge_operator: 2024-09-17T01:21:53.162 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compaction_filter: None 2024-09-17T01:21:53.162 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compaction_filter_factory: None 2024-09-17T01:21:53.162 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.sst_partitioner_factory: None 2024-09-17T01:21:53.162 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T01:21:53.162 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T01:21:53.162 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55ad756ef320) 2024-09-17T01:21:53.162 INFO:journalctl@ceph.mon.a.smithi047.stdout: cache_index_and_filter_blocks: 1 2024-09-17T01:21:53.162 INFO:journalctl@ceph.mon.a.smithi047.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T01:21:53.162 INFO:journalctl@ceph.mon.a.smithi047.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T01:21:53.163 INFO:journalctl@ceph.mon.a.smithi047.stdout: pin_top_level_index_and_filter: 1 2024-09-17T01:21:53.163 INFO:journalctl@ceph.mon.a.smithi047.stdout: index_type: 0 2024-09-17T01:21:53.163 INFO:journalctl@ceph.mon.a.smithi047.stdout: data_block_index_type: 0 2024-09-17T01:21:53.163 INFO:journalctl@ceph.mon.a.smithi047.stdout: index_shortening: 1 2024-09-17T01:21:53.163 INFO:journalctl@ceph.mon.a.smithi047.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-17T01:21:53.163 INFO:journalctl@ceph.mon.a.smithi047.stdout: checksum: 4 2024-09-17T01:21:53.163 INFO:journalctl@ceph.mon.a.smithi047.stdout: no_block_cache: 0 2024-09-17T01:21:53.163 INFO:journalctl@ceph.mon.a.smithi047.stdout: block_cache: 0x55ad756e31f0 2024-09-17T01:21:53.163 INFO:journalctl@ceph.mon.a.smithi047.stdout: block_cache_name: BinnedLRUCache 2024-09-17T01:21:53.163 INFO:journalctl@ceph.mon.a.smithi047.stdout: block_cache_options: 2024-09-17T01:21:53.163 INFO:journalctl@ceph.mon.a.smithi047.stdout: capacity : 536870912 2024-09-17T01:21:53.163 INFO:journalctl@ceph.mon.a.smithi047.stdout: num_shard_bits : 4 2024-09-17T01:21:53.163 INFO:journalctl@ceph.mon.a.smithi047.stdout: strict_capacity_limit : 0 2024-09-17T01:21:53.163 INFO:journalctl@ceph.mon.a.smithi047.stdout: high_pri_pool_ratio: 0.000 2024-09-17T01:21:53.164 INFO:journalctl@ceph.mon.a.smithi047.stdout: block_cache_compressed: (nil) 2024-09-17T01:21:53.164 INFO:journalctl@ceph.mon.a.smithi047.stdout: persistent_cache: (nil) 2024-09-17T01:21:53.164 INFO:journalctl@ceph.mon.a.smithi047.stdout: block_size: 4096 2024-09-17T01:21:53.164 INFO:journalctl@ceph.mon.a.smithi047.stdout: block_size_deviation: 10 2024-09-17T01:21:53.164 INFO:journalctl@ceph.mon.a.smithi047.stdout: block_restart_interval: 16 2024-09-17T01:21:53.164 INFO:journalctl@ceph.mon.a.smithi047.stdout: index_block_restart_interval: 1 2024-09-17T01:21:53.164 INFO:journalctl@ceph.mon.a.smithi047.stdout: metadata_block_size: 4096 2024-09-17T01:21:53.164 INFO:journalctl@ceph.mon.a.smithi047.stdout: partition_filters: 0 2024-09-17T01:21:53.164 INFO:journalctl@ceph.mon.a.smithi047.stdout: use_delta_encoding: 1 2024-09-17T01:21:53.164 INFO:journalctl@ceph.mon.a.smithi047.stdout: filter_policy: bloomfilter 2024-09-17T01:21:53.164 INFO:journalctl@ceph.mon.a.smithi047.stdout: whole_key_filtering: 1 2024-09-17T01:21:53.164 INFO:journalctl@ceph.mon.a.smithi047.stdout: verify_compression: 0 2024-09-17T01:21:53.164 INFO:journalctl@ceph.mon.a.smithi047.stdout: read_amp_bytes_per_bit: 0 2024-09-17T01:21:53.165 INFO:journalctl@ceph.mon.a.smithi047.stdout: format_version: 5 2024-09-17T01:21:53.165 INFO:journalctl@ceph.mon.a.smithi047.stdout: enable_index_compression: 1 2024-09-17T01:21:53.165 INFO:journalctl@ceph.mon.a.smithi047.stdout: block_align: 0 2024-09-17T01:21:53.165 INFO:journalctl@ceph.mon.a.smithi047.stdout: max_auto_readahead_size: 262144 2024-09-17T01:21:53.165 INFO:journalctl@ceph.mon.a.smithi047.stdout: prepopulate_block_cache: 0 2024-09-17T01:21:53.165 INFO:journalctl@ceph.mon.a.smithi047.stdout: initial_auto_readahead_size: 8192 2024-09-17T01:21:53.165 INFO:journalctl@ceph.mon.a.smithi047.stdout: num_file_reads_for_auto_readahead: 2 2024-09-17T01:21:53.165 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.write_buffer_size: 33554432 2024-09-17T01:21:53.165 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_write_buffer_number: 2 2024-09-17T01:21:53.165 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compression: NoCompression 2024-09-17T01:21:53.165 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.bottommost_compression: Disabled 2024-09-17T01:21:53.165 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.prefix_extractor: nullptr 2024-09-17T01:21:53.165 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T01:21:53.165 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.num_levels: 7 2024-09-17T01:21:53.166 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T01:21:53.166 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T01:21:53.166 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T01:21:53.166 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T01:21:53.166 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T01:21:53.166 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T01:21:53.166 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T01:21:53.166 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T01:21:53.166 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T01:21:53.166 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T01:21:53.166 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T01:21:53.166 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T01:21:53.167 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T01:21:53.167 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compression_opts.level: 32767 2024-09-17T01:21:53.167 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compression_opts.strategy: 0 2024-09-17T01:21:53.167 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T01:21:53.167 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T01:21:53.167 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T01:21:53.167 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T01:21:53.167 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compression_opts.enabled: false 2024-09-17T01:21:53.167 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T01:21:53.167 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T01:21:53.168 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T01:21:53.168 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T01:21:53.168 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.target_file_size_base: 67108864 2024-09-17T01:21:53.168 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T01:21:53.168 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T01:21:53.168 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T01:21:53.168 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T01:21:53.169 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T01:21:53.169 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T01:21:53.169 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T01:21:53.169 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T01:21:53.169 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T01:21:53.169 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T01:21:53.169 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T01:21:53.169 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T01:21:53.169 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T01:21:53.169 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T01:21:53.169 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.arena_block_size: 1048576 2024-09-17T01:21:53.169 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T01:21:53.169 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T01:21:53.170 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.disable_auto_compactions: 0 2024-09-17T01:21:53.170 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T01:21:53.170 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T01:21:53.170 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T01:21:53.170 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T01:21:53.170 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T01:21:53.170 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T01:21:53.170 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T01:21:53.170 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T01:21:53.170 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T01:21:53.170 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T01:21:53.170 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T01:21:53.170 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.inplace_update_support: 0 2024-09-17T01:21:53.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T01:21:53.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T01:21:53.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T01:21:53.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T01:21:53.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.bloom_locality: 0 2024-09-17T01:21:53.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.max_successive_merges: 0 2024-09-17T01:21:53.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T01:21:53.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.paranoid_file_checks: 0 2024-09-17T01:21:53.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.force_consistency_checks: 1 2024-09-17T01:21:53.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.report_bg_io_stats: 0 2024-09-17T01:21:53.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.ttl: 2592000 2024-09-17T01:21:53.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T01:21:53.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T01:21:53.172 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T01:21:53.172 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.enable_blob_files: false 2024-09-17T01:21:53.172 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.min_blob_size: 0 2024-09-17T01:21:53.172 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.blob_file_size: 268435456 2024-09-17T01:21:53.172 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T01:21:53.172 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T01:21:53.172 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T01:21:53.172 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T01:21:53.172 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T01:21:53.172 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.blob_file_starting_level: 0 2024-09-17T01:21:53.172 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T01:21:53.172 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/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-17T01:21:53.172 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-17T01:21:53.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 4af79988-3012-4350-b6c4-41081800782d 2024-09-17T01:21:53.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726536113109295, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-17T01:21:53.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-17T01:21:53.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726536113110204, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85404, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 258, "table_properties": {"data_size": 83551, "index_size": 237, "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": 10201, "raw_average_key_size": 47, "raw_value_size": 77758, "raw_average_value_size": 358, "num_data_blocks": 11, "num_entries": 217, "num_filter_entries": 217, "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": 1726536113, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "4af79988-3012-4350-b6c4-41081800782d", "db_session_id": "HOVTOXZLWOAMTAYL5TX1", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-17T01:21:53.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726536113110301, "job": 1, "event": "recovery_finished"} 2024-09-17T01:21:53.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-17T01:21:53.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-17T01:21:53.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55ad75710e00 2024-09-17T01:21:53.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: DB pointer 0x55ad7580c000 2024-09-17T01:21:53.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T01:21:53.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T01:21:53.173 INFO:journalctl@ceph.mon.a.smithi047.stdout: ** DB Stats ** 2024-09-17T01:21:53.174 INFO:journalctl@ceph.mon.a.smithi047.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T01:21:53.174 INFO:journalctl@ceph.mon.a.smithi047.stdout: 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-17T01:21:53.174 INFO:journalctl@ceph.mon.a.smithi047.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T01:21:53.174 INFO:journalctl@ceph.mon.a.smithi047.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T01:21:53.174 INFO:journalctl@ceph.mon.a.smithi047.stdout: 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-17T01:21:53.174 INFO:journalctl@ceph.mon.a.smithi047.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T01:21:53.174 INFO:journalctl@ceph.mon.a.smithi047.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T01:21:53.174 INFO:journalctl@ceph.mon.a.smithi047.stdout: 2024-09-17T01:21:53.174 INFO:journalctl@ceph.mon.a.smithi047.stdout: ** Compaction Stats [default] ** 2024-09-17T01:21:53.174 INFO:journalctl@ceph.mon.a.smithi047.stdout: 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-17T01:21:53.174 INFO:journalctl@ceph.mon.a.smithi047.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T01:21:53.174 INFO:journalctl@ceph.mon.a.smithi047.stdout: L0 2/0 85.26 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 145.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T01:21:53.175 INFO:journalctl@ceph.mon.a.smithi047.stdout: Sum 2/0 85.26 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 145.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T01:21:53.175 INFO:journalctl@ceph.mon.a.smithi047.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 145.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T01:21:53.175 INFO:journalctl@ceph.mon.a.smithi047.stdout: 2024-09-17T01:21:53.175 INFO:journalctl@ceph.mon.a.smithi047.stdout: ** Compaction Stats [default] ** 2024-09-17T01:21:53.175 INFO:journalctl@ceph.mon.a.smithi047.stdout: 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-17T01:21:53.175 INFO:journalctl@ceph.mon.a.smithi047.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T01:21:53.175 INFO:journalctl@ceph.mon.a.smithi047.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 145.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T01:21:53.175 INFO:journalctl@ceph.mon.a.smithi047.stdout: 2024-09-17T01:21:53.175 INFO:journalctl@ceph.mon.a.smithi047.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-17T01:21:53.175 INFO:journalctl@ceph.mon.a.smithi047.stdout: 2024-09-17T01:21:53.175 INFO:journalctl@ceph.mon.a.smithi047.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T01:21:53.175 INFO:journalctl@ceph.mon.a.smithi047.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T01:21:53.175 INFO:journalctl@ceph.mon.a.smithi047.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T01:21:53.176 INFO:journalctl@ceph.mon.a.smithi047.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-17T01:21:53.176 INFO:journalctl@ceph.mon.a.smithi047.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T01:21:53.176 INFO:journalctl@ceph.mon.a.smithi047.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-17T01:21:53.176 INFO:journalctl@ceph.mon.a.smithi047.stdout: Cumulative compaction: 0.00 GB write, 26.47 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T01:21:53.176 INFO:journalctl@ceph.mon.a.smithi047.stdout: Interval compaction: 0.00 GB write, 26.47 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T01:21:53.176 INFO:journalctl@ceph.mon.a.smithi047.stdout: 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-17T01:21:53.176 INFO:journalctl@ceph.mon.a.smithi047.stdout: Block cache BinnedLRUCache@0x55ad756e31f0#2 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1e-05 secs_since: 0 2024-09-17T01:21:53.176 INFO:journalctl@ceph.mon.a.smithi047.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.42 KB,8.04663e-05%) Misc(1,0.00 KB,0%) 2024-09-17T01:21:53.176 INFO:journalctl@ceph.mon.a.smithi047.stdout: 2024-09-17T01:21:53.176 INFO:journalctl@ceph.mon.a.smithi047.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-17T01:21:53.176 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: starting mon.a rank 0 at public addrs [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] at bind addrs [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:21:53.176 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: mon.a@-1(???) e1 preinit fsid 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:21:53.176 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: mon.a@-1(???).mds e1 new map 2024-09-17T01:21:53.177 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: mon.a@-1(???).mds e1 print_map 2024-09-17T01:21:53.177 INFO:journalctl@ceph.mon.a.smithi047.stdout: e1 2024-09-17T01:21:53.177 INFO:journalctl@ceph.mon.a.smithi047.stdout: btime 2024-09-17T01:21:48:545287+0000 2024-09-17T01:21:53.177 INFO:journalctl@ceph.mon.a.smithi047.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-17T01:21:53.177 INFO:journalctl@ceph.mon.a.smithi047.stdout: 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-17T01:21:53.177 INFO:journalctl@ceph.mon.a.smithi047.stdout: legacy client fscid: -1 2024-09-17T01:21:53.177 INFO:journalctl@ceph.mon.a.smithi047.stdout: 2024-09-17T01:21:53.177 INFO:journalctl@ceph.mon.a.smithi047.stdout: No filesystems configured 2024-09-17T01:21:53.177 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-17T01:21:53.177 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T01:21:53.177 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T01:21:53.177 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T01:21:53.177 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-17T01:21:53.178 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 bash[29619]: 3b2a12b780814d19007e0255d183bc520fb6e4a226495d9f43debd5649c3417e 2024-09-17T01:21:53.178 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 systemd[1]: Started Ceph mon.a for 181a7ed8-7493-11ef-bceb-c7b262605968. 2024-09-17T01:21:53.178 INFO:teuthology.orchestra.run.smithi047.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-17T01:21:53.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-17T01:21:53.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: monmap epoch 1 2024-09-17T01:21:53.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: fsid 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:21:53.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: last_changed 2024-09-17T01:21:45.503842+0000 2024-09-17T01:21:53.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: created 2024-09-17T01:21:45.503842+0000 2024-09-17T01:21:53.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: min_mon_release 19 (squid) 2024-09-17T01:21:53.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: election_strategy: 1 2024-09-17T01:21:53.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-09-17T01:21:53.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: fsmap 2024-09-17T01:21:53.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: osdmap e1: 0 total, 0 up, 0 in 2024-09-17T01:21:53.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:53 smithi047 ceph-mon[29638]: mgrmap e1: no daemons active 2024-09-17T01:21:56.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:21:56 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/447611969' entity='client.admin' 2024-09-17T01:22:01.784 INFO:teuthology.orchestra.run.smithi047.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-17T01:22:01.977 INFO:teuthology.orchestra.run.smithi047.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-17T01:22:01.977 INFO:teuthology.orchestra.run.smithi047.stdout:Creating mgr... 2024-09-17T01:22:01.977 INFO:teuthology.orchestra.run.smithi047.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-17T01:22:01.978 INFO:teuthology.orchestra.run.smithi047.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-17T01:22:02.922 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mgr.a 2024-09-17T01:22:02.922 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Failed to reset failed state of unit ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mgr.a.service: Unit ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mgr.a.service not loaded. 2024-09-17T01:22:03.216 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-181a7ed8-7493-11ef-bceb-c7b262605968.target.wants/ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mgr.a.service → /etc/systemd/system/ceph-181a7ed8-7493-11ef-bceb-c7b262605968@.service. 2024-09-17T01:22:03.771 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T01:22:03.771 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout disabled 2024-09-17T01:22:03.779 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T01:22:03.779 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout inactive 2024-09-17T01:22:03.779 INFO:teuthology.orchestra.run.smithi047.stdout:firewalld.service is not enabled 2024-09-17T01:22:03.779 INFO:teuthology.orchestra.run.smithi047.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T01:22:03.789 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T01:22:03.789 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout disabled 2024-09-17T01:22:03.797 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T01:22:03.797 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout inactive 2024-09-17T01:22:03.798 INFO:teuthology.orchestra.run.smithi047.stdout:firewalld.service is not enabled 2024-09-17T01:22:03.798 INFO:teuthology.orchestra.run.smithi047.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-17T01:22:03.798 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for mgr to start... 2024-09-17T01:22:03.798 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for mgr... 2024-09-17T01:22:03.886 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:03 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:03.820+0000 7f71a189e040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-17T01:22:03.886 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:03 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:03.887+0000 7f71a189e040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-17T01:22:04.159 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:04 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:04.046+0000 7f71a189e040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-17T01:22:04.159 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:04 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:04.116+0000 7f71a189e040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-17T01:22:04.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:04 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/77776939' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T01:22:04.423 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:04 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:04.275+0000 7f71a189e040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-17T01:22:04.761 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:04 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:04.428+0000 7f71a189e040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-17T01:22:04.762 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:04 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:04.763+0000 7f71a189e040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-17T01:22:04.876 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-09-17T01:22:04.876 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-09-17T01:22:04.876 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "fsid": "181a7ed8-7493-11ef-bceb-c7b262605968", 2024-09-17T01:22:04.876 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T01:22:04.877 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T01:22:04.877 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T01:22:04.877 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T01:22:04.877 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:04.877 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T01:22:04.877 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T01:22:04.877 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 0 2024-09-17T01:22:04.877 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-09-17T01:22:04.877 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T01:22:04.877 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "a" 2024-09-17T01:22:04.877 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-09-17T01:22:04.877 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum_age": 11, 2024-09-17T01:22:04.877 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T01:22:04.878 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T01:22:04.878 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-17T01:22:04.878 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T01:22:04.878 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:04.878 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T01:22:04.878 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T01:22:04.878 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T01:22:04.878 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T01:22:04.878 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T01:22:04.878 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T01:22:04.878 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T01:22:04.878 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T01:22:04.881 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:04.882 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T01:22:04.882 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T01:22:04.882 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T01:22:04.882 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T01:22:04.882 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T01:22:04.882 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T01:22:04.882 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T01:22:04.882 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T01:22:04.882 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T01:22:04.882 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:04.882 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T01:22:04.882 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T01:22:04.882 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "btime": "2024-09-17T01:21:48:545287+0000", 2024-09-17T01:22:04.883 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T01:22:04.883 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T01:22:04.883 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:04.883 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T01:22:04.883 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T01:22:04.883 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T01:22:04.883 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T01:22:04.883 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T01:22:04.883 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T01:22:04.883 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T01:22:04.883 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-09-17T01:22:04.883 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T01:22:04.883 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:04.883 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T01:22:04.884 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T01:22:04.884 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T01:21:48.545914+0000", 2024-09-17T01:22:04.884 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T01:22:04.884 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:04.884 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T01:22:04.884 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-09-17T01:22:04.884 INFO:teuthology.orchestra.run.smithi047.stdout:mgr not available, waiting (1/15)... 2024-09-17T01:22:05.021 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:04 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:04.826+0000 7f71a189e040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-17T01:22:05.021 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:05 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:05.022+0000 7f71a189e040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-17T01:22:06.323 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:05 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:05.948+0000 7f71a189e040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-17T01:22:06.324 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:06 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:06.018+0000 7f71a189e040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-17T01:22:07.052 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:06 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:06.773+0000 7f71a189e040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-17T01:22:07.052 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:06 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:06.894+0000 7f71a189e040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-17T01:22:07.307 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:07 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:07.046+0000 7f71a189e040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-17T01:22:07.307 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:07 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:07.109+0000 7f71a189e040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-17T01:22:07.307 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:07 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:07.273+0000 7f71a189e040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-17T01:22:07.587 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:07 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/1110274234' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T01:22:07.587 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:07 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:07.347+0000 7f71a189e040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-17T01:22:07.587 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:07 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:07.414+0000 7f71a189e040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-17T01:22:07.883 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:07 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:07.588+0000 7f71a189e040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-17T01:22:07.884 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:07 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:07.661+0000 7f71a189e040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-17T01:22:07.884 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:07 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:07.733+0000 7f71a189e040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-17T01:22:07.884 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:07 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:07.821+0000 7f71a189e040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-17T01:22:07.884 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:07 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:07.885+0000 7f71a189e040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-17T01:22:08.016 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-09-17T01:22:08.016 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-09-17T01:22:08.016 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "fsid": "181a7ed8-7493-11ef-bceb-c7b262605968", 2024-09-17T01:22:08.016 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T01:22:08.016 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T01:22:08.016 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T01:22:08.016 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T01:22:08.016 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:08.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T01:22:08.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T01:22:08.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 0 2024-09-17T01:22:08.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-09-17T01:22:08.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T01:22:08.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "a" 2024-09-17T01:22:08.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-09-17T01:22:08.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum_age": 14, 2024-09-17T01:22:08.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T01:22:08.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T01:22:08.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-17T01:22:08.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T01:22:08.017 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:08.018 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T01:22:08.018 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T01:22:08.018 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T01:22:08.018 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T01:22:08.018 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T01:22:08.018 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T01:22:08.018 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T01:22:08.018 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T01:22:08.022 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:08.022 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T01:22:08.022 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T01:22:08.022 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T01:22:08.022 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T01:22:08.023 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T01:22:08.023 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T01:22:08.023 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T01:22:08.023 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T01:22:08.023 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T01:22:08.023 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:08.023 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T01:22:08.023 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T01:22:08.023 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "btime": "2024-09-17T01:21:48:545287+0000", 2024-09-17T01:22:08.023 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T01:22:08.023 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T01:22:08.023 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:08.024 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T01:22:08.024 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T01:22:08.024 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T01:22:08.024 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T01:22:08.024 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T01:22:08.024 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T01:22:08.024 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T01:22:08.024 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-09-17T01:22:08.024 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T01:22:08.024 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:08.024 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T01:22:08.024 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T01:22:08.025 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T01:21:48.545914+0000", 2024-09-17T01:22:08.025 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T01:22:08.025 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:08.025 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T01:22:08.025 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-09-17T01:22:08.025 INFO:teuthology.orchestra.run.smithi047.stdout:mgr not available, waiting (2/15)... 2024-09-17T01:22:08.173 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:07 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:07.947+0000 7f71a189e040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-17T01:22:09.173 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:08 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:08.783+0000 7f71a189e040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-17T01:22:09.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:08 smithi047 ceph-mon[29638]: Activating manager daemon a 2024-09-17T01:22:09.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:08 smithi047 ceph-mon[29638]: mgrmap e2: a(active, starting, since 0.00286681s) 2024-09-17T01:22:09.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:08 smithi047 ceph-mon[29638]: from='mgr.14100 172.21.15.47:0/400847353' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T01:22:09.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:08 smithi047 ceph-mon[29638]: from='mgr.14100 172.21.15.47:0/400847353' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T01:22:09.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:08 smithi047 ceph-mon[29638]: from='mgr.14100 172.21.15.47:0/400847353' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T01:22:09.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:08 smithi047 ceph-mon[29638]: from='mgr.14100 172.21.15.47:0/400847353' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:22:09.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:08 smithi047 ceph-mon[29638]: from='mgr.14100 172.21.15.47:0/400847353' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-17T01:22:09.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:08 smithi047 ceph-mon[29638]: Manager daemon a is now available 2024-09-17T01:22:09.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:08 smithi047 ceph-mon[29638]: from='mgr.14100 172.21.15.47:0/400847353' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-17T01:22:09.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:08 smithi047 ceph-mon[29638]: from='mgr.14100 172.21.15.47:0/400847353' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-17T01:22:09.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:08 smithi047 ceph-mon[29638]: from='mgr.14100 172.21.15.47:0/400847353' entity='mgr.a' 2024-09-17T01:22:09.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:08 smithi047 ceph-mon[29638]: from='mgr.14100 172.21.15.47:0/400847353' entity='mgr.a' 2024-09-17T01:22:09.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:08 smithi047 ceph-mon[29638]: from='mgr.14100 172.21.15.47:0/400847353' entity='mgr.a' 2024-09-17T01:22:11.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:10 smithi047 ceph-mon[29638]: mgrmap e3: a(active, since 1.00778s) 2024-09-17T01:22:11.160 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:10 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/2315414116' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T01:22:11.270 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-09-17T01:22:11.270 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-09-17T01:22:11.270 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "fsid": "181a7ed8-7493-11ef-bceb-c7b262605968", 2024-09-17T01:22:11.270 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T01:22:11.270 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T01:22:11.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T01:22:11.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T01:22:11.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:11.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T01:22:11.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T01:22:11.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 0 2024-09-17T01:22:11.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-09-17T01:22:11.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T01:22:11.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "a" 2024-09-17T01:22:11.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-09-17T01:22:11.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "quorum_age": 17, 2024-09-17T01:22:11.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T01:22:11.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T01:22:11.271 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-17T01:22:11.272 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T01:22:11.272 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:11.272 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T01:22:11.272 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T01:22:11.272 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T01:22:11.272 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T01:22:11.272 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T01:22:11.272 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T01:22:11.272 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T01:22:11.272 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T01:22:11.272 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:11.272 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T01:22:11.272 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T01:22:11.273 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T01:22:11.273 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T01:22:11.273 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T01:22:11.273 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T01:22:11.273 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T01:22:11.273 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T01:22:11.273 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T01:22:11.273 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:11.273 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T01:22:11.273 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T01:22:11.273 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "btime": "2024-09-17T01:21:48:545287+0000", 2024-09-17T01:22:11.273 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T01:22:11.274 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T01:22:11.274 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:11.274 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T01:22:11.274 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T01:22:11.274 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T01:22:11.274 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T01:22:11.274 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T01:22:11.274 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T01:22:11.274 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T01:22:11.274 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ], 2024-09-17T01:22:11.274 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T01:22:11.275 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:11.275 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T01:22:11.275 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T01:22:11.275 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T01:21:48.545914+0000", 2024-09-17T01:22:11.275 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T01:22:11.275 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout }, 2024-09-17T01:22:11.275 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T01:22:11.275 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-09-17T01:22:11.275 INFO:teuthology.orchestra.run.smithi047.stdout:mgr is available 2024-09-17T01:22:12.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:11 smithi047 ceph-mon[29638]: mgrmap e4: a(active, since 2s) 2024-09-17T01:22:12.523 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-09-17T01:22:12.523 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T01:22:12.523 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout fsid = 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:22:12.523 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.47:3300,v1:172.21.15.47:6789] 2024-09-17T01:22:12.523 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T01:22:12.523 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T01:22:12.523 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T01:22:12.523 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T01:22:12.523 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-09-17T01:22:12.523 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T01:22:12.524 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T01:22:12.524 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 2024-09-17T01:22:12.524 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T01:22:12.524 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T01:22:12.524 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T01:22:12.524 INFO:teuthology.orchestra.run.smithi047.stdout:Enabling cephadm module... 2024-09-17T01:22:13.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:12 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/549578948' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-17T01:22:13.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:12 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/549578948' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-17T01:22:14.115 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:13 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/458360684' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-17T01:22:14.116 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:13 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: ignoring --setuser ceph since I am not root 2024-09-17T01:22:14.116 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:13 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: ignoring --setgroup ceph since I am not root 2024-09-17T01:22:14.116 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:13 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:13.945+0000 7f78f136a040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-17T01:22:14.116 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:14 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:14.004+0000 7f78f136a040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-17T01:22:14.382 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:14 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:14.160+0000 7f78f136a040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-17T01:22:14.383 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:14 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:14.229+0000 7f78f136a040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-17T01:22:14.383 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:14 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:14.384+0000 7f78f136a040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-17T01:22:14.673 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:14 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:14.541+0000 7f78f136a040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-17T01:22:15.027 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:14 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/458360684' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-17T01:22:15.027 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:14 smithi047 ceph-mon[29638]: mgrmap e5: a(active, since 5s) 2024-09-17T01:22:15.028 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:14 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:14.876+0000 7f78f136a040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-17T01:22:15.028 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:14 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:14.940+0000 7f78f136a040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-17T01:22:15.423 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:15 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:15.136+0000 7f78f136a040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-17T01:22:15.750 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-09-17T01:22:15.750 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-17T01:22:15.751 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T01:22:15.751 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-17T01:22:15.751 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T01:22:15.751 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-09-17T01:22:15.751 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for the mgr to restart... 2024-09-17T01:22:15.751 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for mgr epoch 5... 2024-09-17T01:22:16.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:15 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/223813601' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-17T01:22:16.423 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:16 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:16.064+0000 7f78f136a040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-17T01:22:16.423 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:16 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:16.136+0000 7f78f136a040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-17T01:22:17.145 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:16 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:16.878+0000 7f78f136a040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-17T01:22:17.145 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:16 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:16.998+0000 7f78f136a040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-17T01:22:17.423 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:17 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:17.146+0000 7f78f136a040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-17T01:22:17.423 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:17 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:17.210+0000 7f78f136a040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-17T01:22:17.423 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:17 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:17.366+0000 7f78f136a040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-17T01:22:17.730 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:17 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:17.436+0000 7f78f136a040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-17T01:22:17.731 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:17 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:17.499+0000 7f78f136a040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-17T01:22:17.731 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:17 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:17.664+0000 7f78f136a040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-17T01:22:17.731 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:17 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:17.731+0000 7f78f136a040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-17T01:22:18.010 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:17 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:17.800+0000 7f78f136a040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-17T01:22:18.010 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:17 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:17.887+0000 7f78f136a040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-17T01:22:18.010 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:17 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:17.950+0000 7f78f136a040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-17T01:22:18.011 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:18.011+0000 7f78f136a040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-17T01:22:19.173 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:18.838+0000 7f78f136a040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-17T01:22:19.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: Active manager daemon a restarted 2024-09-17T01:22:19.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: Activating manager daemon a 2024-09-17T01:22:19.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: osdmap e2: 0 total, 0 up, 0 in 2024-09-17T01:22:19.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: mgrmap e6: a(active, starting, since 0.00297482s) 2024-09-17T01:22:19.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:22:19.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-17T01:22:19.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T01:22:19.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T01:22:19.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T01:22:19.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: Manager daemon a is now available 2024-09-17T01:22:19.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' 2024-09-17T01:22:19.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' 2024-09-17T01:22:19.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:22:19.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:22:19.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-17T01:22:19.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:18 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-17T01:22:20.422 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-09-17T01:22:20.422 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-17T01:22:20.422 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T01:22:20.422 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-09-17T01:22:20.422 INFO:teuthology.orchestra.run.smithi047.stdout:mgr epoch 5 is available 2024-09-17T01:22:20.422 INFO:teuthology.orchestra.run.smithi047.stdout:Setting orchestrator backend to cephadm... 2024-09-17T01:22:21.069 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:20 smithi047 ceph-mon[29638]: Found migration_current of "None". Setting to last migration. 2024-09-17T01:22:21.070 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:20 smithi047 ceph-mon[29638]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-17T01:22:21.070 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:20 smithi047 ceph-mon[29638]: mgrmap e7: a(active, since 1.00484s) 2024-09-17T01:22:21.070 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:20 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' 2024-09-17T01:22:21.070 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:20 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' 2024-09-17T01:22:21.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:21 smithi047 ceph-mon[29638]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-17T01:22:21.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:21 smithi047 ceph-mon[29638]: mgrmap e8: a(active, since 2s) 2024-09-17T01:22:21.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:21 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' 2024-09-17T01:22:21.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:21 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:22:22.198 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:22.088+0000 7f7858684640 -1 log_channel(cephadm) log [ERR] : [17/Sep/2024:01:22:22] ENGINE Error in HTTPServer.serve 2024-09-17T01:22:22.199 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: Traceback (most recent call last): 2024-09-17T01:22:22.199 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T01:22:22.199 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: self._connections.run(self.expiration_interval) 2024-09-17T01:22:22.199 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T01:22:22.199 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: self._run(expiration_interval) 2024-09-17T01:22:22.199 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T01:22:22.199 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T01:22:22.199 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T01:22:22.200 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T01:22:22.200 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T01:22:22.200 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: s = self.context.wrap_socket( 2024-09-17T01:22:22.200 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T01:22:22.200 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: return self.sslsocket_class._create( 2024-09-17T01:22:22.200 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T01:22:22.200 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: self.do_handshake() 2024-09-17T01:22:22.200 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T01:22:22.200 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: self._sslobj.do_handshake() 2024-09-17T01:22:22.200 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T01:22:22.200 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:22.767 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-17T01:22:22.768 INFO:teuthology.orchestra.run.smithi047.stdout:Generating ssh key... 2024-09-17T01:22:23.059 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-mon[29638]: from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:22:23.059 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:22 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:22:23.843 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: Generating public/private rsa key pair. 2024-09-17T01:22:23.843 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: Your identification has been saved in /tmp/tmppg_q8qeb/key 2024-09-17T01:22:23.844 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: Your public key has been saved in /tmp/tmppg_q8qeb/key.pub 2024-09-17T01:22:23.844 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: The key fingerprint is: 2024-09-17T01:22:23.844 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: SHA256:oorrm8XkyU/mIA6KcrqmTN0QLri0WwiP7KoJE7mVlWA ceph-181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:22:23.844 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: The key's randomart image is: 2024-09-17T01:22:23.844 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: +---[RSA 3072]----+ 2024-09-17T01:22:23.844 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: | E | 2024-09-17T01:22:23.844 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: | . . . | 2024-09-17T01:22:23.844 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: | .o | 2024-09-17T01:22:23.844 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: |...o. | 2024-09-17T01:22:23.844 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: |=oo+ . S | 2024-09-17T01:22:23.844 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: |+BX +. . | 2024-09-17T01:22:23.844 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: |B*.X.+ | 2024-09-17T01:22:23.844 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: |@=B.* | 2024-09-17T01:22:23.845 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: |^&o o | 2024-09-17T01:22:23.845 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: +----[SHA256]-----+ 2024-09-17T01:22:24.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-mon[29638]: [17/Sep/2024:01:22:21] ENGINE Bus STARTING 2024-09-17T01:22:24.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-mon[29638]: [17/Sep/2024:01:22:21] ENGINE Serving on http://172.21.15.47:8765 2024-09-17T01:22:24.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-mon[29638]: [17/Sep/2024:01:22:22] ENGINE Serving on https://172.21.15.47:7150 2024-09-17T01:22:24.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-mon[29638]: [17/Sep/2024:01:22:22] ENGINE Bus STARTED 2024-09-17T01:22:24.171 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-mon[29638]: [17/Sep/2024:01:22:22] ENGINE Error in HTTPServer.serve 2024-09-17T01:22:24.171 INFO:journalctl@ceph.mon.a.smithi047.stdout: Traceback (most recent call last): 2024-09-17T01:22:24.171 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T01:22:24.172 INFO:journalctl@ceph.mon.a.smithi047.stdout: self._connections.run(self.expiration_interval) 2024-09-17T01:22:24.172 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T01:22:24.172 INFO:journalctl@ceph.mon.a.smithi047.stdout: self._run(expiration_interval) 2024-09-17T01:22:24.172 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T01:22:24.172 INFO:journalctl@ceph.mon.a.smithi047.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T01:22:24.172 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T01:22:24.172 INFO:journalctl@ceph.mon.a.smithi047.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T01:22:24.172 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T01:22:24.172 INFO:journalctl@ceph.mon.a.smithi047.stdout: s = self.context.wrap_socket( 2024-09-17T01:22:24.172 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T01:22:24.172 INFO:journalctl@ceph.mon.a.smithi047.stdout: return self.sslsocket_class._create( 2024-09-17T01:22:24.172 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T01:22:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout: self.do_handshake() 2024-09-17T01:22:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T01:22:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout: self._sslobj.do_handshake() 2024-09-17T01:22:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T01:22:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-mon[29638]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:22:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' 2024-09-17T01:22:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:23 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' 2024-09-17T01:22:25.093 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:24 smithi047 ceph-mon[29638]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:22:25.093 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:24 smithi047 ceph-mon[29638]: Generating ssh key... 2024-09-17T01:22:25.363 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCSD7jglc4jAZa9E1NM5YTK3iFrj5U7sjVkhPo+LroND8JJlfuk2zhOBXDXCKn4GqAy3pSEmmfCouBQ3oXOdPJHtPCiKG03LzkwWvOcluGJrMtwLrBN8b7RTnzKnKAFjSkyxTyg03QnlFhWL41YSI1rnDr8weiFCyjiC4oxL7gJyS6eZmaNTPZqeAHPhr6yNxMJJh0rDHY/yvfmXgP+fr7ZFdJjsbgCqCxvZxSuaEztIcMDYgjBOevScILB4lIc6SbeqR5rj392+WS4DqURJR86SihhJFmVBJyI8aApOHNzyjlvgXMs6/kSAIlFLrUeDbyznWglrgpRxUPQLRUUkcOwzyycFB26C2mC+bNOrhkdYvgVGa7JwT2SalHnR+uCsLrRDXp6mWfHRV4fCuzOaIBQBD8QP+EANB2UvDKwh+T41VPebJuhzhrhLLhDE46FX91AYD7ECWPlKRMY0NLs4BZJz8Nx4DGuga4KowL9kAZbuuTvtZuVA+m8z9L54LxiCnM= ceph-181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:22:25.363 INFO:teuthology.orchestra.run.smithi047.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-17T01:22:25.363 INFO:teuthology.orchestra.run.smithi047.stdout:Adding key to root@localhost authorized_keys... 2024-09-17T01:22:25.374 INFO:teuthology.orchestra.run.smithi047.stdout:Adding host smithi047... 2024-09-17T01:22:25.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:25 smithi047 ceph-mon[29638]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:22:27.051 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:26 smithi047 ceph-mon[29638]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi047", "addr": "172.21.15.47", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:22:28.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:27 smithi047 ceph-mon[29638]: Deploying cephadm binary to smithi047 2024-09-17T01:22:30.663 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout Added host 'smithi047' with addr '172.21.15.47' 2024-09-17T01:22:30.664 INFO:teuthology.orchestra.run.smithi047.stdout:Deploying unmanaged mon service... 2024-09-17T01:22:30.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:30 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' 2024-09-17T01:22:30.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:30 smithi047 ceph-mon[29638]: Added host smithi047 2024-09-17T01:22:30.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:30 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:22:32.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:32 smithi047 ceph-mon[29638]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:22:32.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:32 smithi047 ceph-mon[29638]: Saving service mon spec with placement count:5 2024-09-17T01:22:32.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:32 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' 2024-09-17T01:22:32.809 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-17T01:22:32.809 INFO:teuthology.orchestra.run.smithi047.stdout:Deploying unmanaged mgr service... 2024-09-17T01:22:33.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:33 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' 2024-09-17T01:22:33.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:33 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' 2024-09-17T01:22:34.259 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-17T01:22:34.600 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:34 smithi047 ceph-mon[29638]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:22:34.600 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:34 smithi047 ceph-mon[29638]: Saving service mgr spec with placement count:2 2024-09-17T01:22:34.600 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:34 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' 2024-09-17T01:22:35.907 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:35 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' 2024-09-17T01:22:35.908 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:35 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/1367263418' entity='client.admin' 2024-09-17T01:22:37.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:36 smithi047 ceph-mon[29638]: from='mgr.14118 172.21.15.47:0/1014390144' entity='mgr.a' 2024-09-17T01:22:37.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:36 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/1126903122' entity='client.admin' 2024-09-17T01:22:37.494 INFO:teuthology.orchestra.run.smithi047.stdout:Enabling the dashboard module... 2024-09-17T01:22:38.858 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:38 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/1972092919' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-17T01:22:38.858 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:38 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: ignoring --setuser ceph since I am not root 2024-09-17T01:22:38.858 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:38 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: ignoring --setgroup ceph since I am not root 2024-09-17T01:22:38.858 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:38 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:38.700+0000 7fc257d66040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-17T01:22:38.858 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:38 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:38.761+0000 7fc257d66040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-17T01:22:39.147 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:38 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:38.920+0000 7fc257d66040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-17T01:22:39.147 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:38 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:38.993+0000 7fc257d66040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-17T01:22:39.147 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:39 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:39.149+0000 7fc257d66040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-17T01:22:39.423 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:39 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:39.301+0000 7fc257d66040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-17T01:22:39.702 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:39 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/1972092919' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-17T01:22:39.702 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:39 smithi047 ceph-mon[29638]: mgrmap e9: a(active, since 19s) 2024-09-17T01:22:39.702 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:39 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:39.638+0000 7fc257d66040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-17T01:22:39.702 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:39 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:39.704+0000 7fc257d66040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-17T01:22:40.173 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:39 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:39.904+0000 7fc257d66040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-17T01:22:40.459 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-09-17T01:22:40.460 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-17T01:22:40.460 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T01:22:40.460 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-17T01:22:40.460 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T01:22:40.460 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-09-17T01:22:40.460 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for the mgr to restart... 2024-09-17T01:22:40.460 INFO:teuthology.orchestra.run.smithi047.stdout:Waiting for mgr epoch 9... 2024-09-17T01:22:40.767 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:40 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/829611738' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-17T01:22:41.173 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:40 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:40.855+0000 7fc257d66040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-17T01:22:41.173 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:40 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:40.926+0000 7fc257d66040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-17T01:22:41.957 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:41 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:41.686+0000 7fc257d66040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-17T01:22:41.957 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:41 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:41.808+0000 7fc257d66040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-17T01:22:42.250 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:41 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:41.959+0000 7fc257d66040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-17T01:22:42.250 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:42 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:42.024+0000 7fc257d66040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-17T01:22:42.250 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:42 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:42.181+0000 7fc257d66040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-17T01:22:42.251 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:42 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:42.252+0000 7fc257d66040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-17T01:22:42.549 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:42 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:42.316+0000 7fc257d66040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-17T01:22:42.549 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:42 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:42.483+0000 7fc257d66040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-17T01:22:42.549 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:42 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:42.552+0000 7fc257d66040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-17T01:22:42.832 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:42 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:42.621+0000 7fc257d66040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-17T01:22:42.832 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:42 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:42.708+0000 7fc257d66040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-17T01:22:42.832 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:42 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:42.771+0000 7fc257d66040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-17T01:22:42.832 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:42 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:42.833+0000 7fc257d66040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-17T01:22:43.923 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:43 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:43.670+0000 7fc257d66040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-17T01:22:43.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:43 smithi047 ceph-mon[29638]: Active manager daemon a restarted 2024-09-17T01:22:43.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:43 smithi047 ceph-mon[29638]: Activating manager daemon a 2024-09-17T01:22:43.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:43 smithi047 ceph-mon[29638]: osdmap e3: 0 total, 0 up, 0 in 2024-09-17T01:22:43.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:43 smithi047 ceph-mon[29638]: mgrmap e10: a(active, starting, since 0.0033995s) 2024-09-17T01:22:43.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:43 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:22:43.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:43 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-17T01:22:43.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:43 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T01:22:43.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:43 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T01:22:43.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:43 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T01:22:43.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:43 smithi047 ceph-mon[29638]: Manager daemon a is now available 2024-09-17T01:22:43.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:43 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:22:43.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:43 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-17T01:22:43.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:43 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-17T01:22:45.594 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout { 2024-09-17T01:22:45.594 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-17T01:22:45.594 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T01:22:45.594 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout } 2024-09-17T01:22:45.594 INFO:teuthology.orchestra.run.smithi047.stdout:mgr epoch 9 is available 2024-09-17T01:22:45.594 INFO:teuthology.orchestra.run.smithi047.stdout:Generating a dashboard self-signed certificate... 2024-09-17T01:22:45.858 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:45 smithi047 ceph-mon[29638]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-17T01:22:45.859 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:45 smithi047 ceph-mon[29638]: mgrmap e11: a(active, since 1.00629s) 2024-09-17T01:22:45.859 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:45 smithi047 ceph-mon[29638]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-17T01:22:45.859 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:45 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:22:46.174 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:46.017+0000 7fc1bd82f640 -1 log_channel(cephadm) log [ERR] : [17/Sep/2024:01:22:46] ENGINE Error in HTTPServer.serve 2024-09-17T01:22:46.174 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: Traceback (most recent call last): 2024-09-17T01:22:46.174 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T01:22:46.174 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: self._connections.run(self.expiration_interval) 2024-09-17T01:22:46.175 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T01:22:46.175 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: self._run(expiration_interval) 2024-09-17T01:22:46.175 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T01:22:46.175 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T01:22:46.175 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T01:22:46.176 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T01:22:46.176 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T01:22:46.176 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: s = self.context.wrap_socket( 2024-09-17T01:22:46.176 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T01:22:46.176 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: return self.sslsocket_class._create( 2024-09-17T01:22:46.176 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T01:22:46.176 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: self.do_handshake() 2024-09-17T01:22:46.176 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T01:22:46.176 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: self._sslobj.do_handshake() 2024-09-17T01:22:46.176 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T01:22:46.176 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:22:46 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:22:46.859 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-17T01:22:46.859 INFO:teuthology.orchestra.run.smithi047.stdout:Creating initial admin user... 2024-09-17T01:22:47.291 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:47 smithi047 ceph-mon[29638]: [17/Sep/2024:01:22:45] ENGINE Bus STARTING 2024-09-17T01:22:47.291 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:47 smithi047 ceph-mon[29638]: [17/Sep/2024:01:22:45] ENGINE Serving on http://172.21.15.47:8765 2024-09-17T01:22:47.291 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:47 smithi047 ceph-mon[29638]: [17/Sep/2024:01:22:46] ENGINE Serving on https://172.21.15.47:7150 2024-09-17T01:22:47.292 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:47 smithi047 ceph-mon[29638]: [17/Sep/2024:01:22:46] ENGINE Bus STARTED 2024-09-17T01:22:47.292 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:47 smithi047 ceph-mon[29638]: [17/Sep/2024:01:22:46] ENGINE Error in HTTPServer.serve 2024-09-17T01:22:47.292 INFO:journalctl@ceph.mon.a.smithi047.stdout: Traceback (most recent call last): 2024-09-17T01:22:47.292 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T01:22:47.292 INFO:journalctl@ceph.mon.a.smithi047.stdout: self._connections.run(self.expiration_interval) 2024-09-17T01:22:47.292 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T01:22:47.292 INFO:journalctl@ceph.mon.a.smithi047.stdout: self._run(expiration_interval) 2024-09-17T01:22:47.292 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T01:22:47.292 INFO:journalctl@ceph.mon.a.smithi047.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T01:22:47.292 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T01:22:47.292 INFO:journalctl@ceph.mon.a.smithi047.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T01:22:47.292 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T01:22:47.292 INFO:journalctl@ceph.mon.a.smithi047.stdout: s = self.context.wrap_socket( 2024-09-17T01:22:47.293 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T01:22:47.293 INFO:journalctl@ceph.mon.a.smithi047.stdout: return self.sslsocket_class._create( 2024-09-17T01:22:47.293 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T01:22:47.293 INFO:journalctl@ceph.mon.a.smithi047.stdout: self.do_handshake() 2024-09-17T01:22:47.293 INFO:journalctl@ceph.mon.a.smithi047.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T01:22:47.293 INFO:journalctl@ceph.mon.a.smithi047.stdout: self._sslobj.do_handshake() 2024-09-17T01:22:47.293 INFO:journalctl@ceph.mon.a.smithi047.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T01:22:47.293 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:47 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:22:47.293 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:47 smithi047 ceph-mon[29638]: from='client.14162 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:22:47.293 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:47 smithi047 ceph-mon[29638]: mgrmap e12: a(active, since 2s) 2024-09-17T01:22:47.293 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:47 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:22:47.293 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:47 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:22:48.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:48 smithi047 ceph-mon[29638]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:22:48.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:48 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:22:48.895 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$PtFqEe.vbQFaNqa3TDPgb.hwgpllQqvYF3FWcD6bb4I.kWQ4OX/22", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726536167, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-17T01:22:48.895 INFO:teuthology.orchestra.run.smithi047.stdout:Fetching dashboard port number... 2024-09-17T01:22:49.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:49 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/887703174' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-17T01:22:50.043 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stdout 8443 2024-09-17T01:22:50.054 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T01:22:50.054 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout disabled 2024-09-17T01:22:50.062 INFO:teuthology.orchestra.run.smithi047.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T01:22:50.062 INFO:teuthology.orchestra.run.smithi047.stdout:systemctl: stdout inactive 2024-09-17T01:22:50.062 INFO:teuthology.orchestra.run.smithi047.stdout:firewalld.service is not enabled 2024-09-17T01:22:50.062 INFO:teuthology.orchestra.run.smithi047.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-17T01:22:50.064 INFO:teuthology.orchestra.run.smithi047.stdout:Ceph Dashboard is now available at: 2024-09-17T01:22:50.064 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:22:50.064 INFO:teuthology.orchestra.run.smithi047.stdout: URL: https://smithi047.front.sepia.ceph.com:8443/ 2024-09-17T01:22:50.064 INFO:teuthology.orchestra.run.smithi047.stdout: User: admin 2024-09-17T01:22:50.064 INFO:teuthology.orchestra.run.smithi047.stdout: Password: cpknzqit3o 2024-09-17T01:22:50.064 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:22:50.065 INFO:teuthology.orchestra.run.smithi047.stdout:Saving cluster configuration to /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config directory 2024-09-17T01:22:51.349 INFO:teuthology.orchestra.run.smithi047.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout:Or, if you are only running a single cluster on this host: 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout: ceph telemetry on 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout:For more information see: 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:22:51.350 INFO:teuthology.orchestra.run.smithi047.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-17T01:22:51.351 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:22:51.351 INFO:teuthology.orchestra.run.smithi047.stdout:Bootstrap complete. 2024-09-17T01:22:51.390 INFO:tasks.cephadm:Fetching config... 2024-09-17T01:22:51.390 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-09-17T01:22:51.390 DEBUG:teuthology.orchestra.run.smithi047:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-17T01:22:51.407 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-17T01:22:51.407 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-09-17T01:22:51.407 DEBUG:teuthology.orchestra.run.smithi047:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-17T01:22:51.463 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-17T01:22:51.464 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-09-17T01:22:51.464 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd if=/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-17T01:22:51.528 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-17T01:22:51.529 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-09-17T01:22:51.529 DEBUG:teuthology.orchestra.run.smithi047:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-17T01:22:51.584 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-17T01:22:51.585 DEBUG:teuthology.orchestra.run.smithi047:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCSD7jglc4jAZa9E1NM5YTK3iFrj5U7sjVkhPo+LroND8JJlfuk2zhOBXDXCKn4GqAy3pSEmmfCouBQ3oXOdPJHtPCiKG03LzkwWvOcluGJrMtwLrBN8b7RTnzKnKAFjSkyxTyg03QnlFhWL41YSI1rnDr8weiFCyjiC4oxL7gJyS6eZmaNTPZqeAHPhr6yNxMJJh0rDHY/yvfmXgP+fr7ZFdJjsbgCqCxvZxSuaEztIcMDYgjBOevScILB4lIc6SbeqR5rj392+WS4DqURJR86SihhJFmVBJyI8aApOHNzyjlvgXMs6/kSAIlFLrUeDbyznWglrgpRxUPQLRUUkcOwzyycFB26C2mC+bNOrhkdYvgVGa7JwT2SalHnR+uCsLrRDXp6mWfHRV4fCuzOaIBQBD8QP+EANB2UvDKwh+T41VPebJuhzhrhLLhDE46FX91AYD7ECWPlKRMY0NLs4BZJz8Nx4DGuga4KowL9kAZbuuTvtZuVA+m8z9L54LxiCnM= ceph-181a7ed8-7493-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T01:22:51.646 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:51 smithi047 ceph-mon[29638]: mgrmap e13: a(active, since 6s) 2024-09-17T01:22:51.646 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:51 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/2120326104' entity='client.admin' 2024-09-17T01:22:51.660 INFO:teuthology.orchestra.run.smithi047.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCSD7jglc4jAZa9E1NM5YTK3iFrj5U7sjVkhPo+LroND8JJlfuk2zhOBXDXCKn4GqAy3pSEmmfCouBQ3oXOdPJHtPCiKG03LzkwWvOcluGJrMtwLrBN8b7RTnzKnKAFjSkyxTyg03QnlFhWL41YSI1rnDr8weiFCyjiC4oxL7gJyS6eZmaNTPZqeAHPhr6yNxMJJh0rDHY/yvfmXgP+fr7ZFdJjsbgCqCxvZxSuaEztIcMDYgjBOevScILB4lIc6SbeqR5rj392+WS4DqURJR86SihhJFmVBJyI8aApOHNzyjlvgXMs6/kSAIlFLrUeDbyznWglrgpRxUPQLRUUkcOwzyycFB26C2mC+bNOrhkdYvgVGa7JwT2SalHnR+uCsLrRDXp6mWfHRV4fCuzOaIBQBD8QP+EANB2UvDKwh+T41VPebJuhzhrhLLhDE46FX91AYD7ECWPlKRMY0NLs4BZJz8Nx4DGuga4KowL9kAZbuuTvtZuVA+m8z9L54LxiCnM= ceph-181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:22:51.671 DEBUG:teuthology.orchestra.run.smithi160:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCSD7jglc4jAZa9E1NM5YTK3iFrj5U7sjVkhPo+LroND8JJlfuk2zhOBXDXCKn4GqAy3pSEmmfCouBQ3oXOdPJHtPCiKG03LzkwWvOcluGJrMtwLrBN8b7RTnzKnKAFjSkyxTyg03QnlFhWL41YSI1rnDr8weiFCyjiC4oxL7gJyS6eZmaNTPZqeAHPhr6yNxMJJh0rDHY/yvfmXgP+fr7ZFdJjsbgCqCxvZxSuaEztIcMDYgjBOevScILB4lIc6SbeqR5rj392+WS4DqURJR86SihhJFmVBJyI8aApOHNzyjlvgXMs6/kSAIlFLrUeDbyznWglrgpRxUPQLRUUkcOwzyycFB26C2mC+bNOrhkdYvgVGa7JwT2SalHnR+uCsLrRDXp6mWfHRV4fCuzOaIBQBD8QP+EANB2UvDKwh+T41VPebJuhzhrhLLhDE46FX91AYD7ECWPlKRMY0NLs4BZJz8Nx4DGuga4KowL9kAZbuuTvtZuVA+m8z9L54LxiCnM= ceph-181a7ed8-7493-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T01:22:51.715 INFO:teuthology.orchestra.run.smithi160.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCSD7jglc4jAZa9E1NM5YTK3iFrj5U7sjVkhPo+LroND8JJlfuk2zhOBXDXCKn4GqAy3pSEmmfCouBQ3oXOdPJHtPCiKG03LzkwWvOcluGJrMtwLrBN8b7RTnzKnKAFjSkyxTyg03QnlFhWL41YSI1rnDr8weiFCyjiC4oxL7gJyS6eZmaNTPZqeAHPhr6yNxMJJh0rDHY/yvfmXgP+fr7ZFdJjsbgCqCxvZxSuaEztIcMDYgjBOevScILB4lIc6SbeqR5rj392+WS4DqURJR86SihhJFmVBJyI8aApOHNzyjlvgXMs6/kSAIlFLrUeDbyznWglrgpRxUPQLRUUkcOwzyycFB26C2mC+bNOrhkdYvgVGa7JwT2SalHnR+uCsLrRDXp6mWfHRV4fCuzOaIBQBD8QP+EANB2UvDKwh+T41VPebJuhzhrhLLhDE46FX91AYD7ECWPlKRMY0NLs4BZJz8Nx4DGuga4KowL9kAZbuuTvtZuVA+m8z9L54LxiCnM= ceph-181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:22:51.728 DEBUG:teuthology.orchestra.run.smithi191:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCSD7jglc4jAZa9E1NM5YTK3iFrj5U7sjVkhPo+LroND8JJlfuk2zhOBXDXCKn4GqAy3pSEmmfCouBQ3oXOdPJHtPCiKG03LzkwWvOcluGJrMtwLrBN8b7RTnzKnKAFjSkyxTyg03QnlFhWL41YSI1rnDr8weiFCyjiC4oxL7gJyS6eZmaNTPZqeAHPhr6yNxMJJh0rDHY/yvfmXgP+fr7ZFdJjsbgCqCxvZxSuaEztIcMDYgjBOevScILB4lIc6SbeqR5rj392+WS4DqURJR86SihhJFmVBJyI8aApOHNzyjlvgXMs6/kSAIlFLrUeDbyznWglrgpRxUPQLRUUkcOwzyycFB26C2mC+bNOrhkdYvgVGa7JwT2SalHnR+uCsLrRDXp6mWfHRV4fCuzOaIBQBD8QP+EANB2UvDKwh+T41VPebJuhzhrhLLhDE46FX91AYD7ECWPlKRMY0NLs4BZJz8Nx4DGuga4KowL9kAZbuuTvtZuVA+m8z9L54LxiCnM= ceph-181a7ed8-7493-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T01:22:51.825 INFO:teuthology.orchestra.run.smithi191.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCSD7jglc4jAZa9E1NM5YTK3iFrj5U7sjVkhPo+LroND8JJlfuk2zhOBXDXCKn4GqAy3pSEmmfCouBQ3oXOdPJHtPCiKG03LzkwWvOcluGJrMtwLrBN8b7RTnzKnKAFjSkyxTyg03QnlFhWL41YSI1rnDr8weiFCyjiC4oxL7gJyS6eZmaNTPZqeAHPhr6yNxMJJh0rDHY/yvfmXgP+fr7ZFdJjsbgCqCxvZxSuaEztIcMDYgjBOevScILB4lIc6SbeqR5rj392+WS4DqURJR86SihhJFmVBJyI8aApOHNzyjlvgXMs6/kSAIlFLrUeDbyznWglrgpRxUPQLRUUkcOwzyycFB26C2mC+bNOrhkdYvgVGa7JwT2SalHnR+uCsLrRDXp6mWfHRV4fCuzOaIBQBD8QP+EANB2UvDKwh+T41VPebJuhzhrhLLhDE46FX91AYD7ECWPlKRMY0NLs4BZJz8Nx4DGuga4KowL9kAZbuuTvtZuVA+m8z9L54LxiCnM= ceph-181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:22:51.838 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-17T01:22:52.093 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:22:53.821 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:53 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/2685175207' entity='client.admin' 2024-09-17T01:22:53.848 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-17T01:22:53.848 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-17T01:22:54.331 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:22:56.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:56 smithi047 ceph-mon[29638]: from='client.14172 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:22:56.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:56 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:22:56.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:56 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:22:56.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:56 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:22:56.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:56 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi047", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:22:56.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:56 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:22:56.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:56 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:22:56.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:56 smithi047 ceph-mon[29638]: Updating smithi047:/etc/ceph/ceph.conf 2024-09-17T01:22:56.210 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi160 2024-09-17T01:22:56.210 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-17T01:22:56.210 DEBUG:teuthology.orchestra.run.smithi160:> dd of=/etc/ceph/ceph.conf 2024-09-17T01:22:56.230 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-17T01:22:56.230 DEBUG:teuthology.orchestra.run.smithi160:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T01:22:56.288 INFO:tasks.cephadm:Adding host smithi160 to orchestrator... 2024-09-17T01:22:56.288 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph orch host add smithi160 2024-09-17T01:22:56.542 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:22:57.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:57 smithi047 ceph-mon[29638]: Updating smithi047:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:22:57.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:57 smithi047 ceph-mon[29638]: Updating smithi047:/etc/ceph/ceph.client.admin.keyring 2024-09-17T01:22:57.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:57 smithi047 ceph-mon[29638]: Updating smithi047:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T01:22:57.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:22:57.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:22:57.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:22:57.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:22:57.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:22:57.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:22:57.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:22:58.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:58 smithi047 ceph-mon[29638]: from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi160", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:22:59.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:22:59 smithi047 ceph-mon[29638]: Deploying cephadm binary to smithi160 2024-09-17T01:23:00.999 INFO:teuthology.orchestra.run.smithi047.stdout:Added host 'smithi160' with addr '172.21.15.160' 2024-09-17T01:23:01.722 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-17T01:23:01.971 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:23:02.305 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:02 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:02.305 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:02 smithi047 ceph-mon[29638]: Added host smithi160 2024-09-17T01:23:02.305 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:02 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:23:02.305 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:02 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:02.305 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:02 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:02.585 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:23:02.585 INFO:teuthology.orchestra.run.smithi047.stdout:[{"addr": "172.21.15.47", "hostname": "smithi047", "labels": [], "status": ""}, {"addr": "172.21.15.160", "hostname": "smithi160", "labels": [], "status": ""}] 2024-09-17T01:23:03.203 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi191 2024-09-17T01:23:03.203 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-17T01:23:03.203 DEBUG:teuthology.orchestra.run.smithi191:> dd of=/etc/ceph/ceph.conf 2024-09-17T01:23:03.223 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-17T01:23:03.223 DEBUG:teuthology.orchestra.run.smithi191:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T01:23:03.281 INFO:tasks.cephadm:Adding host smithi191 to orchestrator... 2024-09-17T01:23:03.281 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph orch host add smithi191 2024-09-17T01:23:03.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:03 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:03.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:03 smithi047 ceph-mon[29638]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:23:03.529 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:23:05.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:04 smithi047 ceph-mon[29638]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:05.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:04 smithi047 ceph-mon[29638]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:23:06.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:06.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:06.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:06.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:06.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi160", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:23:06.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:06.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:23:06.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:06 smithi047 ceph-mon[29638]: Updating smithi160:/etc/ceph/ceph.conf 2024-09-17T01:23:06.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:06 smithi047 ceph-mon[29638]: Updating smithi160:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:23:06.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:06 smithi047 ceph-mon[29638]: Deploying cephadm binary to smithi191 2024-09-17T01:23:06.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:06 smithi047 ceph-mon[29638]: Updating smithi160:/etc/ceph/ceph.client.admin.keyring 2024-09-17T01:23:06.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:06.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:06.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:07.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:07 smithi047 ceph-mon[29638]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:07.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:07 smithi047 ceph-mon[29638]: Updating smithi160:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T01:23:08.059 INFO:teuthology.orchestra.run.smithi047.stdout:Added host 'smithi191' with addr '172.21.15.191' 2024-09-17T01:23:08.683 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-17T01:23:08.942 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:23:09.393 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:09 smithi047 ceph-mon[29638]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:09.393 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:09.393 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:09 smithi047 ceph-mon[29638]: Added host smithi191 2024-09-17T01:23:09.393 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:23:09.393 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:09.393 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:09.578 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:23:09.578 INFO:teuthology.orchestra.run.smithi047.stdout:[{"addr": "172.21.15.47", "hostname": "smithi047", "labels": [], "status": ""}, {"addr": "172.21.15.160", "hostname": "smithi160", "labels": [], "status": ""}, {"addr": "172.21.15.191", "hostname": "smithi191", "labels": [], "status": ""}] 2024-09-17T01:23:10.224 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-17T01:23:10.224 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-17T01:23:10.480 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:23:10.601 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:10 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:10.601 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:10 smithi047 ceph-mon[29638]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:23:11.404 INFO:teuthology.orchestra.run.smithi047.stderr:adjusted tunables profile to default 2024-09-17T01:23:11.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:11 smithi047 ceph-mon[29638]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:11.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:11 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/3134673069' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-17T01:23:12.014 INFO:tasks.cephadm:Adding mon.a on smithi047 2024-09-17T01:23:12.014 INFO:tasks.cephadm:Adding mon.b on smithi160 2024-09-17T01:23:12.015 INFO:tasks.cephadm:Adding mon.c on smithi191 2024-09-17T01:23:12.015 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph orch apply mon '3;smithi047:172.21.15.47=a;smithi160:172.21.15.160=b;smithi191:172.21.15.191=c' 2024-09-17T01:23:12.258 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T01:23:12.303 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T01:23:12.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:12 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/3134673069' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-17T01:23:12.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:12 smithi047 ceph-mon[29638]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T01:23:12.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:12 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:12.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:12 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:12.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:12 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:12.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:12 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:12.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:12 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi191", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:23:12.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:12 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:12.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:12 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:23:13.019 INFO:teuthology.orchestra.run.smithi191.stdout:Scheduled mon update... 2024-09-17T01:23:13.597 DEBUG:teuthology.orchestra.run.smithi160:mon.b> sudo journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.b.service 2024-09-17T01:23:13.600 DEBUG:teuthology.orchestra.run.smithi191:mon.c> sudo journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.c.service 2024-09-17T01:23:13.602 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-17T01:23:13.602 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T01:23:13.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:13 smithi047 ceph-mon[29638]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:13.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:13 smithi047 ceph-mon[29638]: Updating smithi191:/etc/ceph/ceph.conf 2024-09-17T01:23:13.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:13 smithi047 ceph-mon[29638]: Updating smithi191:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:23:13.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:13 smithi047 ceph-mon[29638]: Updating smithi191:/etc/ceph/ceph.client.admin.keyring 2024-09-17T01:23:13.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:13.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:13.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:13.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:13.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:23:13.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:14.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:14 smithi047 ceph-mon[29638]: Updating smithi191:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T01:23:14.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:14 smithi047 ceph-mon[29638]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi047:172.21.15.47=a;smithi160:172.21.15.160=b;smithi191:172.21.15.191=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:23:14.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:14 smithi047 ceph-mon[29638]: Saving service mon spec with placement smithi047:172.21.15.47=a;smithi160:172.21.15.160=b;smithi191:172.21.15.191=c;count:3 2024-09-17T01:23:14.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:14 smithi047 ceph-mon[29638]: Deploying daemon mon.c on smithi191 2024-09-17T01:23:14.738 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:23:15.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:15 smithi047 ceph-mon[29638]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:16.576 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:23:16.576 INFO:teuthology.orchestra.run.smithi191.stdout:{"epoch":1,"fsid":"181a7ed8-7493-11ef-bceb-c7b262605968","modified":"2024-09-17T01:21:45.503842Z","created":"2024-09-17T01:21:45.503842Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:3300","nonce":0},{"type":"v1","addr":"172.21.15.47:6789","nonce":0}]},"addr":"172.21.15.47:6789/0","public_addr":"172.21.15.47:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T01:23:16.576 INFO:teuthology.orchestra.run.smithi191.stderr:dumped monmap epoch 1 2024-09-17T01:23:17.630 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:17 smithi191 ceph-mon[33187]: mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-17T01:23:17.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:17 smithi047 ceph-mon[29638]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:17.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:17 smithi047 ceph-mon[29638]: from='client.? 172.21.15.191:0/2709916017' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T01:23:18.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:17 smithi191 bash[33169]: 589b8484556b4b7d3f708bc4cb666fd388caedd7ee69c6007be5bbe75d28b8de 2024-09-17T01:23:18.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:17 smithi191 systemd[1]: Started Ceph mon.c for 181a7ed8-7493-11ef-bceb-c7b262605968. 2024-09-17T01:23:18.139 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-17T01:23:18.139 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T01:23:18.400 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T01:23:23.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:23:23.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:23.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: mon.a calling monitor election 2024-09-17T01:23:23.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:23.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:23.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:23.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: mon.c calling monitor election 2024-09-17T01:23:23.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:23.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:23.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:23.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:23.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:23.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-17T01:23:23.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: monmap epoch 2 2024-09-17T01:23:23.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: fsid 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:23:23.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: last_changed 2024-09-17T01:23:17.628883+0000 2024-09-17T01:23:23.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: created 2024-09-17T01:21:45.503842+0000 2024-09-17T01:23:23.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: min_mon_release 19 (squid) 2024-09-17T01:23:23.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: election_strategy: 1 2024-09-17T01:23:23.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-09-17T01:23:23.132 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: 1: [v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0] mon.c 2024-09-17T01:23:23.132 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: fsmap 2024-09-17T01:23:23.132 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T01:23:23.132 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: mgrmap e13: a(active, since 38s) 2024-09-17T01:23:23.132 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: overall HEALTH_OK 2024-09-17T01:23:23.132 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:23.132 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:23.132 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:23.132 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:23:23.132 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:22 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:23.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:23:23.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:23.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: mon.a calling monitor election 2024-09-17T01:23:23.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:23.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:23.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:23.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: mon.c calling monitor election 2024-09-17T01:23:23.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:23.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:23.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:23.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:23.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:23.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-17T01:23:23.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: monmap epoch 2 2024-09-17T01:23:23.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: fsid 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:23:23.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: last_changed 2024-09-17T01:23:17.628883+0000 2024-09-17T01:23:23.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: created 2024-09-17T01:21:45.503842+0000 2024-09-17T01:23:23.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: min_mon_release 19 (squid) 2024-09-17T01:23:23.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: election_strategy: 1 2024-09-17T01:23:23.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-09-17T01:23:23.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: 1: [v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0] mon.c 2024-09-17T01:23:23.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: fsmap 2024-09-17T01:23:23.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T01:23:23.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: mgrmap e13: a(active, since 38s) 2024-09-17T01:23:23.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: overall HEALTH_OK 2024-09-17T01:23:23.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:23.176 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:23.176 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:23.176 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:23:23.176 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:22 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:23.495 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:23:23.495 INFO:teuthology.orchestra.run.smithi191.stdout:{"epoch":2,"fsid":"181a7ed8-7493-11ef-bceb-c7b262605968","modified":"2024-09-17T01:23:17.628883Z","created":"2024-09-17T01:21:45.503842Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:3300","nonce":0},{"type":"v1","addr":"172.21.15.47:6789","nonce":0}]},"addr":"172.21.15.47:6789/0","public_addr":"172.21.15.47:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:3300","nonce":0},{"type":"v1","addr":"172.21.15.191:6789","nonce":0}]},"addr":"172.21.15.191:6789/0","public_addr":"172.21.15.191:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-17T01:23:23.496 INFO:teuthology.orchestra.run.smithi191.stderr:dumped monmap epoch 2 2024-09-17T01:23:23.842 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:23 smithi191 ceph-mon[33187]: Deploying daemon mon.b on smithi160 2024-09-17T01:23:23.842 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:23 smithi191 ceph-mon[33187]: from='client.? 172.21.15.191:0/3669899262' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T01:23:23.843 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:23 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:23 smithi047 ceph-mon[29638]: Deploying daemon mon.b on smithi160 2024-09-17T01:23:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:23 smithi047 ceph-mon[29638]: from='client.? 172.21.15.191:0/3669899262' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T01:23:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:23 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:25.128 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-17T01:23:25.128 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T01:23:25.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:24 smithi191 ceph-mon[33187]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:25.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:24 smithi047 ceph-mon[29638]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:25.378 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T01:23:25.996 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:23:25.996 INFO:teuthology.orchestra.run.smithi191.stdout:{"epoch":2,"fsid":"181a7ed8-7493-11ef-bceb-c7b262605968","modified":"2024-09-17T01:23:17.628883Z","created":"2024-09-17T01:21:45.503842Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:3300","nonce":0},{"type":"v1","addr":"172.21.15.47:6789","nonce":0}]},"addr":"172.21.15.47:6789/0","public_addr":"172.21.15.47:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:3300","nonce":0},{"type":"v1","addr":"172.21.15.191:6789","nonce":0}]},"addr":"172.21.15.191:6789/0","public_addr":"172.21.15.191:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-17T01:23:25.996 INFO:teuthology.orchestra.run.smithi191.stderr:dumped monmap epoch 2 2024-09-17T01:23:26.379 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:26 smithi160 ceph-mon[32760]: mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-17T01:23:26.379 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:26 smithi160 bash[32740]: c356c179e3f810b6155a3c24e7e31485ce4cf9371069796fd577ab5475631057 2024-09-17T01:23:26.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:26 smithi160 systemd[1]: Started Ceph mon.b for 181a7ed8-7493-11ef-bceb-c7b262605968. 2024-09-17T01:23:27.527 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-17T01:23:27.527 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T01:23:27.778 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T01:23:31.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:31.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:23:31.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: mon.a calling monitor election 2024-09-17T01:23:31.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: mon.c calling monitor election 2024-09-17T01:23:31.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:31.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:31.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: mon.b calling monitor election 2024-09-17T01:23:31.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:31.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-17T01:23:31.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: monmap epoch 3 2024-09-17T01:23:31.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: fsid 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:23:31.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: last_changed 2024-09-17T01:23:26.368957+0000 2024-09-17T01:23:31.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: created 2024-09-17T01:21:45.503842+0000 2024-09-17T01:23:31.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: min_mon_release 19 (squid) 2024-09-17T01:23:31.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: election_strategy: 1 2024-09-17T01:23:31.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-09-17T01:23:31.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: 1: [v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0] mon.c 2024-09-17T01:23:31.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: 2: [v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0] mon.b 2024-09-17T01:23:31.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: fsmap 2024-09-17T01:23:31.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T01:23:31.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: mgrmap e13: a(active, since 47s) 2024-09-17T01:23:31.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: overall HEALTH_OK 2024-09-17T01:23:31.883 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:31.883 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:31.883 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:31.883 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:31.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:31.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:23:31.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: mon.a calling monitor election 2024-09-17T01:23:31.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: mon.c calling monitor election 2024-09-17T01:23:31.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:31.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:31.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: mon.b calling monitor election 2024-09-17T01:23:31.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:31.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-17T01:23:31.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: monmap epoch 3 2024-09-17T01:23:31.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: fsid 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:23:31.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: last_changed 2024-09-17T01:23:26.368957+0000 2024-09-17T01:23:31.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: created 2024-09-17T01:21:45.503842+0000 2024-09-17T01:23:31.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: min_mon_release 19 (squid) 2024-09-17T01:23:31.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: election_strategy: 1 2024-09-17T01:23:31.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-09-17T01:23:31.887 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: 1: [v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0] mon.c 2024-09-17T01:23:31.887 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: 2: [v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0] mon.b 2024-09-17T01:23:31.887 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: fsmap 2024-09-17T01:23:31.887 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T01:23:31.887 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: mgrmap e13: a(active, since 47s) 2024-09-17T01:23:31.887 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: overall HEALTH_OK 2024-09-17T01:23:31.887 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:31.887 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:31.887 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:31.887 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:31.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:31.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:23:31.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: mon.a calling monitor election 2024-09-17T01:23:31.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: mon.c calling monitor election 2024-09-17T01:23:31.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:23:31.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:31.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: mon.b calling monitor election 2024-09-17T01:23:31.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:31.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.926 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:31.926 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-17T01:23:31.926 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: monmap epoch 3 2024-09-17T01:23:31.926 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: fsid 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:23:31.926 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: last_changed 2024-09-17T01:23:26.368957+0000 2024-09-17T01:23:31.926 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: created 2024-09-17T01:21:45.503842+0000 2024-09-17T01:23:31.926 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: min_mon_release 19 (squid) 2024-09-17T01:23:31.926 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: election_strategy: 1 2024-09-17T01:23:31.926 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-09-17T01:23:31.926 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: 1: [v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0] mon.c 2024-09-17T01:23:31.926 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: 2: [v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0] mon.b 2024-09-17T01:23:31.926 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: fsmap 2024-09-17T01:23:31.926 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T01:23:31.926 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: mgrmap e13: a(active, since 47s) 2024-09-17T01:23:31.927 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: overall HEALTH_OK 2024-09-17T01:23:31.927 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:31.927 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:31.927 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:31.927 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:32.028 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:23:32.028 INFO:teuthology.orchestra.run.smithi191.stdout:{"epoch":3,"fsid":"181a7ed8-7493-11ef-bceb-c7b262605968","modified":"2024-09-17T01:23:26.368957Z","created":"2024-09-17T01:21:45.503842Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:3300","nonce":0},{"type":"v1","addr":"172.21.15.47:6789","nonce":0}]},"addr":"172.21.15.47:6789/0","public_addr":"172.21.15.47:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:3300","nonce":0},{"type":"v1","addr":"172.21.15.191:6789","nonce":0}]},"addr":"172.21.15.191:6789/0","public_addr":"172.21.15.191:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:3300","nonce":0},{"type":"v1","addr":"172.21.15.160:6789","nonce":0}]},"addr":"172.21.15.160:6789/0","public_addr":"172.21.15.160:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2024-09-17T01:23:32.028 INFO:teuthology.orchestra.run.smithi191.stderr:dumped monmap epoch 3 2024-09-17T01:23:32.780 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:32 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:23:32.780 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:32 smithi191 ceph-mon[33187]: from='client.? 172.21.15.191:0/276889948' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T01:23:32.780 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:32 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:32.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:32 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:23:32.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:32 smithi160 ceph-mon[32760]: from='client.? 172.21.15.191:0/276889948' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T01:23:32.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:32 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:32.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:32 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:23:32.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:32 smithi047 ceph-mon[29638]: from='client.? 172.21.15.191:0/276889948' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T01:23:32.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:32 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:23:33.188 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-17T01:23:33.189 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-17T01:23:33.447 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:23:33.774 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:33.774 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.774 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.774 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.774 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.775 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:33.775 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:23:33.775 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.775 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.775 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.775 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.775 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.775 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.775 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.775 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.775 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.775 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.775 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.775 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:23:33.776 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T01:23:33.776 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:33.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:23:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:23:33.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T01:23:33.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:33.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:33.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:33.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:23:33.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:33.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:23:33.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T01:23:33.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:34.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:34 smithi047 ceph-mon[29638]: Updating smithi047:/etc/ceph/ceph.conf 2024-09-17T01:23:34.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:34 smithi047 ceph-mon[29638]: Updating smithi160:/etc/ceph/ceph.conf 2024-09-17T01:23:34.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:34 smithi047 ceph-mon[29638]: Updating smithi191:/etc/ceph/ceph.conf 2024-09-17T01:23:34.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:34 smithi047 ceph-mon[29638]: Updating smithi160:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:23:34.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:34 smithi047 ceph-mon[29638]: Updating smithi191:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:23:34.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:34 smithi047 ceph-mon[29638]: Updating smithi047:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:23:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:34 smithi047 ceph-mon[29638]: Reconfiguring mon.a (unknown last config time)... 2024-09-17T01:23:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:34 smithi047 ceph-mon[29638]: Reconfiguring daemon mon.a on smithi047 2024-09-17T01:23:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:34 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:34.689 INFO:teuthology.orchestra.run.smithi047.stdout:# minimal ceph.conf for 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:23:34.689 INFO:teuthology.orchestra.run.smithi047.stdout:[global] 2024-09-17T01:23:34.689 INFO:teuthology.orchestra.run.smithi047.stdout: fsid = 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:23:34.689 INFO:teuthology.orchestra.run.smithi047.stdout: mon_host = [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] [v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0] [v2:172.21.15.191:3300/0,v1:172.21.15.191:6789/0] 2024-09-17T01:23:34.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:34 smithi191 ceph-mon[33187]: Updating smithi047:/etc/ceph/ceph.conf 2024-09-17T01:23:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:34 smithi191 ceph-mon[33187]: Updating smithi160:/etc/ceph/ceph.conf 2024-09-17T01:23:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:34 smithi191 ceph-mon[33187]: Updating smithi191:/etc/ceph/ceph.conf 2024-09-17T01:23:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:34 smithi191 ceph-mon[33187]: Updating smithi160:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:23:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:34 smithi191 ceph-mon[33187]: Updating smithi191:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:23:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:34 smithi191 ceph-mon[33187]: Updating smithi047:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:23:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:34 smithi191 ceph-mon[33187]: Reconfiguring mon.a (unknown last config time)... 2024-09-17T01:23:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:34 smithi191 ceph-mon[33187]: Reconfiguring daemon mon.a on smithi047 2024-09-17T01:23:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:34 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:34.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:34 smithi160 ceph-mon[32760]: Updating smithi047:/etc/ceph/ceph.conf 2024-09-17T01:23:34.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:34 smithi160 ceph-mon[32760]: Updating smithi160:/etc/ceph/ceph.conf 2024-09-17T01:23:34.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:34 smithi160 ceph-mon[32760]: Updating smithi191:/etc/ceph/ceph.conf 2024-09-17T01:23:34.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:34 smithi160 ceph-mon[32760]: Updating smithi160:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:23:34.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:34 smithi160 ceph-mon[32760]: Updating smithi191:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:23:34.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:34 smithi160 ceph-mon[32760]: Updating smithi047:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:23:34.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:34 smithi160 ceph-mon[32760]: Reconfiguring mon.a (unknown last config time)... 2024-09-17T01:23:34.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:34 smithi160 ceph-mon[32760]: Reconfiguring daemon mon.a on smithi047 2024-09-17T01:23:34.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:34 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:35.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:35 smithi047 ceph-mon[29638]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:35.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:35 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/3913442557' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:35.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:35 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:35.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:35 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:35.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:35 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:23:35.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:35 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T01:23:35.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:35 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:35.734 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:35 smithi160 ceph-mon[32760]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:35.734 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:35 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/3913442557' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:35.734 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:35 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:35.734 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:35 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:35.734 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:35 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:23:35.734 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:35 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T01:23:35.735 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:35 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:35.746 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-17T01:23:35.746 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-09-17T01:23:35.746 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T01:23:35.776 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-09-17T01:23:35.776 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T01:23:35.844 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-17T01:23:35.844 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T01:23:35.871 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-17T01:23:35.871 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T01:23:35.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:35 smithi191 ceph-mon[33187]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:35.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:35 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/3913442557' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:35.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:35 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:35.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:35 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:35.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:35 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:23:35.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:35 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T01:23:35.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:35 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:35.937 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-17T01:23:35.937 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T01:23:35.969 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-17T01:23:35.969 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T01:23:36.039 INFO:tasks.cephadm:Adding mgr.a on smithi047 2024-09-17T01:23:36.039 INFO:tasks.cephadm:Adding mgr.b on smithi160 2024-09-17T01:23:36.039 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph orch apply mgr '2;smithi047=a;smithi160=b' 2024-09-17T01:23:36.324 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T01:23:36.714 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:36 smithi191 ceph-mon[33187]: Reconfiguring mon.b (monmap changed)... 2024-09-17T01:23:36.714 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:36 smithi191 ceph-mon[33187]: Reconfiguring daemon mon.b on smithi160 2024-09-17T01:23:36.714 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:36 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:36.714 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:36 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:36.714 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:36 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:23:36.714 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:36 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T01:23:36.714 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:36 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:36.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:36 smithi160 ceph-mon[32760]: Reconfiguring mon.b (monmap changed)... 2024-09-17T01:23:36.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:36 smithi160 ceph-mon[32760]: Reconfiguring daemon mon.b on smithi160 2024-09-17T01:23:36.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:36 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:36.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:36 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:36.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:36 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:23:36.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:36 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T01:23:36.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:36 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:36.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:36 smithi047 ceph-mon[29638]: Reconfiguring mon.b (monmap changed)... 2024-09-17T01:23:36.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:36 smithi047 ceph-mon[29638]: Reconfiguring daemon mon.b on smithi160 2024-09-17T01:23:36.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:36 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:36.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:36 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:36.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:36 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:23:36.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:36 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T01:23:36.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:36 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:36.991 INFO:teuthology.orchestra.run.smithi191.stdout:Scheduled mgr update... 2024-09-17T01:23:37.607 DEBUG:teuthology.orchestra.run.smithi160:mgr.b> sudo journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mgr.b.service 2024-09-17T01:23:37.610 INFO:tasks.cephadm:Deploying OSDs... 2024-09-17T01:23:37.610 DEBUG:teuthology.orchestra.run.smithi047:> set -ex 2024-09-17T01:23:37.610 DEBUG:teuthology.orchestra.run.smithi047:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T01:23:37.630 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-17T01:23:37.631 DEBUG:teuthology.orchestra.run.smithi047:> stat /dev/vg_nvme/lv_1 2024-09-17T01:23:37.691 INFO:teuthology.orchestra.run.smithi047.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T01:23:37.691 INFO:teuthology.orchestra.run.smithi047.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T01:23:37.691 INFO:teuthology.orchestra.run.smithi047.stdout:Device: 5h/5d Inode: 972 Links: 1 2024-09-17T01:23:37.691 INFO:teuthology.orchestra.run.smithi047.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T01:23:37.691 INFO:teuthology.orchestra.run.smithi047.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T01:23:37.691 INFO:teuthology.orchestra.run.smithi047.stdout:Access: 2024-09-17 01:22:54.644746682 +0000 2024-09-17T01:23:37.691 INFO:teuthology.orchestra.run.smithi047.stdout:Modify: 2024-09-17 01:18:19.766314154 +0000 2024-09-17T01:23:37.691 INFO:teuthology.orchestra.run.smithi047.stdout:Change: 2024-09-17 01:18:19.766314154 +0000 2024-09-17T01:23:37.691 INFO:teuthology.orchestra.run.smithi047.stdout: Birth: 2024-09-17 01:18:19.766314154 +0000 2024-09-17T01:23:37.692 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T01:23:37.737 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:37 smithi191 ceph-mon[33187]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:37.737 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:37 smithi191 ceph-mon[33187]: Reconfiguring mon.c (monmap changed)... 2024-09-17T01:23:37.737 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:37 smithi191 ceph-mon[33187]: Reconfiguring daemon mon.c on smithi191 2024-09-17T01:23:37.737 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:37 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:37.758 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:37 smithi047 ceph-mon[29638]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:37.758 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:37 smithi047 ceph-mon[29638]: Reconfiguring mon.c (monmap changed)... 2024-09-17T01:23:37.758 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:37 smithi047 ceph-mon[29638]: Reconfiguring daemon mon.c on smithi191 2024-09-17T01:23:37.758 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:37 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:37.761 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records in 2024-09-17T01:23:37.761 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records out 2024-09-17T01:23:37.761 INFO:teuthology.orchestra.run.smithi047.stderr:512 bytes copied, 0.000136134 s, 3.8 MB/s 2024-09-17T01:23:37.762 DEBUG:teuthology.orchestra.run.smithi047:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T01:23:37.823 DEBUG:teuthology.orchestra.run.smithi047:> stat /dev/vg_nvme/lv_2 2024-09-17T01:23:37.883 INFO:teuthology.orchestra.run.smithi047.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T01:23:37.883 INFO:teuthology.orchestra.run.smithi047.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T01:23:37.883 INFO:teuthology.orchestra.run.smithi047.stdout:Device: 5h/5d Inode: 977 Links: 1 2024-09-17T01:23:37.883 INFO:teuthology.orchestra.run.smithi047.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T01:23:37.883 INFO:teuthology.orchestra.run.smithi047.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T01:23:37.883 INFO:teuthology.orchestra.run.smithi047.stdout:Access: 2024-09-17 01:22:54.671746117 +0000 2024-09-17T01:23:37.883 INFO:teuthology.orchestra.run.smithi047.stdout:Modify: 2024-09-17 01:18:19.766314154 +0000 2024-09-17T01:23:37.883 INFO:teuthology.orchestra.run.smithi047.stdout:Change: 2024-09-17 01:18:19.766314154 +0000 2024-09-17T01:23:37.883 INFO:teuthology.orchestra.run.smithi047.stdout: Birth: 2024-09-17 01:18:19.766314154 +0000 2024-09-17T01:23:37.884 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T01:23:37.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:37 smithi160 ceph-mon[32760]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:37.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:37 smithi160 ceph-mon[32760]: Reconfiguring mon.c (monmap changed)... 2024-09-17T01:23:37.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:37 smithi160 ceph-mon[32760]: Reconfiguring daemon mon.c on smithi191 2024-09-17T01:23:37.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:37 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:37.952 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records in 2024-09-17T01:23:37.953 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records out 2024-09-17T01:23:37.953 INFO:teuthology.orchestra.run.smithi047.stderr:512 bytes copied, 0.000131845 s, 3.9 MB/s 2024-09-17T01:23:37.954 DEBUG:teuthology.orchestra.run.smithi047:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T01:23:38.015 DEBUG:teuthology.orchestra.run.smithi047:> stat /dev/vg_nvme/lv_3 2024-09-17T01:23:38.074 INFO:teuthology.orchestra.run.smithi047.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T01:23:38.075 INFO:teuthology.orchestra.run.smithi047.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T01:23:38.075 INFO:teuthology.orchestra.run.smithi047.stdout:Device: 5h/5d Inode: 983 Links: 1 2024-09-17T01:23:38.075 INFO:teuthology.orchestra.run.smithi047.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T01:23:38.075 INFO:teuthology.orchestra.run.smithi047.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T01:23:38.075 INFO:teuthology.orchestra.run.smithi047.stdout:Access: 2024-09-17 01:22:54.698745551 +0000 2024-09-17T01:23:38.075 INFO:teuthology.orchestra.run.smithi047.stdout:Modify: 2024-09-17 01:18:19.766314154 +0000 2024-09-17T01:23:38.075 INFO:teuthology.orchestra.run.smithi047.stdout:Change: 2024-09-17 01:18:19.766314154 +0000 2024-09-17T01:23:38.075 INFO:teuthology.orchestra.run.smithi047.stdout: Birth: 2024-09-17 01:18:19.766314154 +0000 2024-09-17T01:23:38.075 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T01:23:38.143 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records in 2024-09-17T01:23:38.144 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records out 2024-09-17T01:23:38.144 INFO:teuthology.orchestra.run.smithi047.stderr:512 bytes copied, 0.000124321 s, 4.1 MB/s 2024-09-17T01:23:38.145 DEBUG:teuthology.orchestra.run.smithi047:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T01:23:38.206 DEBUG:teuthology.orchestra.run.smithi047:> stat /dev/vg_nvme/lv_4 2024-09-17T01:23:38.265 INFO:teuthology.orchestra.run.smithi047.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T01:23:38.265 INFO:teuthology.orchestra.run.smithi047.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T01:23:38.265 INFO:teuthology.orchestra.run.smithi047.stdout:Device: 5h/5d Inode: 974 Links: 1 2024-09-17T01:23:38.265 INFO:teuthology.orchestra.run.smithi047.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T01:23:38.265 INFO:teuthology.orchestra.run.smithi047.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T01:23:38.265 INFO:teuthology.orchestra.run.smithi047.stdout:Access: 2024-09-17 01:22:54.726744964 +0000 2024-09-17T01:23:38.265 INFO:teuthology.orchestra.run.smithi047.stdout:Modify: 2024-09-17 01:18:19.766314154 +0000 2024-09-17T01:23:38.266 INFO:teuthology.orchestra.run.smithi047.stdout:Change: 2024-09-17 01:18:19.766314154 +0000 2024-09-17T01:23:38.266 INFO:teuthology.orchestra.run.smithi047.stdout: Birth: 2024-09-17 01:18:19.766314154 +0000 2024-09-17T01:23:38.266 DEBUG:teuthology.orchestra.run.smithi047:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T01:23:38.333 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records in 2024-09-17T01:23:38.334 INFO:teuthology.orchestra.run.smithi047.stderr:1+0 records out 2024-09-17T01:23:38.334 INFO:teuthology.orchestra.run.smithi047.stderr:512 bytes copied, 0.000125888 s, 4.1 MB/s 2024-09-17T01:23:38.335 DEBUG:teuthology.orchestra.run.smithi047:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T01:23:38.395 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-09-17T01:23:38.395 DEBUG:teuthology.orchestra.run.smithi160:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T01:23:38.414 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-17T01:23:38.414 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/vg_nvme/lv_1 2024-09-17T01:23:38.473 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T01:23:38.474 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T01:23:38.474 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 978 Links: 1 2024-09-17T01:23:38.474 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T01:23:38.474 INFO:teuthology.orchestra.run.smithi160.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T01:23:38.474 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-09-17 01:23:25.835878528 +0000 2024-09-17T01:23:38.474 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-09-17 01:18:19.600649698 +0000 2024-09-17T01:23:38.474 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-09-17 01:18:19.600649698 +0000 2024-09-17T01:23:38.474 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: 2024-09-17 01:18:19.600649698 +0000 2024-09-17T01:23:38.474 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T01:23:38.540 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-09-17T01:23:38.541 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-09-17T01:23:38.541 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000203147 s, 2.5 MB/s 2024-09-17T01:23:38.542 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T01:23:38.598 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/vg_nvme/lv_2 2024-09-17T01:23:38.655 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T01:23:38.656 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T01:23:38.656 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 973 Links: 1 2024-09-17T01:23:38.656 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T01:23:38.656 INFO:teuthology.orchestra.run.smithi160.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T01:23:38.656 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-09-17 01:23:25.836878514 +0000 2024-09-17T01:23:38.656 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-09-17 01:18:19.599649712 +0000 2024-09-17T01:23:38.656 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-09-17 01:18:19.599649712 +0000 2024-09-17T01:23:38.656 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: 2024-09-17 01:18:19.599649712 +0000 2024-09-17T01:23:38.656 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T01:23:38.720 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-09-17T01:23:38.721 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-09-17T01:23:38.721 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000207506 s, 2.5 MB/s 2024-09-17T01:23:38.722 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T01:23:38.780 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/vg_nvme/lv_3 2024-09-17T01:23:38.836 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T01:23:38.836 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T01:23:38.836 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 966 Links: 1 2024-09-17T01:23:38.836 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T01:23:38.836 INFO:teuthology.orchestra.run.smithi160.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T01:23:38.836 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-09-17 01:23:25.836878514 +0000 2024-09-17T01:23:38.837 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-09-17 01:18:19.598649726 +0000 2024-09-17T01:23:38.837 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-09-17 01:18:19.598649726 +0000 2024-09-17T01:23:38.837 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: 2024-09-17 01:18:19.598649726 +0000 2024-09-17T01:23:38.837 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T01:23:38.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:38 smithi191 ceph-mon[33187]: from='client.24100 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi047=a;smithi160=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:23:38.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:38 smithi191 ceph-mon[33187]: Saving service mgr spec with placement smithi047=a;smithi160=b;count:2 2024-09-17T01:23:38.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:38 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:38.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:38 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:38.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:38 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:23:38.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:38 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:38.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:38 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:23:38.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:38 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:38.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:38 smithi160 ceph-mon[32760]: from='client.24100 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi047=a;smithi160=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:23:38.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:38 smithi160 ceph-mon[32760]: Saving service mgr spec with placement smithi047=a;smithi160=b;count:2 2024-09-17T01:23:38.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:38 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:38.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:38 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:38.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:38 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:23:38.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:38 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:38.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:38 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:23:38.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:38 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:38.900 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-09-17T01:23:38.900 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-09-17T01:23:38.900 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000195237 s, 2.6 MB/s 2024-09-17T01:23:38.901 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T01:23:38.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:38 smithi047 ceph-mon[29638]: from='client.24100 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi047=a;smithi160=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:23:38.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:38 smithi047 ceph-mon[29638]: Saving service mgr spec with placement smithi047=a;smithi160=b;count:2 2024-09-17T01:23:38.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:38 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:38.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:38 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:38.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:38 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:23:38.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:38 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:38.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:38 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:23:38.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:38 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:38.959 DEBUG:teuthology.orchestra.run.smithi160:> stat /dev/vg_nvme/lv_4 2024-09-17T01:23:39.015 INFO:teuthology.orchestra.run.smithi160.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T01:23:39.016 INFO:teuthology.orchestra.run.smithi160.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T01:23:39.016 INFO:teuthology.orchestra.run.smithi160.stdout:Device: 5h/5d Inode: 983 Links: 1 2024-09-17T01:23:39.016 INFO:teuthology.orchestra.run.smithi160.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T01:23:39.016 INFO:teuthology.orchestra.run.smithi160.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T01:23:39.016 INFO:teuthology.orchestra.run.smithi160.stdout:Access: 2024-09-17 01:23:25.837878500 +0000 2024-09-17T01:23:39.016 INFO:teuthology.orchestra.run.smithi160.stdout:Modify: 2024-09-17 01:18:19.601649684 +0000 2024-09-17T01:23:39.016 INFO:teuthology.orchestra.run.smithi160.stdout:Change: 2024-09-17 01:18:19.601649684 +0000 2024-09-17T01:23:39.016 INFO:teuthology.orchestra.run.smithi160.stdout: Birth: 2024-09-17 01:18:19.601649684 +0000 2024-09-17T01:23:39.016 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T01:23:39.080 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records in 2024-09-17T01:23:39.081 INFO:teuthology.orchestra.run.smithi160.stderr:1+0 records out 2024-09-17T01:23:39.081 INFO:teuthology.orchestra.run.smithi160.stderr:512 bytes copied, 0.000205621 s, 2.5 MB/s 2024-09-17T01:23:39.082 DEBUG:teuthology.orchestra.run.smithi160:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T01:23:39.138 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-09-17T01:23:39.138 DEBUG:teuthology.orchestra.run.smithi191:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T01:23:39.158 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-17T01:23:39.158 DEBUG:teuthology.orchestra.run.smithi191:> stat /dev/vg_nvme/lv_1 2024-09-17T01:23:39.216 INFO:teuthology.orchestra.run.smithi191.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T01:23:39.216 INFO:teuthology.orchestra.run.smithi191.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T01:23:39.216 INFO:teuthology.orchestra.run.smithi191.stdout:Device: 5h/5d Inode: 967 Links: 1 2024-09-17T01:23:39.217 INFO:teuthology.orchestra.run.smithi191.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T01:23:39.217 INFO:teuthology.orchestra.run.smithi191.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T01:23:39.217 INFO:teuthology.orchestra.run.smithi191.stdout:Access: 2024-09-17 01:23:16.751577986 +0000 2024-09-17T01:23:39.217 INFO:teuthology.orchestra.run.smithi191.stdout:Modify: 2024-09-17 01:18:19.738689019 +0000 2024-09-17T01:23:39.217 INFO:teuthology.orchestra.run.smithi191.stdout:Change: 2024-09-17 01:18:19.738689019 +0000 2024-09-17T01:23:39.217 INFO:teuthology.orchestra.run.smithi191.stdout: Birth: 2024-09-17 01:18:19.738689019 +0000 2024-09-17T01:23:39.217 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T01:23:39.287 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records in 2024-09-17T01:23:39.287 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records out 2024-09-17T01:23:39.287 INFO:teuthology.orchestra.run.smithi191.stderr:512 bytes copied, 0.000215298 s, 2.4 MB/s 2024-09-17T01:23:39.289 DEBUG:teuthology.orchestra.run.smithi191:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T01:23:39.348 DEBUG:teuthology.orchestra.run.smithi191:> stat /dev/vg_nvme/lv_2 2024-09-17T01:23:39.406 INFO:teuthology.orchestra.run.smithi191.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T01:23:39.406 INFO:teuthology.orchestra.run.smithi191.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T01:23:39.406 INFO:teuthology.orchestra.run.smithi191.stdout:Device: 5h/5d Inode: 968 Links: 1 2024-09-17T01:23:39.406 INFO:teuthology.orchestra.run.smithi191.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T01:23:39.407 INFO:teuthology.orchestra.run.smithi191.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T01:23:39.407 INFO:teuthology.orchestra.run.smithi191.stdout:Access: 2024-09-17 01:23:16.751577986 +0000 2024-09-17T01:23:39.407 INFO:teuthology.orchestra.run.smithi191.stdout:Modify: 2024-09-17 01:18:19.738689019 +0000 2024-09-17T01:23:39.407 INFO:teuthology.orchestra.run.smithi191.stdout:Change: 2024-09-17 01:18:19.738689019 +0000 2024-09-17T01:23:39.407 INFO:teuthology.orchestra.run.smithi191.stdout: Birth: 2024-09-17 01:18:19.738689019 +0000 2024-09-17T01:23:39.408 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T01:23:39.471 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records in 2024-09-17T01:23:39.471 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records out 2024-09-17T01:23:39.472 INFO:teuthology.orchestra.run.smithi191.stderr:512 bytes copied, 0.000214962 s, 2.4 MB/s 2024-09-17T01:23:39.472 DEBUG:teuthology.orchestra.run.smithi191:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T01:23:39.531 DEBUG:teuthology.orchestra.run.smithi191:> stat /dev/vg_nvme/lv_3 2024-09-17T01:23:39.587 INFO:teuthology.orchestra.run.smithi191.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T01:23:39.587 INFO:teuthology.orchestra.run.smithi191.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T01:23:39.587 INFO:teuthology.orchestra.run.smithi191.stdout:Device: 5h/5d Inode: 983 Links: 1 2024-09-17T01:23:39.587 INFO:teuthology.orchestra.run.smithi191.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T01:23:39.587 INFO:teuthology.orchestra.run.smithi191.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T01:23:39.588 INFO:teuthology.orchestra.run.smithi191.stdout:Access: 2024-09-17 01:23:16.751577986 +0000 2024-09-17T01:23:39.588 INFO:teuthology.orchestra.run.smithi191.stdout:Modify: 2024-09-17 01:18:19.741689649 +0000 2024-09-17T01:23:39.588 INFO:teuthology.orchestra.run.smithi191.stdout:Change: 2024-09-17 01:18:19.741689649 +0000 2024-09-17T01:23:39.588 INFO:teuthology.orchestra.run.smithi191.stdout: Birth: 2024-09-17 01:18:19.741689649 +0000 2024-09-17T01:23:39.588 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T01:23:39.629 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:39 smithi191 ceph-mon[33187]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:39.629 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:39 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T01:23:39.629 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:39 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T01:23:39.629 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:39 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T01:23:39.629 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:39 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:39.630 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:39 smithi191 ceph-mon[33187]: Deploying daemon mgr.b on smithi160 2024-09-17T01:23:39.652 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records in 2024-09-17T01:23:39.652 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records out 2024-09-17T01:23:39.652 INFO:teuthology.orchestra.run.smithi191.stderr:512 bytes copied, 0.000248946 s, 2.1 MB/s 2024-09-17T01:23:39.653 DEBUG:teuthology.orchestra.run.smithi191:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T01:23:39.711 DEBUG:teuthology.orchestra.run.smithi191:> stat /dev/vg_nvme/lv_4 2024-09-17T01:23:39.767 INFO:teuthology.orchestra.run.smithi191.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T01:23:39.767 INFO:teuthology.orchestra.run.smithi191.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T01:23:39.767 INFO:teuthology.orchestra.run.smithi191.stdout:Device: 5h/5d Inode: 970 Links: 1 2024-09-17T01:23:39.767 INFO:teuthology.orchestra.run.smithi191.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T01:23:39.767 INFO:teuthology.orchestra.run.smithi191.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T01:23:39.767 INFO:teuthology.orchestra.run.smithi191.stdout:Access: 2024-09-17 01:23:16.752577968 +0000 2024-09-17T01:23:39.768 INFO:teuthology.orchestra.run.smithi191.stdout:Modify: 2024-09-17 01:18:19.739689229 +0000 2024-09-17T01:23:39.768 INFO:teuthology.orchestra.run.smithi191.stdout:Change: 2024-09-17 01:18:19.739689229 +0000 2024-09-17T01:23:39.768 INFO:teuthology.orchestra.run.smithi191.stdout: Birth: 2024-09-17 01:18:19.739689229 +0000 2024-09-17T01:23:39.768 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T01:23:39.832 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records in 2024-09-17T01:23:39.832 INFO:teuthology.orchestra.run.smithi191.stderr:1+0 records out 2024-09-17T01:23:39.832 INFO:teuthology.orchestra.run.smithi191.stderr:512 bytes copied, 0.000259673 s, 2.0 MB/s 2024-09-17T01:23:39.833 DEBUG:teuthology.orchestra.run.smithi191:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T01:23:39.834 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:39 smithi160 ceph-mon[32760]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:39.834 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:39 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T01:23:39.834 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:39 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T01:23:39.834 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:39 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T01:23:39.834 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:39 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:39.834 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:39 smithi160 ceph-mon[32760]: Deploying daemon mgr.b on smithi160 2024-09-17T01:23:39.890 INFO:tasks.cephadm:Deploying osd.0 on smithi047 with /dev/vg_nvme/lv_4... 2024-09-17T01:23:39.891 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-17T01:23:39.918 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:39 smithi047 ceph-mon[29638]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:39.918 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:39 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T01:23:39.918 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:39 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T01:23:39.918 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:39 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T01:23:39.918 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:39 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:39.918 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:39 smithi047 ceph-mon[29638]: Deploying daemon mgr.b on smithi160 2024-09-17T01:23:40.154 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:23:40.435 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:40 smithi160 podman[34113]: 2024-09-17 01:23:40.405868647 +0000 UTC m=+0.126075812 container create bb5def9d85c41cb6cdfd22ff31dcfd6f82859007f7b22d361a04757c9ed0e9f6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, ceph=True, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, RELEASE=squid-c2ddf97, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD) 2024-09-17T01:23:40.689 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:40 smithi160 podman[34113]: 2024-09-17 01:23:40.61650159 +0000 UTC m=+0.336708758 container init bb5def9d85c41cb6cdfd22ff31dcfd6f82859007f7b22d361a04757c9ed0e9f6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, RELEASE=squid-c2ddf97, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, GIT_CLEAN=True, ceph=True, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux ) 2024-09-17T01:23:40.689 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:40 smithi160 podman[34113]: 2024-09-17 01:23:40.619283862 +0000 UTC m=+0.339491024 container start bb5def9d85c41cb6cdfd22ff31dcfd6f82859007f7b22d361a04757c9ed0e9f6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=squid-c2ddf97, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, CEPH_POINT_RELEASE=, GIT_CLEAN=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2) 2024-09-17T01:23:40.689 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:40 smithi160 ceph-mgr[34132]: -- 172.21.15.160:0/952173703 <== mon.2 v2:172.21.15.160:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x55aaeb4dd0e0 con 0x55aaeb4bb000 2024-09-17T01:23:40.973 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:40 smithi160 bash[34113]: bb5def9d85c41cb6cdfd22ff31dcfd6f82859007f7b22d361a04757c9ed0e9f6 2024-09-17T01:23:40.973 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:40 smithi160 systemd[1]: Started Ceph mgr.b for 181a7ed8-7493-11ef-bceb-c7b262605968. 2024-09-17T01:23:40.973 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:40 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:40.752+0000 7fa7085ad040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-17T01:23:40.973 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:40 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:40.816+0000 7fa7085ad040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-17T01:23:40.973 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:40 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:40.974+0000 7fa7085ad040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-17T01:23:41.360 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:41 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:41.044+0000 7fa7085ad040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-17T01:23:41.360 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:41 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:41.203+0000 7fa7085ad040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-17T01:23:41.360 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:41 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:41.361+0000 7fa7085ad040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-17T01:23:41.612 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:41 smithi160 ceph-mon[32760]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:41.612 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:41 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:41.613 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:41 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:41.613 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:41 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:41.613 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:41 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:41.613 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:41 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:23:41.842 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:41 smithi047 ceph-mon[29638]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:41.843 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:41 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:41.843 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:41 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:41.843 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:41 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:41.843 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:41 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:41.843 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:41 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:23:41.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:41 smithi191 ceph-mon[33187]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:41.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:41 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:41.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:41 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:41.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:41 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:41.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:41 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:41.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:41 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:23:41.884 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:41 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:41.692+0000 7fa7085ad040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-17T01:23:41.884 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:41 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:41.754+0000 7fa7085ad040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-17T01:23:42.384 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:41 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:41.949+0000 7fa7085ad040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-17T01:23:42.564 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:23:42.592 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi047:vg_nvme/lv_4 2024-09-17T01:23:43.134 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:42 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:42.831+0000 7fa7085ad040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-17T01:23:43.134 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:42 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:42.897+0000 7fa7085ad040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-17T01:23:43.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:42 smithi160 ceph-mon[32760]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:43.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:42 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:43.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:42 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:43.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:42 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:43.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:42 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:23:43.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:42 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:43.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:42 smithi160 ceph-mon[32760]: Reconfiguring mgr.a (unknown last config time)... 2024-09-17T01:23:43.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:42 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T01:23:43.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:42 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T01:23:43.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:42 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:43.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:42 smithi160 ceph-mon[32760]: Reconfiguring daemon mgr.a on smithi047 2024-09-17T01:23:43.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:42 smithi047 ceph-mon[29638]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:43.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:42 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:43.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:42 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:43.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:42 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:43.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:42 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:23:43.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:42 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:43.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:42 smithi047 ceph-mon[29638]: Reconfiguring mgr.a (unknown last config time)... 2024-09-17T01:23:43.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:42 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T01:23:43.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:42 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T01:23:43.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:42 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:43.175 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:42 smithi047 ceph-mon[29638]: Reconfiguring daemon mgr.a on smithi047 2024-09-17T01:23:43.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:42 smithi191 ceph-mon[33187]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:43.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:42 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:43.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:42 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:43.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:42 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:43.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:42 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:23:43.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:42 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:43.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:42 smithi191 ceph-mon[33187]: Reconfiguring mgr.a (unknown last config time)... 2024-09-17T01:23:43.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:42 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T01:23:43.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:42 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T01:23:43.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:42 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:43.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:42 smithi191 ceph-mon[33187]: Reconfiguring daemon mgr.a on smithi047 2024-09-17T01:23:43.805 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:23:43.876 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:43 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:43.613+0000 7fa7085ad040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-17T01:23:43.876 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:43 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:43.730+0000 7fa7085ad040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-17T01:23:44.134 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:43 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:43.878+0000 7fa7085ad040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-17T01:23:44.134 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:43 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:43.940+0000 7fa7085ad040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-17T01:23:44.134 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:44.089+0000 7fa7085ad040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-17T01:23:44.436 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:44.158+0000 7fa7085ad040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-17T01:23:44.437 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:44.217+0000 7fa7085ad040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-17T01:23:44.437 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:44.374+0000 7fa7085ad040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-17T01:23:44.437 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:44.438+0000 7fa7085ad040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-17T01:23:44.702 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:44.505+0000 7fa7085ad040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-17T01:23:44.702 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:44.586+0000 7fa7085ad040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-17T01:23:44.702 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:44.645+0000 7fa7085ad040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-17T01:23:44.702 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:44.704+0000 7fa7085ad040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-17T01:23:44.991 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:44 smithi047 ceph-mon[29638]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:44.991 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:44 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:44.991 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:44 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:44.991 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:44 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:44.991 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:44 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:23:44.991 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:44 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:44.991 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:44 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:23:44.991 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:44 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:44.992 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:44 smithi047 ceph-mon[29638]: from='client.14223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi047:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:23:44.992 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:44 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:23:44.992 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:44 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:23:44.992 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:44 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:45.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:44 smithi191 ceph-mon[33187]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:45.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:44 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:45.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:44 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:45.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:44 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:45.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:44 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:23:45.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:44 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:45.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:44 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:23:45.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:44 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:45.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:44 smithi191 ceph-mon[33187]: from='client.14223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi047:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:23:45.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:44 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:23:45.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:44 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:23:45.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:44 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:45.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-mon[32760]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:45.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:45.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:45.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:45.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:23:45.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:45.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:23:45.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:23:45.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-mon[32760]: from='client.14223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi047:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:23:45.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:23:45.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:23:45.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:44 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:45.884 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:23:45 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b[34128]: 2024-09-17T01:23:45.488+0000 7fa7085ad040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-17T01:23:45.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:45 smithi160 ceph-mon[32760]: Standby manager daemon b started 2024-09-17T01:23:45.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:45 smithi160 ceph-mon[32760]: from='mgr.? 172.21.15.160:0/230469981' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-17T01:23:45.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:45 smithi160 ceph-mon[32760]: from='mgr.? 172.21.15.160:0/230469981' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-17T01:23:45.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:45 smithi160 ceph-mon[32760]: from='mgr.? 172.21.15.160:0/230469981' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-17T01:23:45.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:45 smithi160 ceph-mon[32760]: from='mgr.? 172.21.15.160:0/230469981' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-17T01:23:46.039 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:45 smithi047 ceph-mon[29638]: Standby manager daemon b started 2024-09-17T01:23:46.039 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:45 smithi047 ceph-mon[29638]: from='mgr.? 172.21.15.160:0/230469981' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-17T01:23:46.039 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:45 smithi047 ceph-mon[29638]: from='mgr.? 172.21.15.160:0/230469981' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-17T01:23:46.039 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:45 smithi047 ceph-mon[29638]: from='mgr.? 172.21.15.160:0/230469981' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-17T01:23:46.039 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:45 smithi047 ceph-mon[29638]: from='mgr.? 172.21.15.160:0/230469981' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-17T01:23:46.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:45 smithi191 ceph-mon[33187]: Standby manager daemon b started 2024-09-17T01:23:46.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:45 smithi191 ceph-mon[33187]: from='mgr.? 172.21.15.160:0/230469981' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-17T01:23:46.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:45 smithi191 ceph-mon[33187]: from='mgr.? 172.21.15.160:0/230469981' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-17T01:23:46.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:45 smithi191 ceph-mon[33187]: from='mgr.? 172.21.15.160:0/230469981' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-17T01:23:46.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:45 smithi191 ceph-mon[33187]: from='mgr.? 172.21.15.160:0/230469981' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-17T01:23:47.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:46 smithi191 ceph-mon[33187]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:47.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:46 smithi191 ceph-mon[33187]: mgrmap e14: a(active, since 62s), standbys: b 2024-09-17T01:23:47.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-17T01:23:47.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:46 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/436688762' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d5c0dae4-f9e2-4d23-a1c7-5041560e1237"}]: dispatch 2024-09-17T01:23:47.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:46 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/436688762' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d5c0dae4-f9e2-4d23-a1c7-5041560e1237"}]': finished 2024-09-17T01:23:47.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:46 smithi191 ceph-mon[33187]: osdmap e5: 1 total, 0 up, 1 in 2024-09-17T01:23:47.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:23:47.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:46 smithi160 ceph-mon[32760]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:47.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:46 smithi160 ceph-mon[32760]: mgrmap e14: a(active, since 62s), standbys: b 2024-09-17T01:23:47.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-17T01:23:47.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:46 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/436688762' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d5c0dae4-f9e2-4d23-a1c7-5041560e1237"}]: dispatch 2024-09-17T01:23:47.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:46 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/436688762' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d5c0dae4-f9e2-4d23-a1c7-5041560e1237"}]': finished 2024-09-17T01:23:47.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:46 smithi160 ceph-mon[32760]: osdmap e5: 1 total, 0 up, 1 in 2024-09-17T01:23:47.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:23:47.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:46 smithi047 ceph-mon[29638]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:47.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:46 smithi047 ceph-mon[29638]: mgrmap e14: a(active, since 62s), standbys: b 2024-09-17T01:23:47.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-17T01:23:47.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:46 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/436688762' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d5c0dae4-f9e2-4d23-a1c7-5041560e1237"}]: dispatch 2024-09-17T01:23:47.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:46 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/436688762' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d5c0dae4-f9e2-4d23-a1c7-5041560e1237"}]': finished 2024-09-17T01:23:47.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:46 smithi047 ceph-mon[29638]: osdmap e5: 1 total, 0 up, 1 in 2024-09-17T01:23:47.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:23:48.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:47 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/3877577795' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:23:48.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:47 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/3877577795' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:23:48.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:47 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/3877577795' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:23:49.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:48 smithi191 ceph-mon[33187]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:49.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:48 smithi160 ceph-mon[32760]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:49.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:48 smithi047 ceph-mon[29638]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:51.077 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:50 smithi047 ceph-mon[29638]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:51.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:50 smithi191 ceph-mon[33187]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:51.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:50 smithi160 ceph-mon[32760]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:52.744 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:52 smithi047 ceph-mon[29638]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:53.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:52 smithi191 ceph-mon[33187]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:53.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:52 smithi160 ceph-mon[32760]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:55.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:54 smithi191 ceph-mon[33187]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:55.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:54 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T01:23:55.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:54 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:55.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:54 smithi191 ceph-mon[33187]: Deploying daemon osd.0 on smithi047 2024-09-17T01:23:55.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:54 smithi160 ceph-mon[32760]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:55.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:54 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T01:23:55.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:54 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:55.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:54 smithi160 ceph-mon[32760]: Deploying daemon osd.0 on smithi047 2024-09-17T01:23:55.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:54 smithi047 ceph-mon[29638]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:55.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:54 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T01:23:55.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:54 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:23:55.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:54 smithi047 ceph-mon[29638]: Deploying daemon osd.0 on smithi047 2024-09-17T01:23:57.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:56 smithi191 ceph-mon[33187]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:57.130 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:56 smithi047 ceph-mon[29638]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:57.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:56 smithi160 ceph-mon[32760]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:59.024 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:23:58 smithi047 ceph-mon[29638]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:59.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:23:58 smithi191 ceph-mon[33187]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:23:59.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:23:58 smithi160 ceph-mon[32760]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:01.047 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:00 smithi047 ceph-mon[29638]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:01.047 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:00 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:01.047 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:00 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:01.047 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:00 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:01.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:00 smithi191 ceph-mon[33187]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:01.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:00 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:01.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:00 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:01.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:00 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:01.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:00 smithi160 ceph-mon[32760]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:01.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:00 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:01.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:00 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:01.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:00 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:02.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:02 smithi047 ceph-mon[29638]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:02.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:02 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:02.975 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:02 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:03.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:02 smithi191 ceph-mon[33187]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:03.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:02 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:03.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:02 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:03.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:02 smithi160 ceph-mon[32760]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:03.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:02 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:03.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:02 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:04.087 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:03 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:04.087 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:03 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:04.088 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:03 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:04.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:03 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:04.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:03 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:04.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:03 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:04.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:03 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:04.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:03 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:04.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:03 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:04.762 INFO:teuthology.orchestra.run.smithi047.stdout:Created osd(s) 0 on host 'smithi047' 2024-09-17T01:24:05.324 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:05 smithi047 ceph-mon[29638]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:05.324 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:05 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:05.324 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:05 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:05.324 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:05 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:05.355 DEBUG:teuthology.orchestra.run.smithi047:osd.0> sudo journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.0.service 2024-09-17T01:24:05.357 INFO:tasks.cephadm:Deploying osd.1 on smithi047 with /dev/vg_nvme/lv_3... 2024-09-17T01:24:05.358 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-17T01:24:05.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:05 smithi191 ceph-mon[33187]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:05.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:05 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:05.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:05 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:05.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:05 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:05.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:05 smithi160 ceph-mon[32760]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:05.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:05 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:05.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:05 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:05.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:05 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:06.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:06 smithi191 ceph-mon[33187]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T01:24:06.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:06 smithi160 ceph-mon[32760]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T01:24:06.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:06 smithi047 ceph-mon[29638]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T01:24:06.460 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:24:07.282 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:07 smithi047 ceph-mon[29638]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:07.282 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:07 smithi047 ceph-mon[29638]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T01:24:07.282 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:07 smithi047 ceph-mon[29638]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T01:24:07.282 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:07 smithi047 ceph-mon[29638]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]: dispatch 2024-09-17T01:24:07.282 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:07 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:07.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:07 smithi191 ceph-mon[33187]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:07.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:07 smithi191 ceph-mon[33187]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T01:24:07.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:07 smithi191 ceph-mon[33187]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T01:24:07.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:07 smithi191 ceph-mon[33187]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]: dispatch 2024-09-17T01:24:07.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:07 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:07.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:07 smithi160 ceph-mon[32760]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:07.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:07 smithi160 ceph-mon[32760]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T01:24:07.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:07 smithi160 ceph-mon[32760]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T01:24:07.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:07 smithi160 ceph-mon[32760]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]: dispatch 2024-09-17T01:24:07.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:07 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:07.615 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:24:07 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0[42560]: 2024-09-17T01:24:07.283+0000 7fdd2f864640 -1 osd.0 0 waiting for initial osdmap 2024-09-17T01:24:07.615 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:24:07 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0[42560]: 2024-09-17T01:24:07.285+0000 7fdd27684640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-17T01:24:08.124 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:08 smithi047 ceph-mon[29638]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]': finished 2024-09-17T01:24:08.124 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:08 smithi047 ceph-mon[29638]: osdmap e7: 1 total, 0 up, 1 in 2024-09-17T01:24:08.124 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:08 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:08.124 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:08 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:08.124 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:08 smithi047 ceph-mon[29638]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' 2024-09-17T01:24:08.125 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:08 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:08.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:08 smithi191 ceph-mon[33187]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]': finished 2024-09-17T01:24:08.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:08 smithi191 ceph-mon[33187]: osdmap e7: 1 total, 0 up, 1 in 2024-09-17T01:24:08.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:08 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:08.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:08 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:08.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:08 smithi191 ceph-mon[33187]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' 2024-09-17T01:24:08.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:08 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:08.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:08 smithi160 ceph-mon[32760]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]': finished 2024-09-17T01:24:08.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:08 smithi160 ceph-mon[32760]: osdmap e7: 1 total, 0 up, 1 in 2024-09-17T01:24:08.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:08 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:08.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:08 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:08.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:08 smithi160 ceph-mon[32760]: from='osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733]' entity='osd.0' 2024-09-17T01:24:08.385 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:08 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:09.061 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:09 smithi047 ceph-mon[29638]: purged_snaps scrub starts 2024-09-17T01:24:09.062 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:09 smithi047 ceph-mon[29638]: purged_snaps scrub ok 2024-09-17T01:24:09.062 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:09 smithi047 ceph-mon[29638]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:09.062 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:09 smithi047 ceph-mon[29638]: osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733] boot 2024-09-17T01:24:09.062 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:09 smithi047 ceph-mon[29638]: osdmap e8: 1 total, 1 up, 1 in 2024-09-17T01:24:09.062 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:09.062 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:09.062 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:09.062 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:24:09.062 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:09.062 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:09.062 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:09.062 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:09.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:09 smithi191 ceph-mon[33187]: purged_snaps scrub starts 2024-09-17T01:24:09.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:09 smithi191 ceph-mon[33187]: purged_snaps scrub ok 2024-09-17T01:24:09.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:09 smithi191 ceph-mon[33187]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:09.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:09 smithi191 ceph-mon[33187]: osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733] boot 2024-09-17T01:24:09.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:09 smithi191 ceph-mon[33187]: osdmap e8: 1 total, 1 up, 1 in 2024-09-17T01:24:09.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:09 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:09.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:09 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:09.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:09 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:09.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:09 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:24:09.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:09 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:09.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:09 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:09.381 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:09 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:09.381 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:09 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:09.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:09 smithi160 ceph-mon[32760]: purged_snaps scrub starts 2024-09-17T01:24:09.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:09 smithi160 ceph-mon[32760]: purged_snaps scrub ok 2024-09-17T01:24:09.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:09 smithi160 ceph-mon[32760]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T01:24:09.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:09 smithi160 ceph-mon[32760]: osd.0 [v2:172.21.15.47:6802/2408489733,v1:172.21.15.47:6803/2408489733] boot 2024-09-17T01:24:09.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:09 smithi160 ceph-mon[32760]: osdmap e8: 1 total, 1 up, 1 in 2024-09-17T01:24:09.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T01:24:09.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:09.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:09.385 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:24:09.385 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:09.385 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:09.385 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:09.385 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:10.213 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:24:10.241 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi047:vg_nvme/lv_3 2024-09-17T01:24:10.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:10 smithi191 ceph-mon[33187]: Detected new or changed devices on smithi047 2024-09-17T01:24:10.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:10 smithi191 ceph-mon[33187]: Adjusting osd_memory_target on smithi047 to 17092M 2024-09-17T01:24:10.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:10 smithi160 ceph-mon[32760]: Detected new or changed devices on smithi047 2024-09-17T01:24:10.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:10 smithi160 ceph-mon[32760]: Adjusting osd_memory_target on smithi047 to 17092M 2024-09-17T01:24:10.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:10 smithi047 ceph-mon[29638]: Detected new or changed devices on smithi047 2024-09-17T01:24:10.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:10 smithi047 ceph-mon[29638]: Adjusting osd_memory_target on smithi047 to 17092M 2024-09-17T01:24:10.496 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:24:11.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:11 smithi191 ceph-mon[33187]: pgmap v41: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:11.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:11 smithi191 ceph-mon[33187]: osdmap e9: 1 total, 1 up, 1 in 2024-09-17T01:24:11.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:11 smithi160 ceph-mon[32760]: pgmap v41: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:11.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:11 smithi160 ceph-mon[32760]: osdmap e9: 1 total, 1 up, 1 in 2024-09-17T01:24:11.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:11 smithi047 ceph-mon[29638]: pgmap v41: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:11.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:11 smithi047 ceph-mon[29638]: osdmap e9: 1 total, 1 up, 1 in 2024-09-17T01:24:12.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:12 smithi047 ceph-mon[29638]: from='client.14250 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi047:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:24:12.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:12 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:24:12.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:12 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:24:12.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:12 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:12.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:12 smithi191 ceph-mon[33187]: from='client.14250 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi047:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:24:12.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:12 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:24:12.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:12 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:24:12.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:12 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:12.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:12 smithi160 ceph-mon[32760]: from='client.14250 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi047:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:24:12.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:12 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:24:12.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:12 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:24:12.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:12 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:13.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:13 smithi047 ceph-mon[29638]: pgmap v43: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:13.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:13 smithi191 ceph-mon[33187]: pgmap v43: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:13.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:13 smithi160 ceph-mon[32760]: pgmap v43: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:14.135 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:14 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/339863660' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "864db44e-8e06-4fe9-8098-b8855a22ab16"}]: dispatch 2024-09-17T01:24:14.135 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:14 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/339863660' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "864db44e-8e06-4fe9-8098-b8855a22ab16"}]': finished 2024-09-17T01:24:14.135 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:14 smithi047 ceph-mon[29638]: osdmap e10: 2 total, 1 up, 2 in 2024-09-17T01:24:14.136 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:14 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:14.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:14 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/339863660' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "864db44e-8e06-4fe9-8098-b8855a22ab16"}]: dispatch 2024-09-17T01:24:14.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:14 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/339863660' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "864db44e-8e06-4fe9-8098-b8855a22ab16"}]': finished 2024-09-17T01:24:14.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:14 smithi191 ceph-mon[33187]: osdmap e10: 2 total, 1 up, 2 in 2024-09-17T01:24:14.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:14 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:14.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:14 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/339863660' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "864db44e-8e06-4fe9-8098-b8855a22ab16"}]: dispatch 2024-09-17T01:24:14.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:14 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/339863660' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "864db44e-8e06-4fe9-8098-b8855a22ab16"}]': finished 2024-09-17T01:24:14.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:14 smithi160 ceph-mon[32760]: osdmap e10: 2 total, 1 up, 2 in 2024-09-17T01:24:14.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:14 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:15.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:15 smithi191 ceph-mon[33187]: pgmap v45: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:15.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:15 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/959749113' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:24:15.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:15 smithi160 ceph-mon[32760]: pgmap v45: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:15.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:15 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/959749113' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:24:15.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:15 smithi047 ceph-mon[29638]: pgmap v45: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:15.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:15 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/959749113' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:24:17.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:17 smithi191 ceph-mon[33187]: pgmap v46: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:17.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:17 smithi160 ceph-mon[32760]: pgmap v46: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:17.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:17 smithi047 ceph-mon[29638]: pgmap v46: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:19.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:19 smithi047 ceph-mon[29638]: pgmap v47: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:19.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:19 smithi191 ceph-mon[33187]: pgmap v47: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:19.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:19 smithi160 ceph-mon[32760]: pgmap v47: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:21.343 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:21 smithi047 ceph-mon[29638]: pgmap v48: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:21.343 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:21 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T01:24:21.343 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:21 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:21.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:21 smithi191 ceph-mon[33187]: pgmap v48: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:21.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:21 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T01:24:21.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:21 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:21.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:21 smithi160 ceph-mon[32760]: pgmap v48: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:21.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:21 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T01:24:21.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:21 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:22.322 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:22 smithi047 ceph-mon[29638]: Deploying daemon osd.1 on smithi047 2024-09-17T01:24:22.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:22 smithi191 ceph-mon[33187]: Deploying daemon osd.1 on smithi047 2024-09-17T01:24:22.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:22 smithi160 ceph-mon[32760]: Deploying daemon osd.1 on smithi047 2024-09-17T01:24:23.270 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:23 smithi047 ceph-mon[29638]: pgmap v49: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:23.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:23 smithi191 ceph-mon[33187]: pgmap v49: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:23.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:23 smithi160 ceph-mon[32760]: pgmap v49: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:25.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:25 smithi191 ceph-mon[33187]: pgmap v50: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:25.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:25 smithi160 ceph-mon[32760]: pgmap v50: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:25.421 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:25 smithi047 ceph-mon[29638]: pgmap v50: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:27.340 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:27 smithi047 ceph-mon[29638]: pgmap v51: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:27.340 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:27 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:27.340 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:27 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:27.340 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:27 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:27.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:27 smithi191 ceph-mon[33187]: pgmap v51: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:27.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:27 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:27.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:27 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:27.380 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:27 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:27.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:27 smithi160 ceph-mon[32760]: pgmap v51: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:27.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:27 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:27.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:27 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:27.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:27 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:29.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:29 smithi047 ceph-mon[29638]: pgmap v52: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:29.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:29 smithi191 ceph-mon[33187]: pgmap v52: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:29.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:29 smithi160 ceph-mon[32760]: pgmap v52: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:30.796 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:30 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:30.796 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:30 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:30.796 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:30 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:30.796 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:30 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:30.796 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:30 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:30.838 INFO:teuthology.orchestra.run.smithi047.stdout:Created osd(s) 1 on host 'smithi047' 2024-09-17T01:24:30.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:30 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:30.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:30 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:30.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:30 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:30.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:30 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:30.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:30 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:30.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:30 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:30.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:30 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:30.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:30 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:30.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:30 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:30.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:30 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:31.458 DEBUG:teuthology.orchestra.run.smithi047:osd.1> sudo journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.1.service 2024-09-17T01:24:31.461 INFO:tasks.cephadm:Deploying osd.2 on smithi160 with /dev/vg_nvme/lv_4... 2024-09-17T01:24:31.461 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-17T01:24:31.683 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:31 smithi047 ceph-mon[29638]: pgmap v53: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:31.684 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:31.684 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:31.684 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:31 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:31.712 INFO:teuthology.orchestra.run.smithi160.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.b/config 2024-09-17T01:24:31.833 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:31 smithi160 ceph-mon[32760]: pgmap v53: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:31.833 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:31.833 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:31.833 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:31 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:31.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:31 smithi191 ceph-mon[33187]: pgmap v53: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:31.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:31.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:31.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:31 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:31.994 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:24:31 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1[48387]: 2024-09-17T01:24:31.716+0000 7feb13fbb640 -1 osd.1 0 log_to_monitors true 2024-09-17T01:24:32.738 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:32 smithi160 ceph-mon[32760]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T01:24:32.836 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:32 smithi047 ceph-mon[29638]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T01:24:32.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:32 smithi191 ceph-mon[33187]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T01:24:33.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:33 smithi160 ceph-mon[32760]: pgmap v54: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:33.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:33 smithi160 ceph-mon[32760]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T01:24:33.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:33 smithi160 ceph-mon[32760]: osdmap e11: 2 total, 1 up, 2 in 2024-09-17T01:24:33.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:33 smithi160 ceph-mon[32760]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]: dispatch 2024-09-17T01:24:33.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:33 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:33.744 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:33 smithi047 ceph-mon[29638]: pgmap v54: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:33.744 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:33 smithi047 ceph-mon[29638]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T01:24:33.744 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:33 smithi047 ceph-mon[29638]: osdmap e11: 2 total, 1 up, 2 in 2024-09-17T01:24:33.745 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:33 smithi047 ceph-mon[29638]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]: dispatch 2024-09-17T01:24:33.745 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:33 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:33 smithi191 ceph-mon[33187]: pgmap v54: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:33 smithi191 ceph-mon[33187]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T01:24:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:33 smithi191 ceph-mon[33187]: osdmap e11: 2 total, 1 up, 2 in 2024-09-17T01:24:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:33 smithi191 ceph-mon[33187]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]: dispatch 2024-09-17T01:24:33.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:33 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:33.914 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:24:33.940 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi160:vg_nvme/lv_4 2024-09-17T01:24:34.078 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:24:33 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1[48387]: 2024-09-17T01:24:33.744+0000 7feb0ff3e640 -1 osd.1 0 waiting for initial osdmap 2024-09-17T01:24:34.078 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:24:33 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1[48387]: 2024-09-17T01:24:33.747+0000 7feb07d5e640 -1 osd.1 12 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-17T01:24:34.182 INFO:teuthology.orchestra.run.smithi160.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.b/config 2024-09-17T01:24:34.572 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:34 smithi160 ceph-mon[32760]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]': finished 2024-09-17T01:24:34.572 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:34 smithi160 ceph-mon[32760]: osdmap e12: 2 total, 1 up, 2 in 2024-09-17T01:24:34.573 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:34 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:34.573 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:34 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:34.573 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:34 smithi160 ceph-mon[32760]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' 2024-09-17T01:24:34.573 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:34 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:34.573 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:34 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:34.573 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:34 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:24:34.573 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:34 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:24:34.573 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:34 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:34.573 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:34 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:34.573 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:34 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:34.573 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:34 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:34.573 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:34 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:34.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:34 smithi047 ceph-mon[29638]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]': finished 2024-09-17T01:24:34.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:34 smithi047 ceph-mon[29638]: osdmap e12: 2 total, 1 up, 2 in 2024-09-17T01:24:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:34 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:34 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:34 smithi047 ceph-mon[29638]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' 2024-09-17T01:24:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:34 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:34 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:34 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:24:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:34 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:24:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:34 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:34 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:34 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:34 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:34.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:34 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:34 smithi191 ceph-mon[33187]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi047", "root=default"]}]': finished 2024-09-17T01:24:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:34 smithi191 ceph-mon[33187]: osdmap e12: 2 total, 1 up, 2 in 2024-09-17T01:24:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:34 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:34 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:34 smithi191 ceph-mon[33187]: from='osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839]' entity='osd.1' 2024-09-17T01:24:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:34 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:34 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:34 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:24:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:34 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:24:34.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:34 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:34.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:34 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:34.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:34 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:34.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:34 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:34.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:34 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:35.558 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:35 smithi160 ceph-mon[32760]: purged_snaps scrub starts 2024-09-17T01:24:35.559 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:35 smithi160 ceph-mon[32760]: purged_snaps scrub ok 2024-09-17T01:24:35.559 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:35 smithi160 ceph-mon[32760]: pgmap v57: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:35.559 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:35 smithi160 ceph-mon[32760]: Detected new or changed devices on smithi047 2024-09-17T01:24:35.559 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:35 smithi160 ceph-mon[32760]: Adjusting osd_memory_target on smithi047 to 8546M 2024-09-17T01:24:35.559 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:35 smithi160 ceph-mon[32760]: osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839] boot 2024-09-17T01:24:35.559 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:35 smithi160 ceph-mon[32760]: osdmap e13: 2 total, 2 up, 2 in 2024-09-17T01:24:35.559 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:35 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:35.559 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:35 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:24:35.559 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:35 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:24:35.559 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:35 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:35.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:35 smithi191 ceph-mon[33187]: purged_snaps scrub starts 2024-09-17T01:24:35.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:35 smithi191 ceph-mon[33187]: purged_snaps scrub ok 2024-09-17T01:24:35.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:35 smithi191 ceph-mon[33187]: pgmap v57: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:35.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:35 smithi191 ceph-mon[33187]: Detected new or changed devices on smithi047 2024-09-17T01:24:35.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:35 smithi191 ceph-mon[33187]: Adjusting osd_memory_target on smithi047 to 8546M 2024-09-17T01:24:35.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:35 smithi191 ceph-mon[33187]: osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839] boot 2024-09-17T01:24:35.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:35 smithi191 ceph-mon[33187]: osdmap e13: 2 total, 2 up, 2 in 2024-09-17T01:24:35.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:35 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:35.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:35 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:24:35.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:35 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:24:35.882 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:35 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:35.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:35 smithi047 ceph-mon[29638]: purged_snaps scrub starts 2024-09-17T01:24:35.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:35 smithi047 ceph-mon[29638]: purged_snaps scrub ok 2024-09-17T01:24:35.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:35 smithi047 ceph-mon[29638]: pgmap v57: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-17T01:24:35.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:35 smithi047 ceph-mon[29638]: Detected new or changed devices on smithi047 2024-09-17T01:24:35.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:35 smithi047 ceph-mon[29638]: Adjusting osd_memory_target on smithi047 to 8546M 2024-09-17T01:24:35.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:35 smithi047 ceph-mon[29638]: osd.1 [v2:172.21.15.47:6810/3672119839,v1:172.21.15.47:6811/3672119839] boot 2024-09-17T01:24:35.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:35 smithi047 ceph-mon[29638]: osdmap e13: 2 total, 2 up, 2 in 2024-09-17T01:24:35.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:35 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T01:24:35.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:35 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:24:35.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:35 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:24:35.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:35 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:36.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:36 smithi160 ceph-mon[32760]: from='client.24149 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi160:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:24:36.759 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:36 smithi160 ceph-mon[32760]: osdmap e14: 2 total, 2 up, 2 in 2024-09-17T01:24:36.824 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:36 smithi047 ceph-mon[29638]: from='client.24149 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi160:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:24:36.824 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:36 smithi047 ceph-mon[29638]: osdmap e14: 2 total, 2 up, 2 in 2024-09-17T01:24:36.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:36 smithi191 ceph-mon[33187]: from='client.24149 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi160:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:24:36.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:36 smithi191 ceph-mon[33187]: osdmap e14: 2 total, 2 up, 2 in 2024-09-17T01:24:37.609 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:37 smithi160 ceph-mon[32760]: pgmap v59: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:37.609 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:37 smithi160 ceph-mon[32760]: from='client.? 172.21.15.160:0/4092251981' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e3d1385b-b106-4cf7-b5d7-4df422c055c5"}]: dispatch 2024-09-17T01:24:37.609 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:37 smithi160 ceph-mon[32760]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e3d1385b-b106-4cf7-b5d7-4df422c055c5"}]: dispatch 2024-09-17T01:24:37.610 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:37 smithi160 ceph-mon[32760]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e3d1385b-b106-4cf7-b5d7-4df422c055c5"}]': finished 2024-09-17T01:24:37.610 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:37 smithi160 ceph-mon[32760]: osdmap e15: 3 total, 2 up, 3 in 2024-09-17T01:24:37.610 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:37 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:37.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:37 smithi191 ceph-mon[33187]: pgmap v59: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:37.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:37 smithi191 ceph-mon[33187]: from='client.? 172.21.15.160:0/4092251981' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e3d1385b-b106-4cf7-b5d7-4df422c055c5"}]: dispatch 2024-09-17T01:24:37.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:37 smithi191 ceph-mon[33187]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e3d1385b-b106-4cf7-b5d7-4df422c055c5"}]: dispatch 2024-09-17T01:24:37.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:37 smithi191 ceph-mon[33187]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e3d1385b-b106-4cf7-b5d7-4df422c055c5"}]': finished 2024-09-17T01:24:37.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:37 smithi191 ceph-mon[33187]: osdmap e15: 3 total, 2 up, 3 in 2024-09-17T01:24:37.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:37 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:37.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:37 smithi047 ceph-mon[29638]: pgmap v59: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:37.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:37 smithi047 ceph-mon[29638]: from='client.? 172.21.15.160:0/4092251981' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e3d1385b-b106-4cf7-b5d7-4df422c055c5"}]: dispatch 2024-09-17T01:24:37.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:37 smithi047 ceph-mon[29638]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e3d1385b-b106-4cf7-b5d7-4df422c055c5"}]: dispatch 2024-09-17T01:24:37.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:37 smithi047 ceph-mon[29638]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e3d1385b-b106-4cf7-b5d7-4df422c055c5"}]': finished 2024-09-17T01:24:37.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:37 smithi047 ceph-mon[29638]: osdmap e15: 3 total, 2 up, 3 in 2024-09-17T01:24:37.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:37 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:38.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:38 smithi191 ceph-mon[33187]: from='client.? 172.21.15.160:0/2191387177' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:24:38.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:38 smithi160 ceph-mon[32760]: from='client.? 172.21.15.160:0/2191387177' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:24:38.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:38 smithi047 ceph-mon[29638]: from='client.? 172.21.15.160:0/2191387177' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:24:39.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:39 smithi191 ceph-mon[33187]: pgmap v62: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:39.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:39 smithi160 ceph-mon[32760]: pgmap v62: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:39.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:39 smithi047 ceph-mon[29638]: pgmap v62: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:41.778 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:41 smithi160 ceph-mon[32760]: pgmap v63: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:41.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:41 smithi191 ceph-mon[33187]: pgmap v63: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:41.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:41 smithi047 ceph-mon[29638]: pgmap v63: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:43.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:43 smithi191 ceph-mon[33187]: pgmap v64: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:43.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:43 smithi160 ceph-mon[32760]: pgmap v64: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:43.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:43 smithi047 ceph-mon[29638]: pgmap v64: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:44.809 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:44 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T01:24:44.810 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:44 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:44.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:44 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T01:24:44.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:44 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:44.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:44 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T01:24:44.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:44 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:45.858 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:45 smithi160 ceph-mon[32760]: pgmap v65: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:45.858 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:45 smithi160 ceph-mon[32760]: Deploying daemon osd.2 on smithi160 2024-09-17T01:24:45.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:45 smithi191 ceph-mon[33187]: pgmap v65: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:45.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:45 smithi191 ceph-mon[33187]: Deploying daemon osd.2 on smithi160 2024-09-17T01:24:45.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:45 smithi047 ceph-mon[29638]: pgmap v65: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:45.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:45 smithi047 ceph-mon[29638]: Deploying daemon osd.2 on smithi160 2024-09-17T01:24:47.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:47 smithi191 ceph-mon[33187]: pgmap v66: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:47.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:47 smithi160 ceph-mon[32760]: pgmap v66: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:47.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:47 smithi047 ceph-mon[29638]: pgmap v66: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:49.769 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:49 smithi160 ceph-mon[32760]: pgmap v67: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:49.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:49 smithi191 ceph-mon[33187]: pgmap v67: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:49.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:49 smithi047 ceph-mon[29638]: pgmap v67: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:50.772 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:50 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:50.772 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:50 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:50.772 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:50 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:50.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:50 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:50.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:50 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:50.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:50 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:50.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:50 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:50.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:50 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:50.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:50 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:51.688 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:51 smithi160 ceph-mon[32760]: pgmap v68: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:51.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:51 smithi191 ceph-mon[33187]: pgmap v68: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:51.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:51 smithi047 ceph-mon[29638]: pgmap v68: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:53.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:53 smithi160 ceph-mon[32760]: pgmap v69: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:53.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:53 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:53.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:53 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:53.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:53 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:53.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:53 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:53.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:53 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:53.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:53 smithi191 ceph-mon[33187]: pgmap v69: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:53.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:53 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:53.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:53 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:53.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:53 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:53.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:53 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:53.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:53 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:53.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:53 smithi047 ceph-mon[29638]: pgmap v69: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:53.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:53 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:53.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:53 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:53.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:53 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:53.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:53 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:53.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:53 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:54.001 INFO:teuthology.orchestra.run.smithi160.stdout:Created osd(s) 2 on host 'smithi160' 2024-09-17T01:24:54.616 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:54 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:54.616 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:54 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:54.616 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:54 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:54.642 DEBUG:teuthology.orchestra.run.smithi160:osd.2> sudo journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.2.service 2024-09-17T01:24:54.645 INFO:tasks.cephadm:Deploying osd.3 on smithi160 with /dev/vg_nvme/lv_3... 2024-09-17T01:24:54.645 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-17T01:24:54.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:54 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:54.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:54 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:54.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:54 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:54.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:54 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:24:54.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:54 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:54.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:54 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:55.534 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:24:55 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2[36924]: 2024-09-17T01:24:55.332+0000 7f0cec584640 -1 osd.2 0 log_to_monitors true 2024-09-17T01:24:55.849 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:55 smithi160 ceph-mon[32760]: pgmap v70: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:55.849 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:55 smithi160 ceph-mon[32760]: from='osd.2 [v2:172.21.15.160:6800/3485587574,v1:172.21.15.160:6801/3485587574]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T01:24:55.849 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:55 smithi160 ceph-mon[32760]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T01:24:55.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:55 smithi191 ceph-mon[33187]: pgmap v70: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:55.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:55 smithi191 ceph-mon[33187]: from='osd.2 [v2:172.21.15.160:6800/3485587574,v1:172.21.15.160:6801/3485587574]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T01:24:55.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:55 smithi191 ceph-mon[33187]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T01:24:55.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:55 smithi047 ceph-mon[29638]: pgmap v70: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:55.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:55 smithi047 ceph-mon[29638]: from='osd.2 [v2:172.21.15.160:6800/3485587574,v1:172.21.15.160:6801/3485587574]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T01:24:55.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:55 smithi047 ceph-mon[29638]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T01:24:55.934 INFO:teuthology.orchestra.run.smithi160.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.b/config 2024-09-17T01:24:56.859 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:56 smithi160 ceph-mon[32760]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T01:24:56.860 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:56 smithi160 ceph-mon[32760]: osdmap e16: 3 total, 2 up, 3 in 2024-09-17T01:24:56.860 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:56 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:56.860 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:56 smithi160 ceph-mon[32760]: from='osd.2 [v2:172.21.15.160:6800/3485587574,v1:172.21.15.160:6801/3485587574]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-17T01:24:56.860 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:56 smithi160 ceph-mon[32760]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-17T01:24:56.860 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:24:56 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2[36924]: 2024-09-17T01:24:56.546+0000 7f0ce8507640 -1 osd.2 0 waiting for initial osdmap 2024-09-17T01:24:56.860 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:24:56 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2[36924]: 2024-09-17T01:24:56.549+0000 7f0ce432f640 -1 osd.2 17 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-17T01:24:56.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:56 smithi191 ceph-mon[33187]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T01:24:56.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:56 smithi191 ceph-mon[33187]: osdmap e16: 3 total, 2 up, 3 in 2024-09-17T01:24:56.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:56 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:56.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:56 smithi191 ceph-mon[33187]: from='osd.2 [v2:172.21.15.160:6800/3485587574,v1:172.21.15.160:6801/3485587574]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-17T01:24:56.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:56 smithi191 ceph-mon[33187]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-17T01:24:56.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:56 smithi047 ceph-mon[29638]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T01:24:56.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:56 smithi047 ceph-mon[29638]: osdmap e16: 3 total, 2 up, 3 in 2024-09-17T01:24:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:56 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:56 smithi047 ceph-mon[29638]: from='osd.2 [v2:172.21.15.160:6800/3485587574,v1:172.21.15.160:6801/3485587574]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-17T01:24:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:56 smithi047 ceph-mon[29638]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-17T01:24:57.853 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:57 smithi160 ceph-mon[32760]: pgmap v72: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:57.853 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:57 smithi160 ceph-mon[32760]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-09-17T01:24:57.853 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:57 smithi160 ceph-mon[32760]: osdmap e17: 3 total, 2 up, 3 in 2024-09-17T01:24:57.853 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:57 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:57.853 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:57 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:57.853 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:57 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:57.853 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:57 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:57.853 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:57 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:24:57.854 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:57 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:57.854 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:57 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:57.854 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:57 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:57.854 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:57 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:57.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:57 smithi191 ceph-mon[33187]: pgmap v72: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:57.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:57 smithi191 ceph-mon[33187]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-09-17T01:24:57.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:57 smithi191 ceph-mon[33187]: osdmap e17: 3 total, 2 up, 3 in 2024-09-17T01:24:57.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:57 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:57.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:57 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:57.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:57 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:57.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:57 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:57.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:57 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:24:57.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:57 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:57.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:57 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:57.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:57 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:57.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:57 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:57.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:57 smithi047 ceph-mon[29638]: pgmap v72: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:57.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:57 smithi047 ceph-mon[29638]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-09-17T01:24:57.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:57 smithi047 ceph-mon[29638]: osdmap e17: 3 total, 2 up, 3 in 2024-09-17T01:24:57.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:57.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:57.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:57.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:57.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:24:57.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:57.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:24:57.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:24:57.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:24:58.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:58 smithi191 ceph-mon[33187]: purged_snaps scrub starts 2024-09-17T01:24:58.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:58 smithi191 ceph-mon[33187]: purged_snaps scrub ok 2024-09-17T01:24:58.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:58 smithi191 ceph-mon[33187]: Detected new or changed devices on smithi160 2024-09-17T01:24:58.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:58 smithi191 ceph-mon[33187]: Adjusting osd_memory_target on smithi160 to 17088M 2024-09-17T01:24:58.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:58 smithi191 ceph-mon[33187]: osd.2 [v2:172.21.15.160:6800/3485587574,v1:172.21.15.160:6801/3485587574] boot 2024-09-17T01:24:58.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:58 smithi191 ceph-mon[33187]: osdmap e18: 3 total, 3 up, 3 in 2024-09-17T01:24:58.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:58 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:58.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:58 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T01:24:58.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:58 smithi160 ceph-mon[32760]: purged_snaps scrub starts 2024-09-17T01:24:58.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:58 smithi160 ceph-mon[32760]: purged_snaps scrub ok 2024-09-17T01:24:58.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:58 smithi160 ceph-mon[32760]: Detected new or changed devices on smithi160 2024-09-17T01:24:58.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:58 smithi160 ceph-mon[32760]: Adjusting osd_memory_target on smithi160 to 17088M 2024-09-17T01:24:58.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:58 smithi160 ceph-mon[32760]: osd.2 [v2:172.21.15.160:6800/3485587574,v1:172.21.15.160:6801/3485587574] boot 2024-09-17T01:24:58.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:58 smithi160 ceph-mon[32760]: osdmap e18: 3 total, 3 up, 3 in 2024-09-17T01:24:58.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:58 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:58.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:58 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T01:24:58.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:58 smithi047 ceph-mon[29638]: purged_snaps scrub starts 2024-09-17T01:24:58.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:58 smithi047 ceph-mon[29638]: purged_snaps scrub ok 2024-09-17T01:24:58.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:58 smithi047 ceph-mon[29638]: Detected new or changed devices on smithi160 2024-09-17T01:24:58.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:58 smithi047 ceph-mon[29638]: Adjusting osd_memory_target on smithi160 to 17088M 2024-09-17T01:24:58.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:58 smithi047 ceph-mon[29638]: osd.2 [v2:172.21.15.160:6800/3485587574,v1:172.21.15.160:6801/3485587574] boot 2024-09-17T01:24:58.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:58 smithi047 ceph-mon[29638]: osdmap e18: 3 total, 3 up, 3 in 2024-09-17T01:24:58.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:58 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T01:24:58.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:58 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T01:24:59.145 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-09-17T01:24:59.171 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi160:vg_nvme/lv_3 2024-09-17T01:24:59.414 INFO:teuthology.orchestra.run.smithi160.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.b/config 2024-09-17T01:24:59.845 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:59 smithi160 ceph-mon[32760]: pgmap v75: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:59.846 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:59 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-17T01:24:59.846 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:59 smithi160 ceph-mon[32760]: osdmap e19: 3 total, 3 up, 3 in 2024-09-17T01:24:59.846 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:24:59 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T01:24:59.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:59 smithi191 ceph-mon[33187]: pgmap v75: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:59.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:59 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-17T01:24:59.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:59 smithi191 ceph-mon[33187]: osdmap e19: 3 total, 3 up, 3 in 2024-09-17T01:24:59.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:24:59 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T01:24:59.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:59 smithi047 ceph-mon[29638]: pgmap v75: 0 pgs: ; 0 B data, 61 MiB used, 179 GiB / 179 GiB avail 2024-09-17T01:24:59.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:59 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-17T01:24:59.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:59 smithi047 ceph-mon[29638]: osdmap e19: 3 total, 3 up, 3 in 2024-09-17T01:24:59.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:24:59 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T01:25:00.673 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:25:00 smithi047 sudo[52202]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T01:25:00.673 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:25:00 smithi047 sudo[52202]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T01:25:00.673 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:25:00 smithi047 sudo[52202]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T01:25:00.673 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:25:00 smithi047 sudo[52202]: pam_unix(sudo:session): session closed for user root 2024-09-17T01:25:00.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:00 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T01:25:00.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:00 smithi047 ceph-mon[29638]: osdmap e20: 3 total, 3 up, 3 in 2024-09-17T01:25:00.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:00 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:25:00.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:00 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:25:00.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:00 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:00.773 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:00 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T01:25:00.773 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:00 smithi160 ceph-mon[32760]: osdmap e20: 3 total, 3 up, 3 in 2024-09-17T01:25:00.773 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:00 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:25:00.773 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:00 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:25:00.773 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:00 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:00.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:00 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T01:25:00.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:00 smithi191 ceph-mon[33187]: osdmap e20: 3 total, 3 up, 3 in 2024-09-17T01:25:00.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:00 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:25:00.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:00 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:25:00.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:00 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:01.173 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:25:00 smithi047 sudo[52205]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T01:25:01.173 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:25:00 smithi047 sudo[52205]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T01:25:01.173 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:25:00 smithi047 sudo[52205]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T01:25:01.173 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:25:00 smithi047 sudo[52205]: pam_unix(sudo:session): session closed for user root 2024-09-17T01:25:01.563 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:25:01 smithi047 sudo[52208]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T01:25:01.563 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:25:01 smithi047 sudo[52208]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T01:25:01.563 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:25:01 smithi047 sudo[52208]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T01:25:01.563 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:25:01 smithi047 sudo[52208]: pam_unix(sudo:session): session closed for user root 2024-09-17T01:25:01.672 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:01 smithi160 ceph-mon[32760]: pgmap v78: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:01.672 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:01 smithi160 ceph-mon[32760]: from='client.24176 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi160:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:25:01.672 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:01 smithi160 ceph-mon[32760]: osdmap e21: 3 total, 3 up, 3 in 2024-09-17T01:25:01.672 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:01 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:01.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:01 smithi191 ceph-mon[33187]: pgmap v78: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:01.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:01 smithi191 ceph-mon[33187]: from='client.24176 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi160:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:25:01.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:01 smithi191 ceph-mon[33187]: osdmap e21: 3 total, 3 up, 3 in 2024-09-17T01:25:01.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:01 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:01.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:01 smithi047 ceph-mon[29638]: pgmap v78: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:01.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:01 smithi047 ceph-mon[29638]: from='client.24176 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi160:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:25:01.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:01 smithi047 ceph-mon[29638]: osdmap e21: 3 total, 3 up, 3 in 2024-09-17T01:25:01.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:01 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:01.924 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:25:01 smithi047 sudo[52211]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T01:25:01.924 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:25:01 smithi047 sudo[52211]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T01:25:01.924 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:25:01 smithi047 sudo[52211]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T01:25:01.924 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:25:01 smithi047 sudo[52211]: pam_unix(sudo:session): session closed for user root 2024-09-17T01:25:02.282 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:25:02 smithi160 sudo[40663]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T01:25:02.282 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:25:02 smithi160 sudo[40663]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T01:25:02.282 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:25:02 smithi160 sudo[40663]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T01:25:02.282 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:25:02 smithi160 sudo[40663]: pam_unix(sudo:session): session closed for user root 2024-09-17T01:25:02.634 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:25:02 smithi160 sudo[40698]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T01:25:02.634 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:25:02 smithi160 sudo[40698]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T01:25:02.634 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:25:02 smithi160 sudo[40698]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T01:25:02.634 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:25:02 smithi160 sudo[40698]: pam_unix(sudo:session): session closed for user root 2024-09-17T01:25:03.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:02 smithi047 sudo[52214]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T01:25:03.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:02 smithi047 sudo[52214]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T01:25:03.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:02 smithi047 sudo[52214]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T01:25:03.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:02 smithi047 sudo[52214]: pam_unix(sudo:session): session closed for user root 2024-09-17T01:25:03.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 sudo[52217]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T01:25:03.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 sudo[52217]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T01:25:03.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 sudo[52217]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T01:25:03.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 sudo[52217]: pam_unix(sudo:session): session closed for user root 2024-09-17T01:25:03.713 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 sudo[35111]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T01:25:03.714 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 sudo[35111]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T01:25:03.714 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 sudo[35111]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T01:25:03.714 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 sudo[35111]: pam_unix(sudo:session): session closed for user root 2024-09-17T01:25:03.989 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 ceph-mon[32760]: pgmap v80: 1 pgs: 1 unknown; 0 B data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:03.989 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:03.989 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 ceph-mon[32760]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T01:25:03.989 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 ceph-mon[32760]: from='client.? 172.21.15.160:0/3725087660' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "19ef820b-02cc-41a7-a201-d5063d7e9274"}]: dispatch 2024-09-17T01:25:03.989 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 ceph-mon[32760]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T01:25:03.989 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:25:03.989 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 ceph-mon[32760]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "19ef820b-02cc-41a7-a201-d5063d7e9274"}]: dispatch 2024-09-17T01:25:03.989 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:25:03.990 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:25:03.990 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 ceph-mon[32760]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-17T01:25:03.990 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:25:03.990 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:25:03.990 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:25:04.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 sudo[35114]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T01:25:04.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 sudo[35114]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T01:25:04.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 sudo[35114]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T01:25:04.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 sudo[35114]: pam_unix(sudo:session): session closed for user root 2024-09-17T01:25:04.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 ceph-mon[33187]: pgmap v80: 1 pgs: 1 unknown; 0 B data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:04.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:04.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 ceph-mon[33187]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T01:25:04.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 ceph-mon[33187]: from='client.? 172.21.15.160:0/3725087660' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "19ef820b-02cc-41a7-a201-d5063d7e9274"}]: dispatch 2024-09-17T01:25:04.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 ceph-mon[33187]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T01:25:04.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:25:04.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 ceph-mon[33187]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "19ef820b-02cc-41a7-a201-d5063d7e9274"}]: dispatch 2024-09-17T01:25:04.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:25:04.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:25:04.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 ceph-mon[33187]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-17T01:25:04.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:25:04.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:25:04.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:03 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:25:04.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 ceph-mon[29638]: pgmap v80: 1 pgs: 1 unknown; 0 B data, 89 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:04.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:04.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 ceph-mon[29638]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T01:25:04.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 ceph-mon[29638]: from='client.? 172.21.15.160:0/3725087660' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "19ef820b-02cc-41a7-a201-d5063d7e9274"}]: dispatch 2024-09-17T01:25:04.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 ceph-mon[29638]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T01:25:04.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:25:04.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 ceph-mon[29638]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "19ef820b-02cc-41a7-a201-d5063d7e9274"}]: dispatch 2024-09-17T01:25:04.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:25:04.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:25:04.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 ceph-mon[29638]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-17T01:25:04.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:25:04.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:25:04.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:03 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:25:04.245 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 sudo[40713]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T01:25:04.245 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 sudo[40713]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T01:25:04.245 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:03 smithi160 sudo[40713]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T01:25:04.245 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 sudo[40713]: pam_unix(sudo:session): session closed for user root 2024-09-17T01:25:04.504 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 sudo[40733]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T01:25:04.505 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 sudo[40733]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T01:25:04.505 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 sudo[40733]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T01:25:04.505 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 sudo[40733]: pam_unix(sudo:session): session closed for user root 2024-09-17T01:25:04.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 ceph-mon[32760]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T01:25:04.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 ceph-mon[32760]: pgmap v81: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:04.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 ceph-mon[32760]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T01:25:04.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 ceph-mon[32760]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "19ef820b-02cc-41a7-a201-d5063d7e9274"}]': finished 2024-09-17T01:25:04.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 ceph-mon[32760]: osdmap e22: 4 total, 3 up, 4 in 2024-09-17T01:25:04.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:04.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:04.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 ceph-mon[32760]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T01:25:04.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:25:04.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:25:04.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:25:04.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 ceph-mon[32760]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T01:25:04.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:04 smithi160 ceph-mon[32760]: from='client.? 172.21.15.160:0/1376263377' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:25:05.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:04 smithi191 ceph-mon[33187]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T01:25:05.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:04 smithi191 ceph-mon[33187]: pgmap v81: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:05.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:04 smithi191 ceph-mon[33187]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T01:25:05.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:04 smithi191 ceph-mon[33187]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "19ef820b-02cc-41a7-a201-d5063d7e9274"}]': finished 2024-09-17T01:25:05.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:04 smithi191 ceph-mon[33187]: osdmap e22: 4 total, 3 up, 4 in 2024-09-17T01:25:05.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:04 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:05.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:04 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:05.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:04 smithi191 ceph-mon[33187]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T01:25:05.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:04 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:25:05.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:04 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:25:05.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:04 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:25:05.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:04 smithi191 ceph-mon[33187]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T01:25:05.131 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:04 smithi191 ceph-mon[33187]: from='client.? 172.21.15.160:0/1376263377' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:25:05.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:04 smithi047 ceph-mon[29638]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T01:25:05.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:04 smithi047 ceph-mon[29638]: pgmap v81: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:05.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:04 smithi047 ceph-mon[29638]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T01:25:05.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:04 smithi047 ceph-mon[29638]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "19ef820b-02cc-41a7-a201-d5063d7e9274"}]': finished 2024-09-17T01:25:05.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:04 smithi047 ceph-mon[29638]: osdmap e22: 4 total, 3 up, 4 in 2024-09-17T01:25:05.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:04 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:05.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:04 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:05.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:04 smithi047 ceph-mon[29638]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T01:25:05.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:04 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:25:05.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:04 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:25:05.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:04 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-17T01:25:05.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:04 smithi047 ceph-mon[29638]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T01:25:05.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:04 smithi047 ceph-mon[29638]: from='client.? 172.21.15.160:0/1376263377' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:25:06.995 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:06 smithi047 ceph-mon[29638]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:07.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:06 smithi191 ceph-mon[33187]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:07.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:06 smithi160 ceph-mon[32760]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:09.062 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:08 smithi160 ceph-mon[32760]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:09.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:08 smithi191 ceph-mon[33187]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:09.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:08 smithi047 ceph-mon[29638]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:10.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:10 smithi160 ceph-mon[32760]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-17T01:25:11.133 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:10 smithi191 ceph-mon[33187]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-17T01:25:11.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:10 smithi047 ceph-mon[29638]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 3.0 KiB/s rd, 131 KiB/s wr, 9 op/s 2024-09-17T01:25:11.921 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:11 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T01:25:11.921 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:11 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:11.921 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:11 smithi160 ceph-mon[32760]: Deploying daemon osd.3 on smithi160 2024-09-17T01:25:12.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:11 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T01:25:12.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:11 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:12.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:11 smithi191 ceph-mon[33187]: Deploying daemon osd.3 on smithi160 2024-09-17T01:25:12.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:11 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T01:25:12.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:11 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:12.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:11 smithi047 ceph-mon[29638]: Deploying daemon osd.3 on smithi160 2024-09-17T01:25:12.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:12 smithi160 ceph-mon[32760]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-17T01:25:13.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:12 smithi191 ceph-mon[33187]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-17T01:25:13.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:12 smithi047 ceph-mon[29638]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 98 KiB/s wr, 6 op/s 2024-09-17T01:25:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:14 smithi160 ceph-mon[32760]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-17T01:25:15.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:14 smithi191 ceph-mon[33187]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-17T01:25:15.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:14 smithi047 ceph-mon[29638]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.8 KiB/s rd, 78 KiB/s wr, 5 op/s 2024-09-17T01:25:16.895 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:16 smithi160 ceph-mon[32760]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T01:25:17.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:16 smithi191 ceph-mon[33187]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T01:25:17.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:16 smithi047 ceph-mon[29638]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T01:25:18.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:17 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:25:18.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:17 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:18.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:17 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:18.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:17 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:25:18.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:17 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:18.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:17 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:18.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:17 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:25:18.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:17 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:18.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:17 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:19.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:19 smithi191 ceph-mon[33187]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T01:25:19.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:19 smithi160 ceph-mon[32760]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T01:25:19.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:19 smithi047 ceph-mon[29638]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T01:25:20.912 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:20 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:20.912 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:20 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:20.912 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:20 smithi160 ceph-mon[32760]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T01:25:20.912 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:20 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:20.912 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:20 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:25:20.912 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:20 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:20.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:20 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:20.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:20 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:20.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:20 smithi047 ceph-mon[29638]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T01:25:20.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:20 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:20.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:20 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:25:20.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:20 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:20.952 INFO:teuthology.orchestra.run.smithi160.stdout:Created osd(s) 3 on host 'smithi160' 2024-09-17T01:25:21.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:20 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:21.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:20 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:21.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:20 smithi191 ceph-mon[33187]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail; 1.5 KiB/s rd, 65 KiB/s wr, 4 op/s 2024-09-17T01:25:21.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:20 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:21.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:20 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:25:21.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:20 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:21.592 DEBUG:teuthology.orchestra.run.smithi160:osd.3> sudo journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.3.service 2024-09-17T01:25:21.595 INFO:tasks.cephadm:Deploying osd.4 on smithi191 with /dev/vg_nvme/lv_4... 2024-09-17T01:25:21.595 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-17T01:25:21.847 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T01:25:21.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:21 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:25:21.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:21 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:21.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:21 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:21.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:21 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:25:21.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:21 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:21.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:21 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:22.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:21 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:25:22.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:21 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:22.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:21 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:22.179 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:25:22 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3[42388]: 2024-09-17T01:25:22.064+0000 7fa32124a640 -1 osd.3 0 log_to_monitors true 2024-09-17T01:25:22.738 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:22 smithi160 ceph-mon[32760]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:22.738 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:22 smithi160 ceph-mon[32760]: from='osd.3 [v2:172.21.15.160:6808/773206061,v1:172.21.15.160:6809/773206061]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T01:25:22.738 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:22 smithi160 ceph-mon[32760]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T01:25:23.000 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:22 smithi191 ceph-mon[33187]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:23.000 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:22 smithi191 ceph-mon[33187]: from='osd.3 [v2:172.21.15.160:6808/773206061,v1:172.21.15.160:6809/773206061]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T01:25:23.000 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:22 smithi191 ceph-mon[33187]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T01:25:23.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:22 smithi047 ceph-mon[29638]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:23.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:22 smithi047 ceph-mon[29638]: from='osd.3 [v2:172.21.15.160:6808/773206061,v1:172.21.15.160:6809/773206061]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T01:25:23.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:22 smithi047 ceph-mon[29638]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T01:25:23.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:23 smithi191 ceph-mon[33187]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T01:25:23.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:23 smithi191 ceph-mon[33187]: osdmap e23: 4 total, 3 up, 4 in 2024-09-17T01:25:23.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:23 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:23.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:23 smithi191 ceph-mon[33187]: from='osd.3 [v2:172.21.15.160:6808/773206061,v1:172.21.15.160:6809/773206061]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-17T01:25:23.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:23 smithi191 ceph-mon[33187]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-17T01:25:24.119 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:25:23 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3[42388]: 2024-09-17T01:25:23.698+0000 7fa31d1cd640 -1 osd.3 0 waiting for initial osdmap 2024-09-17T01:25:24.120 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:25:23 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3[42388]: 2024-09-17T01:25:23.701+0000 7fa318ff5640 -1 osd.3 24 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-17T01:25:24.120 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:23 smithi160 ceph-mon[32760]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T01:25:24.120 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:23 smithi160 ceph-mon[32760]: osdmap e23: 4 total, 3 up, 4 in 2024-09-17T01:25:24.120 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:23 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:24.120 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:23 smithi160 ceph-mon[32760]: from='osd.3 [v2:172.21.15.160:6808/773206061,v1:172.21.15.160:6809/773206061]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-17T01:25:24.120 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:23 smithi160 ceph-mon[32760]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-17T01:25:24.147 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:25:24.172 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi191:vg_nvme/lv_4 2024-09-17T01:25:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:23 smithi047 ceph-mon[29638]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T01:25:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:23 smithi047 ceph-mon[29638]: osdmap e23: 4 total, 3 up, 4 in 2024-09-17T01:25:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:23 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:23 smithi047 ceph-mon[29638]: from='osd.3 [v2:172.21.15.160:6808/773206061,v1:172.21.15.160:6809/773206061]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-17T01:25:24.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:23 smithi047 ceph-mon[29638]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]: dispatch 2024-09-17T01:25:24.419 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T01:25:24.782 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-09-17T01:25:24.782 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: osdmap e24: 4 total, 3 up, 4 in 2024-09-17T01:25:24.782 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:24.782 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:24.782 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:24.782 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: Detected new or changed devices on smithi160 2024-09-17T01:25:24.782 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:24.782 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:24.782 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:25:24.782 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:25:24.782 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: Adjusting osd_memory_target on smithi160 to 8544M 2024-09-17T01:25:24.783 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:24.783 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:24.783 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:25:24.783 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:24 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:25.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-09-17T01:25:25.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: osdmap e24: 4 total, 3 up, 4 in 2024-09-17T01:25:25.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:25.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:25.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:25.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: Detected new or changed devices on smithi160 2024-09-17T01:25:25.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:25.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:25.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:25:25.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:25:25.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: Adjusting osd_memory_target on smithi160 to 8544M 2024-09-17T01:25:25.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:25.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:25.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:25:25.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:24 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:25.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi160", "root=default"]}]': finished 2024-09-17T01:25:25.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: osdmap e24: 4 total, 3 up, 4 in 2024-09-17T01:25:25.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:25.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:25.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T01:25:25.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: Detected new or changed devices on smithi160 2024-09-17T01:25:25.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:25.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:25.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:25:25.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:25:25.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: Adjusting osd_memory_target on smithi160 to 8544M 2024-09-17T01:25:25.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:25.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:25.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:25:25.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:24 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:26.035 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:25 smithi160 ceph-mon[32760]: purged_snaps scrub starts 2024-09-17T01:25:26.036 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:25 smithi160 ceph-mon[32760]: purged_snaps scrub ok 2024-09-17T01:25:26.036 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:25 smithi160 ceph-mon[32760]: osd.3 [v2:172.21.15.160:6808/773206061,v1:172.21.15.160:6809/773206061] boot 2024-09-17T01:25:26.036 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:25 smithi160 ceph-mon[32760]: osdmap e25: 4 total, 4 up, 4 in 2024-09-17T01:25:26.036 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:25 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:26.036 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:25 smithi160 ceph-mon[32760]: from='client.24181 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi191:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:25:26.036 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:25 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:25:26.036 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:25 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:25:26.036 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:25 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:26.036 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:25 smithi160 ceph-mon[32760]: osdmap e26: 4 total, 4 up, 4 in 2024-09-17T01:25:26.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:25 smithi191 ceph-mon[33187]: purged_snaps scrub starts 2024-09-17T01:25:26.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:25 smithi191 ceph-mon[33187]: purged_snaps scrub ok 2024-09-17T01:25:26.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:25 smithi191 ceph-mon[33187]: osd.3 [v2:172.21.15.160:6808/773206061,v1:172.21.15.160:6809/773206061] boot 2024-09-17T01:25:26.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:25 smithi191 ceph-mon[33187]: osdmap e25: 4 total, 4 up, 4 in 2024-09-17T01:25:26.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:25 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:26.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:25 smithi191 ceph-mon[33187]: from='client.24181 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi191:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:25:26.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:25 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:25:26.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:25 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:25:26.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:25 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:26.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:25 smithi191 ceph-mon[33187]: osdmap e26: 4 total, 4 up, 4 in 2024-09-17T01:25:26.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:25 smithi047 ceph-mon[29638]: purged_snaps scrub starts 2024-09-17T01:25:26.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:25 smithi047 ceph-mon[29638]: purged_snaps scrub ok 2024-09-17T01:25:26.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:25 smithi047 ceph-mon[29638]: osd.3 [v2:172.21.15.160:6808/773206061,v1:172.21.15.160:6809/773206061] boot 2024-09-17T01:25:26.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:25 smithi047 ceph-mon[29638]: osdmap e25: 4 total, 4 up, 4 in 2024-09-17T01:25:26.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:25 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T01:25:26.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:25 smithi047 ceph-mon[29638]: from='client.24181 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi191:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:25:26.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:25 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:25:26.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:25 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:25:26.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:25 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:26.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:25 smithi047 ceph-mon[29638]: osdmap e26: 4 total, 4 up, 4 in 2024-09-17T01:25:27.015 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:26 smithi191 ceph-mon[33187]: pgmap v97: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:27.016 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:26 smithi191 ceph-mon[33187]: osdmap e27: 4 total, 4 up, 4 in 2024-09-17T01:25:27.049 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:26 smithi160 ceph-mon[32760]: pgmap v97: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:27.050 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:26 smithi160 ceph-mon[32760]: osdmap e27: 4 total, 4 up, 4 in 2024-09-17T01:25:27.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:26 smithi047 ceph-mon[29638]: pgmap v97: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:27.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:26 smithi047 ceph-mon[29638]: osdmap e27: 4 total, 4 up, 4 in 2024-09-17T01:25:27.875 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:27 smithi191 ceph-mon[33187]: from='client.? 172.21.15.191:0/4190228208' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "862bf659-01da-401e-97b5-526ecbbf0672"}]: dispatch 2024-09-17T01:25:27.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:27 smithi191 ceph-mon[33187]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "862bf659-01da-401e-97b5-526ecbbf0672"}]: dispatch 2024-09-17T01:25:27.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:27 smithi191 ceph-mon[33187]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "862bf659-01da-401e-97b5-526ecbbf0672"}]': finished 2024-09-17T01:25:27.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:27 smithi191 ceph-mon[33187]: osdmap e28: 5 total, 4 up, 5 in 2024-09-17T01:25:27.876 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:27 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:28.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:27 smithi160 ceph-mon[32760]: from='client.? 172.21.15.191:0/4190228208' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "862bf659-01da-401e-97b5-526ecbbf0672"}]: dispatch 2024-09-17T01:25:28.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:27 smithi160 ceph-mon[32760]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "862bf659-01da-401e-97b5-526ecbbf0672"}]: dispatch 2024-09-17T01:25:28.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:27 smithi160 ceph-mon[32760]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "862bf659-01da-401e-97b5-526ecbbf0672"}]': finished 2024-09-17T01:25:28.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:27 smithi160 ceph-mon[32760]: osdmap e28: 5 total, 4 up, 5 in 2024-09-17T01:25:28.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:27 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:28.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:27 smithi047 ceph-mon[29638]: from='client.? 172.21.15.191:0/4190228208' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "862bf659-01da-401e-97b5-526ecbbf0672"}]: dispatch 2024-09-17T01:25:28.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:27 smithi047 ceph-mon[29638]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "862bf659-01da-401e-97b5-526ecbbf0672"}]: dispatch 2024-09-17T01:25:28.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:27 smithi047 ceph-mon[29638]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "862bf659-01da-401e-97b5-526ecbbf0672"}]': finished 2024-09-17T01:25:28.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:27 smithi047 ceph-mon[29638]: osdmap e28: 5 total, 4 up, 5 in 2024-09-17T01:25:28.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:27 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:29.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:28 smithi191 ceph-mon[33187]: pgmap v100: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:29.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:28 smithi191 ceph-mon[33187]: from='client.? 172.21.15.191:0/702694277' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:25:29.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:28 smithi191 ceph-mon[33187]: osdmap e29: 5 total, 4 up, 5 in 2024-09-17T01:25:29.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:28 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:29.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:28 smithi160 ceph-mon[32760]: pgmap v100: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:29.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:28 smithi160 ceph-mon[32760]: from='client.? 172.21.15.191:0/702694277' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:25:29.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:28 smithi160 ceph-mon[32760]: osdmap e29: 5 total, 4 up, 5 in 2024-09-17T01:25:29.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:28 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:29.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:28 smithi047 ceph-mon[29638]: pgmap v100: 1 pgs: 1 unknown; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:29.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:28 smithi047 ceph-mon[29638]: from='client.? 172.21.15.191:0/702694277' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:25:29.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:28 smithi047 ceph-mon[29638]: osdmap e29: 5 total, 4 up, 5 in 2024-09-17T01:25:29.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:28 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:31.082 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:30 smithi191 ceph-mon[33187]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-17T01:25:31.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:30 smithi160 ceph-mon[32760]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-17T01:25:31.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:30 smithi047 ceph-mon[29638]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-17T01:25:32.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:32 smithi191 ceph-mon[33187]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T01:25:33.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:32 smithi160 ceph-mon[32760]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T01:25:33.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:32 smithi047 ceph-mon[29638]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T01:25:35.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:34 smithi191 ceph-mon[33187]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-17T01:25:35.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:34 smithi160 ceph-mon[32760]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-17T01:25:35.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:34 smithi047 ceph-mon[29638]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-17T01:25:35.856 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:35 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T01:25:35.856 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:35 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:35.856 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:35 smithi191 ceph-mon[33187]: Deploying daemon osd.4 on smithi191 2024-09-17T01:25:36.074 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:35 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T01:25:36.075 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:35 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:36.075 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:35 smithi047 ceph-mon[29638]: Deploying daemon osd.4 on smithi191 2024-09-17T01:25:36.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:35 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T01:25:36.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:35 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:36.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:35 smithi160 ceph-mon[32760]: Deploying daemon osd.4 on smithi191 2024-09-17T01:25:36.963 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:36 smithi191 ceph-mon[33187]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-09-17T01:25:37.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:36 smithi160 ceph-mon[32760]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-09-17T01:25:37.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:36 smithi047 ceph-mon[29638]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-09-17T01:25:39.130 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:38 smithi191 ceph-mon[33187]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T01:25:39.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:38 smithi160 ceph-mon[32760]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T01:25:39.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:38 smithi047 ceph-mon[29638]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T01:25:40.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:40 smithi191 ceph-mon[33187]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-09-17T01:25:41.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:40 smithi160 ceph-mon[32760]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-09-17T01:25:41.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:40 smithi047 ceph-mon[29638]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-09-17T01:25:42.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:41 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:25:42.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:41 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:42.129 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:41 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:42.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:41 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:25:42.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:41 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:42.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:41 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:42.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:41 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:25:42.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:41 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:42.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:41 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:43.629 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:43 smithi191 ceph-mon[33187]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:43.629 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:43 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:43.630 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:43 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:43.630 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:43 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:43.630 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:43 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:25:43.630 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:43 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:43.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:43 smithi160 ceph-mon[32760]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:43.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:43 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:43.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:43 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:43.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:43 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:43.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:43 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:25:43.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:43 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:43.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:43 smithi047 ceph-mon[29638]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:43.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:43 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:43.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:43 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:43.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:43 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:43.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:43 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:25:43.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:43 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:45.290 INFO:teuthology.orchestra.run.smithi191.stdout:Created osd(s) 4 on host 'smithi191' 2024-09-17T01:25:45.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:45 smithi191 ceph-mon[33187]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:45.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:45 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:25:45.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:45 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:45.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:45 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:45.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:45 smithi160 ceph-mon[32760]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:45.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:45 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:25:45.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:45 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:45.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:45 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:45.915 DEBUG:teuthology.orchestra.run.smithi191:osd.4> sudo journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.4.service 2024-09-17T01:25:45.917 INFO:tasks.cephadm:Deploying osd.5 on smithi191 with /dev/vg_nvme/lv_3... 2024-09-17T01:25:45.918 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-17T01:25:45.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:45 smithi047 ceph-mon[29638]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:45.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:45 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:25:45.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:45 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:45.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:45 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:46.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:46 smithi191 ceph-mon[33187]: from='osd.4 [v2:172.21.15.191:6800/114487575,v1:172.21.15.191:6801/114487575]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T01:25:46.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:46 smithi191 ceph-mon[33187]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T01:25:46.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:46 smithi160 ceph-mon[32760]: from='osd.4 [v2:172.21.15.191:6800/114487575,v1:172.21.15.191:6801/114487575]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T01:25:46.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:46 smithi160 ceph-mon[32760]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T01:25:46.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:46 smithi047 ceph-mon[29638]: from='osd.4 [v2:172.21.15.191:6800/114487575,v1:172.21.15.191:6801/114487575]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T01:25:46.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:46 smithi047 ceph-mon[29638]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T01:25:46.964 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T01:25:47.826 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:47 smithi191 ceph-mon[33187]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:47.827 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:47 smithi191 ceph-mon[33187]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T01:25:47.827 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:47 smithi191 ceph-mon[33187]: osdmap e30: 5 total, 4 up, 5 in 2024-09-17T01:25:47.827 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:47 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:47.827 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:47 smithi191 ceph-mon[33187]: from='osd.4 [v2:172.21.15.191:6800/114487575,v1:172.21.15.191:6801/114487575]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-17T01:25:47.827 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:47 smithi191 ceph-mon[33187]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-17T01:25:47.827 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:25:47 smithi191 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4[37389]: 2024-09-17T01:25:47.625+0000 7f230a496640 -1 osd.4 0 waiting for initial osdmap 2024-09-17T01:25:47.827 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:25:47 smithi191 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4[37389]: 2024-09-17T01:25:47.629+0000 7f23062be640 -1 osd.4 31 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-17T01:25:47.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:47 smithi160 ceph-mon[32760]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:47.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:47 smithi160 ceph-mon[32760]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T01:25:47.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:47 smithi160 ceph-mon[32760]: osdmap e30: 5 total, 4 up, 5 in 2024-09-17T01:25:47.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:47 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:47.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:47 smithi160 ceph-mon[32760]: from='osd.4 [v2:172.21.15.191:6800/114487575,v1:172.21.15.191:6801/114487575]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-17T01:25:47.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:47 smithi160 ceph-mon[32760]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-17T01:25:47.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:47 smithi047 ceph-mon[29638]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:47.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:47 smithi047 ceph-mon[29638]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T01:25:47.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:47 smithi047 ceph-mon[29638]: osdmap e30: 5 total, 4 up, 5 in 2024-09-17T01:25:47.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:47 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:47 smithi047 ceph-mon[29638]: from='osd.4 [v2:172.21.15.191:6800/114487575,v1:172.21.15.191:6801/114487575]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-17T01:25:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:47 smithi047 ceph-mon[29638]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-17T01:25:48.734 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:48 smithi191 ceph-mon[33187]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]': finished 2024-09-17T01:25:48.734 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:48 smithi191 ceph-mon[33187]: osdmap e31: 5 total, 4 up, 5 in 2024-09-17T01:25:48.734 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:48 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:48.734 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:48 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:48.734 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:48 smithi191 ceph-mon[33187]: osd.4 [v2:172.21.15.191:6800/114487575,v1:172.21.15.191:6801/114487575] boot 2024-09-17T01:25:48.734 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:48 smithi191 ceph-mon[33187]: osdmap e32: 5 total, 5 up, 5 in 2024-09-17T01:25:48.734 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:48 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:48.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:48 smithi160 ceph-mon[32760]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]': finished 2024-09-17T01:25:48.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:48 smithi160 ceph-mon[32760]: osdmap e31: 5 total, 4 up, 5 in 2024-09-17T01:25:48.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:48 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:48.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:48 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:48.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:48 smithi160 ceph-mon[32760]: osd.4 [v2:172.21.15.191:6800/114487575,v1:172.21.15.191:6801/114487575] boot 2024-09-17T01:25:48.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:48 smithi160 ceph-mon[32760]: osdmap e32: 5 total, 5 up, 5 in 2024-09-17T01:25:48.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:48 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:48.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:48 smithi047 ceph-mon[29638]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]': finished 2024-09-17T01:25:48.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:48 smithi047 ceph-mon[29638]: osdmap e31: 5 total, 4 up, 5 in 2024-09-17T01:25:48.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:48 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:48.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:48 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:48.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:48 smithi047 ceph-mon[29638]: osd.4 [v2:172.21.15.191:6800/114487575,v1:172.21.15.191:6801/114487575] boot 2024-09-17T01:25:48.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:48 smithi047 ceph-mon[29638]: osdmap e32: 5 total, 5 up, 5 in 2024-09-17T01:25:48.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:48 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T01:25:49.720 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:49 smithi191 ceph-mon[33187]: purged_snaps scrub starts 2024-09-17T01:25:49.721 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:49 smithi191 ceph-mon[33187]: purged_snaps scrub ok 2024-09-17T01:25:49.721 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:49 smithi191 ceph-mon[33187]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:49.721 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:49 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:49.721 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:49 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:49.721 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:49 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:25:49.721 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:49 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:49.721 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:49 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:49.721 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:49 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:25:49.721 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:49 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:49.721 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:49 smithi191 ceph-mon[33187]: osdmap e33: 5 total, 5 up, 5 in 2024-09-17T01:25:49.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:49 smithi047 ceph-mon[29638]: purged_snaps scrub starts 2024-09-17T01:25:49.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:49 smithi047 ceph-mon[29638]: purged_snaps scrub ok 2024-09-17T01:25:49.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:49 smithi047 ceph-mon[29638]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:49.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:49 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:49.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:49 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:49.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:49 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:25:49.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:49 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:49.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:49 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:49.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:49 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:25:49.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:49 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:49.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:49 smithi047 ceph-mon[29638]: osdmap e33: 5 total, 5 up, 5 in 2024-09-17T01:25:50.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:49 smithi160 ceph-mon[32760]: purged_snaps scrub starts 2024-09-17T01:25:50.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:49 smithi160 ceph-mon[32760]: purged_snaps scrub ok 2024-09-17T01:25:50.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:49 smithi160 ceph-mon[32760]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 116 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:25:50.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:49 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:50.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:49 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:50.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:49 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:25:50.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:49 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:50.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:49 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:50.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:49 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:25:50.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:49 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:25:50.135 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:49 smithi160 ceph-mon[32760]: osdmap e33: 5 total, 5 up, 5 in 2024-09-17T01:25:50.253 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-09-17T01:25:50.280 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi191:vg_nvme/lv_3 2024-09-17T01:25:50.522 INFO:teuthology.orchestra.run.smithi191.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.c/config 2024-09-17T01:25:50.920 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:50 smithi191 ceph-mon[33187]: Detected new or changed devices on smithi191 2024-09-17T01:25:50.920 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:50 smithi191 ceph-mon[33187]: Adjusting osd_memory_target on smithi191 to 21184M 2024-09-17T01:25:50.920 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:50 smithi191 ceph-mon[33187]: osdmap e34: 5 total, 5 up, 5 in 2024-09-17T01:25:50.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:50 smithi047 ceph-mon[29638]: Detected new or changed devices on smithi191 2024-09-17T01:25:50.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:50 smithi047 ceph-mon[29638]: Adjusting osd_memory_target on smithi191 to 21184M 2024-09-17T01:25:50.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:50 smithi047 ceph-mon[29638]: osdmap e34: 5 total, 5 up, 5 in 2024-09-17T01:25:51.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:50 smithi160 ceph-mon[32760]: Detected new or changed devices on smithi191 2024-09-17T01:25:51.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:50 smithi160 ceph-mon[32760]: Adjusting osd_memory_target on smithi191 to 21184M 2024-09-17T01:25:51.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:50 smithi160 ceph-mon[32760]: osdmap e34: 5 total, 5 up, 5 in 2024-09-17T01:25:51.831 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:51 smithi191 ceph-mon[33187]: pgmap v116: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:25:51.831 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:51 smithi191 ceph-mon[33187]: from='client.24208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi191:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:25:51.831 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:51 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:25:51.831 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:51 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:25:51.831 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:51 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:51.831 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:51 smithi191 ceph-mon[33187]: osdmap e35: 5 total, 5 up, 5 in 2024-09-17T01:25:51.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:51 smithi047 ceph-mon[29638]: pgmap v116: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:25:51.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:51 smithi047 ceph-mon[29638]: from='client.24208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi191:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:25:51.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:51 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:25:51.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:51 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:25:51.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:51 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:51.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:51 smithi047 ceph-mon[29638]: osdmap e35: 5 total, 5 up, 5 in 2024-09-17T01:25:52.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:51 smithi160 ceph-mon[32760]: pgmap v116: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:25:52.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:51 smithi160 ceph-mon[32760]: from='client.24208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi191:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:25:52.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:51 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T01:25:52.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:51 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T01:25:52.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:51 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:25:52.134 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:51 smithi160 ceph-mon[32760]: osdmap e35: 5 total, 5 up, 5 in 2024-09-17T01:25:53.369 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:53 smithi191 ceph-mon[33187]: pgmap v119: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:25:53.369 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:53 smithi191 ceph-mon[33187]: osdmap e36: 5 total, 5 up, 5 in 2024-09-17T01:25:53.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:53 smithi160 ceph-mon[32760]: pgmap v119: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:25:53.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:53 smithi160 ceph-mon[32760]: osdmap e36: 5 total, 5 up, 5 in 2024-09-17T01:25:53.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:53 smithi047 ceph-mon[29638]: pgmap v119: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:25:53.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:53 smithi047 ceph-mon[29638]: osdmap e36: 5 total, 5 up, 5 in 2024-09-17T01:25:54.360 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:54 smithi191 ceph-mon[33187]: from='client.? 172.21.15.191:0/4226393601' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cb65d247-4341-436c-ab44-f5ca125784b2"}]: dispatch 2024-09-17T01:25:54.360 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:54 smithi191 ceph-mon[33187]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cb65d247-4341-436c-ab44-f5ca125784b2"}]: dispatch 2024-09-17T01:25:54.360 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:54 smithi191 ceph-mon[33187]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cb65d247-4341-436c-ab44-f5ca125784b2"}]': finished 2024-09-17T01:25:54.360 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:54 smithi191 ceph-mon[33187]: osdmap e37: 6 total, 5 up, 6 in 2024-09-17T01:25:54.360 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:54 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:25:54.360 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:54 smithi191 ceph-mon[33187]: from='client.? 172.21.15.191:0/1214087014' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:25:54.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:54 smithi160 ceph-mon[32760]: from='client.? 172.21.15.191:0/4226393601' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cb65d247-4341-436c-ab44-f5ca125784b2"}]: dispatch 2024-09-17T01:25:54.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:54 smithi160 ceph-mon[32760]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cb65d247-4341-436c-ab44-f5ca125784b2"}]: dispatch 2024-09-17T01:25:54.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:54 smithi160 ceph-mon[32760]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cb65d247-4341-436c-ab44-f5ca125784b2"}]': finished 2024-09-17T01:25:54.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:54 smithi160 ceph-mon[32760]: osdmap e37: 6 total, 5 up, 6 in 2024-09-17T01:25:54.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:54 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:25:54.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:54 smithi160 ceph-mon[32760]: from='client.? 172.21.15.191:0/1214087014' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:25:54.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:54 smithi047 ceph-mon[29638]: from='client.? 172.21.15.191:0/4226393601' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cb65d247-4341-436c-ab44-f5ca125784b2"}]: dispatch 2024-09-17T01:25:54.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:54 smithi047 ceph-mon[29638]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cb65d247-4341-436c-ab44-f5ca125784b2"}]: dispatch 2024-09-17T01:25:54.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:54 smithi047 ceph-mon[29638]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cb65d247-4341-436c-ab44-f5ca125784b2"}]': finished 2024-09-17T01:25:54.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:54 smithi047 ceph-mon[29638]: osdmap e37: 6 total, 5 up, 6 in 2024-09-17T01:25:54.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:54 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:25:54.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:54 smithi047 ceph-mon[29638]: from='client.? 172.21.15.191:0/1214087014' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T01:25:55.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:55 smithi191 ceph-mon[33187]: pgmap v122: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:25:55.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:55 smithi160 ceph-mon[32760]: pgmap v122: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:25:55.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:55 smithi047 ceph-mon[29638]: pgmap v122: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:25:57.629 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:57 smithi191 ceph-mon[33187]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 105 KiB/s, 0 objects/s recovering 2024-09-17T01:25:57.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:57 smithi160 ceph-mon[32760]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 105 KiB/s, 0 objects/s recovering 2024-09-17T01:25:57.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:57 smithi047 ceph-mon[29638]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 105 KiB/s, 0 objects/s recovering 2024-09-17T01:25:59.629 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:25:59 smithi191 ceph-mon[33187]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-09-17T01:25:59.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:25:59 smithi160 ceph-mon[32760]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-09-17T01:25:59.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:25:59 smithi047 ceph-mon[29638]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-09-17T01:26:00.629 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:00 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T01:26:00.629 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:00 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:26:00.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:00 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T01:26:00.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:00 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:26:00.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:00 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T01:26:00.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:00 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:26:01.721 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:01 smithi191 ceph-mon[33187]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-17T01:26:01.721 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:01 smithi191 ceph-mon[33187]: Deploying daemon osd.5 on smithi191 2024-09-17T01:26:01.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:01 smithi160 ceph-mon[32760]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-17T01:26:01.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:01 smithi160 ceph-mon[32760]: Deploying daemon osd.5 on smithi191 2024-09-17T01:26:01.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:01 smithi047 ceph-mon[29638]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-17T01:26:01.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:01 smithi047 ceph-mon[29638]: Deploying daemon osd.5 on smithi191 2024-09-17T01:26:03.629 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:03 smithi191 ceph-mon[33187]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-17T01:26:03.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:03 smithi160 ceph-mon[32760]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-17T01:26:03.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:03 smithi047 ceph-mon[29638]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-17T01:26:05.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:05 smithi191 ceph-mon[33187]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-17T01:26:05.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:05 smithi160 ceph-mon[32760]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-17T01:26:05.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:05 smithi047 ceph-mon[29638]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-17T01:26:06.768 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:06 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:26:06.768 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:06 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:06.768 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:06 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:06.824 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:26:06.825 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:06.825 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:06.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:06 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:26:06.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:06 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:06.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:06 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:07.762 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:07 smithi191 ceph-mon[33187]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T01:26:07.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:07 smithi160 ceph-mon[32760]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T01:26:07.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:07 smithi047 ceph-mon[29638]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T01:26:09.492 INFO:teuthology.orchestra.run.smithi191.stdout:Created osd(s) 5 on host 'smithi191' 2024-09-17T01:26:09.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:09 smithi191 ceph-mon[33187]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:09.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:09 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:09.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:09 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:09.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:09 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:26:09.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:09 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:26:09.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:09 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:09.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:09 smithi160 ceph-mon[32760]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:09.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:09.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:09.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:26:09.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:26:09.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:09.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:09 smithi047 ceph-mon[29638]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:09.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:09.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:09.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:26:09.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:26:09.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:10.168 DEBUG:teuthology.orchestra.run.smithi191:osd.5> sudo journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.5.service 2024-09-17T01:26:10.170 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-17T01:26:10.171 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T01:26:10.436 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:10.794 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:10 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:26:10.794 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:10 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:10.794 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:10 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:10.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:10 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:26:10.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:10 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:10.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:10 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:10.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:10 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:26:10.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:10 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:10.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:10 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:11.065 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:26:11.515 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:11 smithi191 ceph-mon[33187]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:11.515 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:11 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/1336895401' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T01:26:11.798 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:11 smithi047 ceph-mon[29638]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:11.799 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:11 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/1336895401' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T01:26:11.826 INFO:teuthology.orchestra.run.smithi047.stdout:{"epoch":37,"num_osds":6,"num_up_osds":5,"osd_up_since":1726536348,"num_in_osds":6,"osd_in_since":1726536353,"num_remapped_pgs":0} 2024-09-17T01:26:11.880 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:26:11 smithi191 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5[43287]: 2024-09-17T01:26:11.516+0000 7f168afab640 -1 osd.5 0 log_to_monitors true 2024-09-17T01:26:11.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:11 smithi160 ceph-mon[32760]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:11.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:11 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/1336895401' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T01:26:12.828 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T01:26:12.829 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:12 smithi191 ceph-mon[33187]: from='osd.5 [v2:172.21.15.191:6808/3295976400,v1:172.21.15.191:6809/3295976400]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T01:26:12.829 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:12 smithi191 ceph-mon[33187]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T01:26:12.858 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:12 smithi047 ceph-mon[29638]: from='osd.5 [v2:172.21.15.191:6808/3295976400,v1:172.21.15.191:6809/3295976400]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T01:26:12.858 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:12 smithi047 ceph-mon[29638]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T01:26:12.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:12 smithi160 ceph-mon[32760]: from='osd.5 [v2:172.21.15.191:6808/3295976400,v1:172.21.15.191:6809/3295976400]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T01:26:12.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:12 smithi160 ceph-mon[32760]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T01:26:13.105 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:13.695 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:26:13.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-mon[33187]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:13.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-mon[33187]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T01:26:13.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-mon[33187]: osdmap e38: 6 total, 5 up, 6 in 2024-09-17T01:26:13.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:13.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-mon[33187]: from='osd.5 [v2:172.21.15.191:6808/3295976400,v1:172.21.15.191:6809/3295976400]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-17T01:26:13.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-mon[33187]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-17T01:26:13.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:13.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:13.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:26:13.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:26:13.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:13.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:26:13.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:26:13.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:13.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:13 smithi160 ceph-mon[32760]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:13.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:13 smithi160 ceph-mon[32760]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T01:26:13.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:13 smithi160 ceph-mon[32760]: osdmap e38: 6 total, 5 up, 6 in 2024-09-17T01:26:13.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:13 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:13.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:13 smithi160 ceph-mon[32760]: from='osd.5 [v2:172.21.15.191:6808/3295976400,v1:172.21.15.191:6809/3295976400]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-17T01:26:13.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:13 smithi160 ceph-mon[32760]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-17T01:26:13.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:13 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:13.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:13 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:13.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:13 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:26:13.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:13 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:26:13.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:13 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:13.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:13 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:26:13.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:13 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:26:13.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:13 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:13.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:13 smithi047 ceph-mon[29638]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:13.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:13 smithi047 ceph-mon[29638]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T01:26:13.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:13 smithi047 ceph-mon[29638]: osdmap e38: 6 total, 5 up, 6 in 2024-09-17T01:26:13.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:13.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:13 smithi047 ceph-mon[29638]: from='osd.5 [v2:172.21.15.191:6808/3295976400,v1:172.21.15.191:6809/3295976400]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-17T01:26:13.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:13 smithi047 ceph-mon[29638]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]: dispatch 2024-09-17T01:26:13.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:13.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:13.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:26:13.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T01:26:13.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:13.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:26:13.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:26:13.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:14.338 INFO:teuthology.orchestra.run.smithi047.stdout:{"epoch":39,"num_osds":6,"num_up_osds":5,"osd_up_since":1726536348,"num_in_osds":6,"osd_in_since":1726536353,"num_remapped_pgs":0} 2024-09-17T01:26:14.379 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5[43287]: 2024-09-17T01:26:13.914+0000 7f1686f2e640 -1 osd.5 0 waiting for initial osdmap 2024-09-17T01:26:14.379 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:26:13 smithi191 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5[43287]: 2024-09-17T01:26:13.917+0000 7f167ed4e640 -1 osd.5 39 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-17T01:26:14.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:14 smithi191 ceph-mon[33187]: Detected new or changed devices on smithi191 2024-09-17T01:26:14.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:14 smithi191 ceph-mon[33187]: Adjusting osd_memory_target on smithi191 to 10592M 2024-09-17T01:26:14.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:14 smithi191 ceph-mon[33187]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]': finished 2024-09-17T01:26:14.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:14 smithi191 ceph-mon[33187]: osdmap e39: 6 total, 5 up, 6 in 2024-09-17T01:26:14.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:14 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:14.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:14 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:14.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:14 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/3102685343' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T01:26:14.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:14 smithi191 ceph-mon[33187]: from='osd.5 ' entity='osd.5' 2024-09-17T01:26:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:14 smithi160 ceph-mon[32760]: Detected new or changed devices on smithi191 2024-09-17T01:26:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:14 smithi160 ceph-mon[32760]: Adjusting osd_memory_target on smithi191 to 10592M 2024-09-17T01:26:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:14 smithi160 ceph-mon[32760]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]': finished 2024-09-17T01:26:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:14 smithi160 ceph-mon[32760]: osdmap e39: 6 total, 5 up, 6 in 2024-09-17T01:26:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:14 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:14 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:14 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/3102685343' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T01:26:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:14 smithi160 ceph-mon[32760]: from='osd.5 ' entity='osd.5' 2024-09-17T01:26:14.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:14 smithi047 ceph-mon[29638]: Detected new or changed devices on smithi191 2024-09-17T01:26:14.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:14 smithi047 ceph-mon[29638]: Adjusting osd_memory_target on smithi191 to 10592M 2024-09-17T01:26:14.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:14 smithi047 ceph-mon[29638]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi191", "root=default"]}]': finished 2024-09-17T01:26:14.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:14 smithi047 ceph-mon[29638]: osdmap e39: 6 total, 5 up, 6 in 2024-09-17T01:26:14.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:14 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:14.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:14 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:14.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:14 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/3102685343' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T01:26:14.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:14 smithi047 ceph-mon[29638]: from='osd.5 ' entity='osd.5' 2024-09-17T01:26:15.339 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T01:26:15.607 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:15.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:15 smithi047 ceph-mon[29638]: purged_snaps scrub starts 2024-09-17T01:26:15.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:15 smithi047 ceph-mon[29638]: purged_snaps scrub ok 2024-09-17T01:26:15.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:15 smithi047 ceph-mon[29638]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:15.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:15 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:15.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:15 smithi047 ceph-mon[29638]: osd.5 [v2:172.21.15.191:6808/3295976400,v1:172.21.15.191:6809/3295976400] boot 2024-09-17T01:26:15.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:15 smithi047 ceph-mon[29638]: osdmap e40: 6 total, 6 up, 6 in 2024-09-17T01:26:15.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:15 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:15.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:15 smithi191 ceph-mon[33187]: purged_snaps scrub starts 2024-09-17T01:26:15.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:15 smithi191 ceph-mon[33187]: purged_snaps scrub ok 2024-09-17T01:26:15.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:15 smithi191 ceph-mon[33187]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:15.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:15 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:15.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:15 smithi191 ceph-mon[33187]: osd.5 [v2:172.21.15.191:6808/3295976400,v1:172.21.15.191:6809/3295976400] boot 2024-09-17T01:26:15.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:15 smithi191 ceph-mon[33187]: osdmap e40: 6 total, 6 up, 6 in 2024-09-17T01:26:15.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:15 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:15.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:15 smithi160 ceph-mon[32760]: purged_snaps scrub starts 2024-09-17T01:26:15.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:15 smithi160 ceph-mon[32760]: purged_snaps scrub ok 2024-09-17T01:26:15.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:15 smithi160 ceph-mon[32760]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:15.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:15 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:15.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:15 smithi160 ceph-mon[32760]: osd.5 [v2:172.21.15.191:6808/3295976400,v1:172.21.15.191:6809/3295976400] boot 2024-09-17T01:26:15.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:15 smithi160 ceph-mon[32760]: osdmap e40: 6 total, 6 up, 6 in 2024-09-17T01:26:15.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:15 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T01:26:16.357 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:26:16.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:16 smithi047 ceph-mon[29638]: osdmap e41: 6 total, 6 up, 6 in 2024-09-17T01:26:16.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:16 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/2979300563' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T01:26:16.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:16 smithi191 ceph-mon[33187]: osdmap e41: 6 total, 6 up, 6 in 2024-09-17T01:26:16.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:16 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/2979300563' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T01:26:16.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:16 smithi160 ceph-mon[32760]: osdmap e41: 6 total, 6 up, 6 in 2024-09-17T01:26:16.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:16 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/2979300563' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T01:26:16.965 INFO:teuthology.orchestra.run.smithi047.stdout:{"epoch":41,"num_osds":6,"num_up_osds":6,"osd_up_since":1726536374,"num_in_osds":6,"osd_in_since":1726536353,"num_remapped_pgs":1} 2024-09-17T01:26:16.966 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T01:26:17.220 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:17.676 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:17 smithi047 ceph-mon[29638]: pgmap v137: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:17.677 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:17 smithi047 ceph-mon[29638]: osdmap e42: 6 total, 6 up, 6 in 2024-09-17T01:26:17.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:17 smithi191 ceph-mon[33187]: pgmap v137: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:17.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:17 smithi191 ceph-mon[33187]: osdmap e42: 6 total, 6 up, 6 in 2024-09-17T01:26:17.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:17 smithi160 ceph-mon[32760]: pgmap v137: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:17.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:17 smithi160 ceph-mon[32760]: osdmap e42: 6 total, 6 up, 6 in 2024-09-17T01:26:18.007 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:26:18.007 INFO:teuthology.orchestra.run.smithi047.stdout:{"epoch":43,"fsid":"181a7ed8-7493-11ef-bceb-c7b262605968","created":"2024-09-17T01:21:48.545442+0000","modified":"2024-09-17T01:26:17.521688+0000","last_up_change":"2024-09-17T01:26:14.505443+0000","last_in_change":"2024-09-17T01:25:53.442660+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T01:24:58.181774+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"d5c0dae4-f9e2-4d23-a1c7-5041560e1237","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6802","nonce":2408489733},{"type":"v1","addr":"172.21.15.47:6803","nonce":2408489733}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6804","nonce":2408489733},{"type":"v1","addr":"172.21.15.47:6805","nonce":2408489733}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6808","nonce":2408489733},{"type":"v1","addr":"172.21.15.47:6809","nonce":2408489733}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6806","nonce":2408489733},{"type":"v1","addr":"172.21.15.47:6807","nonce":2408489733}]},"public_addr":"172.21.15.47:6803/2408489733","cluster_addr":"172.21.15.47:6805/2408489733","heartbeat_back_addr":"172.21.15.47:6809/2408489733","heartbeat_front_addr":"172.21.15.47:6807/2408489733","state":["exists","up"]},{"osd":1,"uuid":"864db44e-8e06-4fe9-8098-b8855a22ab16","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6810","nonce":3672119839},{"type":"v1","addr":"172.21.15.47:6811","nonce":3672119839}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6812","nonce":3672119839},{"type":"v1","addr":"172.21.15.47:6813","nonce":3672119839}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6816","nonce":3672119839},{"type":"v1","addr":"172.21.15.47:6817","nonce":3672119839}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6814","nonce":3672119839},{"type":"v1","addr":"172.21.15.47:6815","nonce":3672119839}]},"public_addr":"172.21.15.47:6811/3672119839","cluster_addr":"172.21.15.47:6813/3672119839","heartbeat_back_addr":"172.21.15.47:6817/3672119839","heartbeat_front_addr":"172.21.15.47:6815/3672119839","state":["exists","up"]},{"osd":2,"uuid":"e3d1385b-b106-4cf7-b5d7-4df422c055c5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6800","nonce":3485587574},{"type":"v1","addr":"172.21.15.160:6801","nonce":3485587574}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6802","nonce":3485587574},{"type":"v1","addr":"172.21.15.160:6803","nonce":3485587574}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6806","nonce":3485587574},{"type":"v1","addr":"172.21.15.160:6807","nonce":3485587574}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6804","nonce":3485587574},{"type":"v1","addr":"172.21.15.160:6805","nonce":3485587574}]},"public_addr":"172.21.15.160:6801/3485587574","cluster_addr":"172.21.15.160:6803/3485587574","heartbeat_back_addr":"172.21.15.160:6807/3485587574","heartbeat_front_addr":"172.21.15.160:6805/3485587574","state":["exists","up"]},{"osd":3,"uuid":"19ef820b-02cc-41a7-a201-d5063d7e9274","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6808","nonce":773206061},{"type":"v1","addr":"172.21.15.160:6809","nonce":773206061}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6810","nonce":773206061},{"type":"v1","addr":"172.21.15.160:6811","nonce":773206061}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6814","nonce":773206061},{"type":"v1","addr":"172.21.15.160:6815","nonce":773206061}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6812","nonce":773206061},{"type":"v1","addr":"172.21.15.160:6813","nonce":773206061}]},"public_addr":"172.21.15.160:6809/773206061","cluster_addr":"172.21.15.160:6811/773206061","heartbeat_back_addr":"172.21.15.160:6815/773206061","heartbeat_front_addr":"172.21.15.160:6813/773206061","state":["exists","up"]},{"osd":4,"uuid":"862bf659-01da-401e-97b5-526ecbbf0672","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6800","nonce":114487575},{"type":"v1","addr":"172.21.15.191:6801","nonce":114487575}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6802","nonce":114487575},{"type":"v1","addr":"172.21.15.191:6803","nonce":114487575}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6806","nonce":114487575},{"type":"v1","addr":"172.21.15.191:6807","nonce":114487575}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6804","nonce":114487575},{"type":"v1","addr":"172.21.15.191:6805","nonce":114487575}]},"public_addr":"172.21.15.191:6801/114487575","cluster_addr":"172.21.15.191:6803/114487575","heartbeat_back_addr":"172.21.15.191:6807/114487575","heartbeat_front_addr":"172.21.15.191:6805/114487575","state":["exists","up"]},{"osd":5,"uuid":"cb65d247-4341-436c-ab44-f5ca125784b2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":40,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6808","nonce":3295976400},{"type":"v1","addr":"172.21.15.191:6809","nonce":3295976400}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6810","nonce":3295976400},{"type":"v1","addr":"172.21.15.191:6811","nonce":3295976400}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6814","nonce":3295976400},{"type":"v1","addr":"172.21.15.191:6815","nonce":3295976400}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6812","nonce":3295976400},{"type":"v1","addr":"172.21.15.191:6813","nonce":3295976400}]},"public_addr":"172.21.15.191:6809/3295976400","cluster_addr":"172.21.15.191:6811/3295976400","heartbeat_back_addr":"172.21.15.191:6815/3295976400","heartbeat_front_addr":"172.21.15.191:6813/3295976400","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:24:06.054619+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:24:32.716419+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:24:56.346727+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:25:23.026314+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:25:46.764456+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:26:12.559061+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.47:6800/2448999125":"2024-09-18T01:22:43.672545+0000","172.21.15.47:0/2533417255":"2024-09-18T01:22:43.672545+0000","172.21.15.47:0/4109960704":"2024-09-18T01:22:43.672545+0000","172.21.15.47:6801/2448999125":"2024-09-18T01:22:43.672545+0000","172.21.15.47:0/1362995682":"2024-09-18T01:22:18.841398+0000","172.21.15.47:0/3100574331":"2024-09-18T01:22:43.672545+0000","172.21.15.47:0/1353097895":"2024-09-18T01:22:18.841398+0000","172.21.15.47:0/3426624117":"2024-09-18T01:22:18.841398+0000","172.21.15.47:6801/2402957928":"2024-09-18T01:22:18.841398+0000","172.21.15.47:6800/2402957928":"2024-09-18T01:22:18.841398+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-17T01:26:18.626 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:18 smithi047 ceph-mon[29638]: osdmap e43: 6 total, 6 up, 6 in 2024-09-17T01:26:18.626 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:18 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/336965909' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T01:26:18.657 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-17T01:24:58.181774+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'is_stretch_pool': False, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '21', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 6, 'score_stable': 6, 'optimal_score': 0.5, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-09-17T01:26:18.657 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-17T01:26:18.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:18 smithi191 ceph-mon[33187]: osdmap e43: 6 total, 6 up, 6 in 2024-09-17T01:26:18.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:18 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/336965909' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T01:26:18.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:18 smithi160 ceph-mon[32760]: osdmap e43: 6 total, 6 up, 6 in 2024-09-17T01:26:18.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:18 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/336965909' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T01:26:18.908 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:19.571 INFO:teuthology.orchestra.run.smithi047.stdout:pg_num: 1 2024-09-17T01:26:19.571 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:19 smithi047 ceph-mon[29638]: pgmap v140: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:19.571 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:19 smithi047 ceph-mon[29638]: osdmap e44: 6 total, 6 up, 6 in 2024-09-17T01:26:19.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:19 smithi191 ceph-mon[33187]: pgmap v140: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:19.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:19 smithi191 ceph-mon[33187]: osdmap e44: 6 total, 6 up, 6 in 2024-09-17T01:26:19.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:19 smithi160 ceph-mon[32760]: pgmap v140: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:19.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:19 smithi160 ceph-mon[32760]: osdmap e44: 6 total, 6 up, 6 in 2024-09-17T01:26:20.239 INFO:tasks.cephadm:Setting up client nodes... 2024-09-17T01:26:20.239 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-17T01:26:20.240 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-17T01:26:20.240 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-17T01:26:20.491 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:20.791 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:20 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/2914701701' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T01:26:20.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:20 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/2914701701' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T01:26:20.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:20 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/2914701701' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T01:26:21.213 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:26:21.806 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:21 smithi047 ceph-mon[29638]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 137 KiB/s, 0 objects/s recovering 2024-09-17T01:26:21.806 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:21 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/1339895590' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T01:26:21.833 INFO:teuthology.orchestra.run.smithi047.stdout:{"epoch":15,"flags":0,"active_gid":14150,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6800","nonce":3065441810},{"type":"v1","addr":"172.21.15.47:6801","nonce":3065441810}]},"active_addr":"172.21.15.47:6801/3065441810","active_change":"2024-09-17T01:22:43.672651+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":24107,"name":"b","mgr_features":4540701547738038271,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.5","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.5","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.47:8443/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":3,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.47:0","nonce":3026907772}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.47:0","nonce":2714669876}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.47:0","nonce":3310260928}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.47:0","nonce":1921838375}]}]} 2024-09-17T01:26:21.837 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-17T01:26:21.838 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-17T01:26:21.838 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T01:26:21.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:21 smithi191 ceph-mon[33187]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 137 KiB/s, 0 objects/s recovering 2024-09-17T01:26:21.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:21 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/1339895590' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T01:26:21.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:21 smithi160 ceph-mon[32760]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail; 137 KiB/s, 0 objects/s recovering 2024-09-17T01:26:21.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:21 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/1339895590' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T01:26:22.087 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:22.729 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:26:22.729 INFO:teuthology.orchestra.run.smithi047.stdout:{"epoch":44,"fsid":"181a7ed8-7493-11ef-bceb-c7b262605968","created":"2024-09-17T01:21:48.545442+0000","modified":"2024-09-17T01:26:18.526822+0000","last_up_change":"2024-09-17T01:26:14.505443+0000","last_in_change":"2024-09-17T01:25:53.442660+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T01:24:58.181774+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"d5c0dae4-f9e2-4d23-a1c7-5041560e1237","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6802","nonce":2408489733},{"type":"v1","addr":"172.21.15.47:6803","nonce":2408489733}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6804","nonce":2408489733},{"type":"v1","addr":"172.21.15.47:6805","nonce":2408489733}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6808","nonce":2408489733},{"type":"v1","addr":"172.21.15.47:6809","nonce":2408489733}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6806","nonce":2408489733},{"type":"v1","addr":"172.21.15.47:6807","nonce":2408489733}]},"public_addr":"172.21.15.47:6803/2408489733","cluster_addr":"172.21.15.47:6805/2408489733","heartbeat_back_addr":"172.21.15.47:6809/2408489733","heartbeat_front_addr":"172.21.15.47:6807/2408489733","state":["exists","up"]},{"osd":1,"uuid":"864db44e-8e06-4fe9-8098-b8855a22ab16","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6810","nonce":3672119839},{"type":"v1","addr":"172.21.15.47:6811","nonce":3672119839}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6812","nonce":3672119839},{"type":"v1","addr":"172.21.15.47:6813","nonce":3672119839}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6816","nonce":3672119839},{"type":"v1","addr":"172.21.15.47:6817","nonce":3672119839}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6814","nonce":3672119839},{"type":"v1","addr":"172.21.15.47:6815","nonce":3672119839}]},"public_addr":"172.21.15.47:6811/3672119839","cluster_addr":"172.21.15.47:6813/3672119839","heartbeat_back_addr":"172.21.15.47:6817/3672119839","heartbeat_front_addr":"172.21.15.47:6815/3672119839","state":["exists","up"]},{"osd":2,"uuid":"e3d1385b-b106-4cf7-b5d7-4df422c055c5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6800","nonce":3485587574},{"type":"v1","addr":"172.21.15.160:6801","nonce":3485587574}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6802","nonce":3485587574},{"type":"v1","addr":"172.21.15.160:6803","nonce":3485587574}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6806","nonce":3485587574},{"type":"v1","addr":"172.21.15.160:6807","nonce":3485587574}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6804","nonce":3485587574},{"type":"v1","addr":"172.21.15.160:6805","nonce":3485587574}]},"public_addr":"172.21.15.160:6801/3485587574","cluster_addr":"172.21.15.160:6803/3485587574","heartbeat_back_addr":"172.21.15.160:6807/3485587574","heartbeat_front_addr":"172.21.15.160:6805/3485587574","state":["exists","up"]},{"osd":3,"uuid":"19ef820b-02cc-41a7-a201-d5063d7e9274","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6808","nonce":773206061},{"type":"v1","addr":"172.21.15.160:6809","nonce":773206061}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6810","nonce":773206061},{"type":"v1","addr":"172.21.15.160:6811","nonce":773206061}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6814","nonce":773206061},{"type":"v1","addr":"172.21.15.160:6815","nonce":773206061}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6812","nonce":773206061},{"type":"v1","addr":"172.21.15.160:6813","nonce":773206061}]},"public_addr":"172.21.15.160:6809/773206061","cluster_addr":"172.21.15.160:6811/773206061","heartbeat_back_addr":"172.21.15.160:6815/773206061","heartbeat_front_addr":"172.21.15.160:6813/773206061","state":["exists","up"]},{"osd":4,"uuid":"862bf659-01da-401e-97b5-526ecbbf0672","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6800","nonce":114487575},{"type":"v1","addr":"172.21.15.191:6801","nonce":114487575}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6802","nonce":114487575},{"type":"v1","addr":"172.21.15.191:6803","nonce":114487575}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6806","nonce":114487575},{"type":"v1","addr":"172.21.15.191:6807","nonce":114487575}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6804","nonce":114487575},{"type":"v1","addr":"172.21.15.191:6805","nonce":114487575}]},"public_addr":"172.21.15.191:6801/114487575","cluster_addr":"172.21.15.191:6803/114487575","heartbeat_back_addr":"172.21.15.191:6807/114487575","heartbeat_front_addr":"172.21.15.191:6805/114487575","state":["exists","up"]},{"osd":5,"uuid":"cb65d247-4341-436c-ab44-f5ca125784b2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":40,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6808","nonce":3295976400},{"type":"v1","addr":"172.21.15.191:6809","nonce":3295976400}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6810","nonce":3295976400},{"type":"v1","addr":"172.21.15.191:6811","nonce":3295976400}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6814","nonce":3295976400},{"type":"v1","addr":"172.21.15.191:6815","nonce":3295976400}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6812","nonce":3295976400},{"type":"v1","addr":"172.21.15.191:6813","nonce":3295976400}]},"public_addr":"172.21.15.191:6809/3295976400","cluster_addr":"172.21.15.191:6811/3295976400","heartbeat_back_addr":"172.21.15.191:6815/3295976400","heartbeat_front_addr":"172.21.15.191:6813/3295976400","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:24:06.054619+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:24:32.716419+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:24:56.346727+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:25:23.026314+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:25:46.764456+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:26:12.559061+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.47:6800/2448999125":"2024-09-18T01:22:43.672545+0000","172.21.15.47:0/2533417255":"2024-09-18T01:22:43.672545+0000","172.21.15.47:0/4109960704":"2024-09-18T01:22:43.672545+0000","172.21.15.47:6801/2448999125":"2024-09-18T01:22:43.672545+0000","172.21.15.47:0/1362995682":"2024-09-18T01:22:18.841398+0000","172.21.15.47:0/3100574331":"2024-09-18T01:22:43.672545+0000","172.21.15.47:0/1353097895":"2024-09-18T01:22:18.841398+0000","172.21.15.47:0/3426624117":"2024-09-18T01:22:18.841398+0000","172.21.15.47:6801/2402957928":"2024-09-18T01:22:18.841398+0000","172.21.15.47:6800/2402957928":"2024-09-18T01:22:18.841398+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-17T01:26:23.448 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-17T01:26:23.448 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T01:26:23.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:23 smithi047 ceph-mon[29638]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T01:26:23.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:23 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/1685637496' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T01:26:23.705 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:23.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:23 smithi191 ceph-mon[33187]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T01:26:23.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:23 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/1685637496' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T01:26:23.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:23 smithi160 ceph-mon[32760]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T01:26:23.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:23 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/1685637496' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T01:26:24.298 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:26:24.298 INFO:teuthology.orchestra.run.smithi047.stdout:{"epoch":44,"fsid":"181a7ed8-7493-11ef-bceb-c7b262605968","created":"2024-09-17T01:21:48.545442+0000","modified":"2024-09-17T01:26:18.526822+0000","last_up_change":"2024-09-17T01:26:14.505443+0000","last_in_change":"2024-09-17T01:25:53.442660+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T01:24:58.181774+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"d5c0dae4-f9e2-4d23-a1c7-5041560e1237","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6802","nonce":2408489733},{"type":"v1","addr":"172.21.15.47:6803","nonce":2408489733}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6804","nonce":2408489733},{"type":"v1","addr":"172.21.15.47:6805","nonce":2408489733}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6808","nonce":2408489733},{"type":"v1","addr":"172.21.15.47:6809","nonce":2408489733}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6806","nonce":2408489733},{"type":"v1","addr":"172.21.15.47:6807","nonce":2408489733}]},"public_addr":"172.21.15.47:6803/2408489733","cluster_addr":"172.21.15.47:6805/2408489733","heartbeat_back_addr":"172.21.15.47:6809/2408489733","heartbeat_front_addr":"172.21.15.47:6807/2408489733","state":["exists","up"]},{"osd":1,"uuid":"864db44e-8e06-4fe9-8098-b8855a22ab16","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6810","nonce":3672119839},{"type":"v1","addr":"172.21.15.47:6811","nonce":3672119839}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6812","nonce":3672119839},{"type":"v1","addr":"172.21.15.47:6813","nonce":3672119839}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6816","nonce":3672119839},{"type":"v1","addr":"172.21.15.47:6817","nonce":3672119839}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.47:6814","nonce":3672119839},{"type":"v1","addr":"172.21.15.47:6815","nonce":3672119839}]},"public_addr":"172.21.15.47:6811/3672119839","cluster_addr":"172.21.15.47:6813/3672119839","heartbeat_back_addr":"172.21.15.47:6817/3672119839","heartbeat_front_addr":"172.21.15.47:6815/3672119839","state":["exists","up"]},{"osd":2,"uuid":"e3d1385b-b106-4cf7-b5d7-4df422c055c5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6800","nonce":3485587574},{"type":"v1","addr":"172.21.15.160:6801","nonce":3485587574}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6802","nonce":3485587574},{"type":"v1","addr":"172.21.15.160:6803","nonce":3485587574}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6806","nonce":3485587574},{"type":"v1","addr":"172.21.15.160:6807","nonce":3485587574}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6804","nonce":3485587574},{"type":"v1","addr":"172.21.15.160:6805","nonce":3485587574}]},"public_addr":"172.21.15.160:6801/3485587574","cluster_addr":"172.21.15.160:6803/3485587574","heartbeat_back_addr":"172.21.15.160:6807/3485587574","heartbeat_front_addr":"172.21.15.160:6805/3485587574","state":["exists","up"]},{"osd":3,"uuid":"19ef820b-02cc-41a7-a201-d5063d7e9274","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6808","nonce":773206061},{"type":"v1","addr":"172.21.15.160:6809","nonce":773206061}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6810","nonce":773206061},{"type":"v1","addr":"172.21.15.160:6811","nonce":773206061}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6814","nonce":773206061},{"type":"v1","addr":"172.21.15.160:6815","nonce":773206061}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.160:6812","nonce":773206061},{"type":"v1","addr":"172.21.15.160:6813","nonce":773206061}]},"public_addr":"172.21.15.160:6809/773206061","cluster_addr":"172.21.15.160:6811/773206061","heartbeat_back_addr":"172.21.15.160:6815/773206061","heartbeat_front_addr":"172.21.15.160:6813/773206061","state":["exists","up"]},{"osd":4,"uuid":"862bf659-01da-401e-97b5-526ecbbf0672","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6800","nonce":114487575},{"type":"v1","addr":"172.21.15.191:6801","nonce":114487575}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6802","nonce":114487575},{"type":"v1","addr":"172.21.15.191:6803","nonce":114487575}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6806","nonce":114487575},{"type":"v1","addr":"172.21.15.191:6807","nonce":114487575}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6804","nonce":114487575},{"type":"v1","addr":"172.21.15.191:6805","nonce":114487575}]},"public_addr":"172.21.15.191:6801/114487575","cluster_addr":"172.21.15.191:6803/114487575","heartbeat_back_addr":"172.21.15.191:6807/114487575","heartbeat_front_addr":"172.21.15.191:6805/114487575","state":["exists","up"]},{"osd":5,"uuid":"cb65d247-4341-436c-ab44-f5ca125784b2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":40,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6808","nonce":3295976400},{"type":"v1","addr":"172.21.15.191:6809","nonce":3295976400}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6810","nonce":3295976400},{"type":"v1","addr":"172.21.15.191:6811","nonce":3295976400}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6814","nonce":3295976400},{"type":"v1","addr":"172.21.15.191:6815","nonce":3295976400}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.191:6812","nonce":3295976400},{"type":"v1","addr":"172.21.15.191:6813","nonce":3295976400}]},"public_addr":"172.21.15.191:6809/3295976400","cluster_addr":"172.21.15.191:6811/3295976400","heartbeat_back_addr":"172.21.15.191:6815/3295976400","heartbeat_front_addr":"172.21.15.191:6813/3295976400","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:24:06.054619+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:24:32.716419+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:24:56.346727+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:25:23.026314+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:25:46.764456+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T01:26:12.559061+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.47:6800/2448999125":"2024-09-18T01:22:43.672545+0000","172.21.15.47:0/2533417255":"2024-09-18T01:22:43.672545+0000","172.21.15.47:0/4109960704":"2024-09-18T01:22:43.672545+0000","172.21.15.47:6801/2448999125":"2024-09-18T01:22:43.672545+0000","172.21.15.47:0/1362995682":"2024-09-18T01:22:18.841398+0000","172.21.15.47:0/3100574331":"2024-09-18T01:22:43.672545+0000","172.21.15.47:0/1353097895":"2024-09-18T01:22:18.841398+0000","172.21.15.47:0/3426624117":"2024-09-18T01:22:18.841398+0000","172.21.15.47:6801/2402957928":"2024-09-18T01:22:18.841398+0000","172.21.15.47:6800/2402957928":"2024-09-18T01:22:18.841398+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-17T01:26:24.794 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:24 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/1846317514' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T01:26:24.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:24 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/1846317514' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T01:26:24.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:24 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/1846317514' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T01:26:25.102 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-17T01:26:25.102 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-17T01:26:25.103 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-17T01:26:25.103 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-17T01:26:25.104 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-17T01:26:25.104 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-17T01:26:25.400 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:25.405 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:25.872 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:25 smithi047 ceph-mon[29638]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 80 KiB/s, 0 objects/s recovering 2024-09-17T01:26:25.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:25 smithi191 ceph-mon[33187]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 80 KiB/s, 0 objects/s recovering 2024-09-17T01:26:25.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:25 smithi160 ceph-mon[32760]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 80 KiB/s, 0 objects/s recovering 2024-09-17T01:26:27.118 INFO:teuthology.orchestra.run.smithi047.stdout:107374182415 2024-09-17T01:26:27.118 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-17T01:26:27.685 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:27.698 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:27.718 INFO:teuthology.orchestra.run.smithi047.stdout:34359738399 2024-09-17T01:26:27.719 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-17T01:26:27.733 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:27.815 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:27 smithi047 ceph-mon[29638]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-09-17T01:26:27.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:27 smithi191 ceph-mon[33187]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-09-17T01:26:27.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:27 smithi160 ceph-mon[32760]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 70 KiB/s, 0 objects/s recovering 2024-09-17T01:26:29.410 INFO:teuthology.orchestra.run.smithi047.stdout:77309411349 2024-09-17T01:26:29.411 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-17T01:26:29.651 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:29.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:29 smithi047 ceph-mon[29638]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T01:26:29.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:29 smithi191 ceph-mon[33187]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T01:26:29.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:29 smithi160 ceph-mon[32760]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T01:26:30.038 INFO:teuthology.orchestra.run.smithi047.stdout:137438953482 2024-09-17T01:26:30.038 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-17T01:26:30.263 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:30.263 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:30.450 INFO:teuthology.orchestra.run.smithi047.stdout:107374182415 2024-09-17T01:26:30.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:30 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/3708548406' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T01:26:30.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:30 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/3708548406' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T01:26:30.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:30 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/3708548406' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T01:26:31.188 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182415 got 107374182415 for osd.3 2024-09-17T01:26:31.188 DEBUG:teuthology.parallel:result is None 2024-09-17T01:26:31.733 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:31 smithi047 ceph-mon[29638]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-17T01:26:31.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:31 smithi191 ceph-mon[33187]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-17T01:26:31.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:31 smithi160 ceph-mon[32760]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-17T01:26:32.213 INFO:teuthology.orchestra.run.smithi047.stdout:34359738400 2024-09-17T01:26:32.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:32 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/2567245351' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T01:26:32.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:32 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/2567245351' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T01:26:32.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:32 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/2567245351' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T01:26:33.462 INFO:teuthology.orchestra.run.smithi047.stdout:55834574875 2024-09-17T01:26:33.462 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-17T01:26:33.479 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:33.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:33 smithi191 ceph-mon[33187]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:33.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:33 smithi160 ceph-mon[32760]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:33.920 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:33 smithi047 ceph-mon[29638]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:33.951 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738399 got 34359738400 for osd.0 2024-09-17T01:26:33.951 DEBUG:teuthology.parallel:result is None 2024-09-17T01:26:34.016 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:34.536 INFO:teuthology.orchestra.run.smithi047.stdout:171798691847 2024-09-17T01:26:34.536 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-17T01:26:35.214 INFO:teuthology.orchestra.run.smithi047.stdout:137438953484 2024-09-17T01:26:35.843 INFO:teuthology.orchestra.run.smithi047.stdout:77309411351 2024-09-17T01:26:35.844 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:35 smithi047 ceph-mon[29638]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:35.844 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:35 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/2562122957' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T01:26:35.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:35 smithi191 ceph-mon[33187]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:35.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:35 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/2562122957' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T01:26:35.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:35 smithi160 ceph-mon[32760]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:35.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:35 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/2562122957' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T01:26:36.117 INFO:tasks.cephadm.ceph_manager.ceph:need seq 137438953482 got 137438953484 for osd.4 2024-09-17T01:26:36.117 DEBUG:teuthology.parallel:result is None 2024-09-17T01:26:36.297 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:36.670 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:36 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/2520324179' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T01:26:36.699 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411349 got 77309411351 for osd.2 2024-09-17T01:26:36.699 DEBUG:teuthology.parallel:result is None 2024-09-17T01:26:36.758 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:36.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:36 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/2520324179' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T01:26:36.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:36 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/2520324179' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T01:26:37.507 INFO:teuthology.orchestra.run.smithi047.stdout:171798691848 2024-09-17T01:26:37.699 INFO:teuthology.orchestra.run.smithi047.stdout:55834574876 2024-09-17T01:26:37.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:37 smithi191 ceph-mon[33187]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:37.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:37 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/422002589' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T01:26:37.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:37 smithi160 ceph-mon[32760]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:37.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:37 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/422002589' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T01:26:37.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:37 smithi047 ceph-mon[29638]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:37.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:37 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/422002589' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T01:26:38.358 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574875 got 55834574876 for osd.1 2024-09-17T01:26:38.359 DEBUG:teuthology.parallel:result is None 2024-09-17T01:26:38.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:38 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/441555737' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T01:26:38.802 INFO:tasks.cephadm.ceph_manager.ceph:need seq 171798691847 got 171798691848 for osd.5 2024-09-17T01:26:38.803 DEBUG:teuthology.parallel:result is None 2024-09-17T01:26:38.803 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-17T01:26:38.803 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T01:26:38.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:38 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/441555737' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T01:26:38.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:38 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/441555737' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T01:26:39.055 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:39.693 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:26:39.694 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:39 smithi047 ceph-mon[29638]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:39.694 INFO:teuthology.orchestra.run.smithi047.stderr:dumped all 2024-09-17T01:26:39.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:39 smithi191 ceph-mon[33187]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:39.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:39 smithi160 ceph-mon[32760]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:40.404 INFO:teuthology.orchestra.run.smithi047.stdout:{"pg_ready":true,"pg_map":{"version":151,"stamp":"2024-09-17T01:26:37.717192+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":174616,"kb_used_data":4092,"kb_used_omap":9,"kb_used_meta":170358,"kb_avail":562296296,"statfs":{"total":575970213888,"available":575791407104,"internally_reserved":0,"allocated":4190208,"data_stored":2710596,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":174447264},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.001940"},"pg_stats":[{"pgid":"1.0","version":"22'137","reported_seq":261,"reported_epoch":44,"state":"active+clean","last_fresh":"2024-09-17T01:26:18.534463+0000","last_change":"2024-09-17T01:26:18.534463+0000","last_active":"2024-09-17T01:26:18.534463+0000","last_peered":"2024-09-17T01:26:18.534463+0000","last_clean":"2024-09-17T01:26:18.534463+0000","last_became_active":"2024-09-17T01:26:18.533992+0000","last_became_peered":"2024-09-17T01:26:18.533992+0000","last_unstale":"2024-09-17T01:26:18.534463+0000","last_undegraded":"2024-09-17T01:26:18.534463+0000","last_fullsized":"2024-09-17T01:26:18.534463+0000","mapping_epoch":43,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":44,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-17T01:24:58.549053+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T01:24:58.549053+0000","last_clean_scrub_stamp":"2024-09-17T01:24:58.549053+0000","objects_scrubbed":0,"log_size":137,"log_dups_size":0,"ondisk_log_size":137,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-18T10:02:41.851268+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":40,"seq":171798691848,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28004,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717148,"statfs":{"total":95995035648,"available":95966359552,"internally_reserved":0,"allocated":995328,"data_stored":746950,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":32,"seq":137438953484,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27428,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":401408,"data_stored":156582,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":25,"seq":107374182417,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":995328,"data_stored":746950,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411351,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":995328,"data_stored":746950,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574876,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31584,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713568,"statfs":{"total":95995035648,"available":95962693632,"internally_reserved":0,"allocated":401408,"data_stored":156582,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738401,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31584,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713568,"statfs":{"total":95995035648,"available":95962693632,"internally_reserved":0,"allocated":401408,"data_stored":156582,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-17T01:26:40.405 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T01:26:40.671 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:41.263 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:26:41.263 INFO:teuthology.orchestra.run.smithi047.stderr:dumped all 2024-09-17T01:26:41.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:41 smithi191 ceph-mon[33187]: from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:41.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:41 smithi191 ceph-mon[33187]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:41.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:41 smithi160 ceph-mon[32760]: from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:41.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:41 smithi160 ceph-mon[32760]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:41.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:41 smithi047 ceph-mon[29638]: from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:41.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:41 smithi047 ceph-mon[29638]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:41.969 INFO:teuthology.orchestra.run.smithi047.stdout:{"pg_ready":true,"pg_map":{"version":152,"stamp":"2024-09-17T01:26:39.717477+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":174616,"kb_used_data":4092,"kb_used_omap":9,"kb_used_meta":170358,"kb_avail":562296296,"statfs":{"total":575970213888,"available":575791407104,"internally_reserved":0,"allocated":4190208,"data_stored":2710596,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":174447264},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.001920"},"pg_stats":[{"pgid":"1.0","version":"22'137","reported_seq":261,"reported_epoch":44,"state":"active+clean","last_fresh":"2024-09-17T01:26:18.534463+0000","last_change":"2024-09-17T01:26:18.534463+0000","last_active":"2024-09-17T01:26:18.534463+0000","last_peered":"2024-09-17T01:26:18.534463+0000","last_clean":"2024-09-17T01:26:18.534463+0000","last_became_active":"2024-09-17T01:26:18.533992+0000","last_became_peered":"2024-09-17T01:26:18.533992+0000","last_unstale":"2024-09-17T01:26:18.534463+0000","last_undegraded":"2024-09-17T01:26:18.534463+0000","last_fullsized":"2024-09-17T01:26:18.534463+0000","mapping_epoch":43,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":44,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-17T01:24:58.549053+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T01:24:58.549053+0000","last_clean_scrub_stamp":"2024-09-17T01:24:58.549053+0000","objects_scrubbed":0,"log_size":137,"log_dups_size":0,"ondisk_log_size":137,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-18T10:02:41.851268+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":40,"seq":171798691848,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28004,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717148,"statfs":{"total":95995035648,"available":95966359552,"internally_reserved":0,"allocated":995328,"data_stored":746950,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":32,"seq":137438953485,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27428,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":401408,"data_stored":156582,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":25,"seq":107374182418,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":995328,"data_stored":746950,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411352,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":995328,"data_stored":746950,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574876,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31584,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713568,"statfs":{"total":95995035648,"available":95962693632,"internally_reserved":0,"allocated":401408,"data_stored":156582,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738402,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31584,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713568,"statfs":{"total":95995035648,"available":95962693632,"internally_reserved":0,"allocated":401408,"data_stored":156582,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-17T01:26:41.969 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-17T01:26:41.969 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-17T01:26:41.970 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-17T01:26:41.970 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-17T01:26:42.225 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:42.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:42 smithi047 ceph-mon[29638]: from='client.14460 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:42.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:42 smithi191 ceph-mon[33187]: from='client.14460 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:42.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:42 smithi160 ceph-mon[32760]: from='client.14460 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:42.891 INFO:teuthology.orchestra.run.smithi047.stdout: 2024-09-17T01:26:42.891 INFO:teuthology.orchestra.run.smithi047.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-17T01:26:43.620 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:43 smithi047 ceph-mon[29638]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:43.621 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:43 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/971112722' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T01:26:43.656 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-17T01:26:43.656 INFO:tasks.cephadm:Setup complete, yielding 2024-09-17T01:26:43.656 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T01:26:43.671 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi047.front.sepia.ceph.com 2024-09-17T01:26:43.671 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 -- bash -c 'set -ex 2024-09-17T01:26:43.672 DEBUG:teuthology.orchestra.run.smithi047:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-17T01:26:43.672 DEBUG:teuthology.orchestra.run.smithi047:> for host in $HOSTNAMES; do 2024-09-17T01:26:43.672 DEBUG:teuthology.orchestra.run.smithi047:> # find the hostname for "host.c" which will have no mgr 2024-09-17T01:26:43.672 DEBUG:teuthology.orchestra.run.smithi047:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-17T01:26:43.672 DEBUG:teuthology.orchestra.run.smithi047:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-17T01:26:43.672 DEBUG:teuthology.orchestra.run.smithi047:> HOST_C="${host}" 2024-09-17T01:26:43.672 DEBUG:teuthology.orchestra.run.smithi047:> fi 2024-09-17T01:26:43.672 DEBUG:teuthology.orchestra.run.smithi047:> done 2024-09-17T01:26:43.672 DEBUG:teuthology.orchestra.run.smithi047:> # One last thing to worry about before draining the host 2024-09-17T01:26:43.673 DEBUG:teuthology.orchestra.run.smithi047:> # is that the teuthology test tends to put the explicit 2024-09-17T01:26:43.673 DEBUG:teuthology.orchestra.run.smithi047:> # hostnames in the placement for the mon service. 2024-09-17T01:26:43.673 DEBUG:teuthology.orchestra.run.smithi047:> # We want to make sure we can drain without providing 2024-09-17T01:26:43.673 DEBUG:teuthology.orchestra.run.smithi047:> # --force and there is a check for the host being removed 2024-09-17T01:26:43.673 DEBUG:teuthology.orchestra.run.smithi047:> # being listed explicitly in the placements. Therefore, 2024-09-17T01:26:43.673 DEBUG:teuthology.orchestra.run.smithi047:> # we should remove it from the mon placement. 2024-09-17T01:26:43.673 DEBUG:teuthology.orchestra.run.smithi047:> ceph orch ls mon --export > mon.yaml 2024-09-17T01:26:43.673 DEBUG:teuthology.orchestra.run.smithi047:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-09-17T01:26:43.673 DEBUG:teuthology.orchestra.run.smithi047:> ceph orch apply -i mon_adjusted.yaml 2024-09-17T01:26:43.673 DEBUG:teuthology.orchestra.run.smithi047:> # now drain that host 2024-09-17T01:26:43.673 DEBUG:teuthology.orchestra.run.smithi047:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-17T01:26:43.673 DEBUG:teuthology.orchestra.run.smithi047:> # wait for drain to complete 2024-09-17T01:26:43.673 DEBUG:teuthology.orchestra.run.smithi047:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-17T01:26:43.673 DEBUG:teuthology.orchestra.run.smithi047:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-17T01:26:43.674 DEBUG:teuthology.orchestra.run.smithi047:> sleep 15 2024-09-17T01:26:43.674 DEBUG:teuthology.orchestra.run.smithi047:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-17T01:26:43.674 DEBUG:teuthology.orchestra.run.smithi047:> done 2024-09-17T01:26:43.674 DEBUG:teuthology.orchestra.run.smithi047:> # we want to check the ability to remove the host from 2024-09-17T01:26:43.674 DEBUG:teuthology.orchestra.run.smithi047:> # the CRUSH map, so we should first verify the host is in 2024-09-17T01:26:43.674 DEBUG:teuthology.orchestra.run.smithi047:> # the CRUSH map. 2024-09-17T01:26:43.674 DEBUG:teuthology.orchestra.run.smithi047:> ceph osd getcrushmap -o compiled-crushmap 2024-09-17T01:26:43.674 DEBUG:teuthology.orchestra.run.smithi047:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-17T01:26:43.674 DEBUG:teuthology.orchestra.run.smithi047:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-17T01:26:43.674 DEBUG:teuthology.orchestra.run.smithi047:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-17T01:26:43.674 DEBUG:teuthology.orchestra.run.smithi047:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-17T01:26:43.674 DEBUG:teuthology.orchestra.run.smithi047:> exit 1 2024-09-17T01:26:43.674 DEBUG:teuthology.orchestra.run.smithi047:> fi 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> # If the drain was successful, we should be able to remove the 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> # host without force with no issues. If there are still daemons 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> # we will get a response telling us to drain the host and a 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> # non-zero return code 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> sleep 30 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> ceph osd getcrushmap -o compiled-crushmap 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> exit 1 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> fi 2024-09-17T01:26:43.675 DEBUG:teuthology.orchestra.run.smithi047:> ' 2024-09-17T01:26:43.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:43 smithi191 ceph-mon[33187]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:43.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:43 smithi191 ceph-mon[33187]: from='client.? 172.21.15.47:0/971112722' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T01:26:43.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:43 smithi160 ceph-mon[32760]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:43.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:43 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/971112722' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T01:26:43.938 INFO:teuthology.orchestra.run.smithi047.stderr:Inferring config /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/mon.a/config 2024-09-17T01:26:44.423 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch host ls --format json 2024-09-17T01:26:44.423 INFO:teuthology.orchestra.run.smithi047.stderr:++ jq -r '.[] | .hostname' 2024-09-17T01:26:44.591 INFO:teuthology.orchestra.run.smithi047.stderr:+ HOSTNAMES='smithi047 2024-09-17T01:26:44.592 INFO:teuthology.orchestra.run.smithi047.stderr:smithi160 2024-09-17T01:26:44.592 INFO:teuthology.orchestra.run.smithi047.stderr:smithi191' 2024-09-17T01:26:44.592 INFO:teuthology.orchestra.run.smithi047.stderr:+ for host in $HOSTNAMES 2024-09-17T01:26:44.592 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch ps --hostname smithi047 --format json 2024-09-17T01:26:44.592 INFO:teuthology.orchestra.run.smithi047.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-17T01:26:44.875 INFO:teuthology.orchestra.run.smithi047.stderr:+ HAS_MGRS=true 2024-09-17T01:26:44.876 INFO:teuthology.orchestra.run.smithi047.stderr:+ '[' true == false ']' 2024-09-17T01:26:44.876 INFO:teuthology.orchestra.run.smithi047.stderr:+ for host in $HOSTNAMES 2024-09-17T01:26:44.876 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch ps --hostname smithi160 --format json 2024-09-17T01:26:44.876 INFO:teuthology.orchestra.run.smithi047.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-17T01:26:45.159 INFO:teuthology.orchestra.run.smithi047.stderr:+ HAS_MGRS=true 2024-09-17T01:26:45.159 INFO:teuthology.orchestra.run.smithi047.stderr:+ '[' true == false ']' 2024-09-17T01:26:45.159 INFO:teuthology.orchestra.run.smithi047.stderr:+ for host in $HOSTNAMES 2024-09-17T01:26:45.159 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch ps --hostname smithi191 --format json 2024-09-17T01:26:45.160 INFO:teuthology.orchestra.run.smithi047.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-17T01:26:45.440 INFO:teuthology.orchestra.run.smithi047.stderr:+ HAS_MGRS=false 2024-09-17T01:26:45.440 INFO:teuthology.orchestra.run.smithi047.stderr:+ '[' false == false ']' 2024-09-17T01:26:45.440 INFO:teuthology.orchestra.run.smithi047.stderr:+ HOST_C=smithi191 2024-09-17T01:26:45.440 INFO:teuthology.orchestra.run.smithi047.stderr:+ ceph orch ls mon --export 2024-09-17T01:26:45.722 INFO:teuthology.orchestra.run.smithi047.stderr:+ sed /smithi191/d mon.yaml 2024-09-17T01:26:45.723 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:45 smithi047 ceph-mon[29638]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:45.723 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:45 smithi047 ceph-mon[29638]: from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:45.723 INFO:teuthology.orchestra.run.smithi047.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-09-17T01:26:45.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:45 smithi191 ceph-mon[33187]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:45.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:45 smithi191 ceph-mon[33187]: from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:45.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:45 smithi160 ceph-mon[32760]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:45.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:45 smithi160 ceph-mon[32760]: from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:45.998 INFO:teuthology.orchestra.run.smithi047.stdout:Scheduled mon update... 2024-09-17T01:26:46.010 INFO:teuthology.orchestra.run.smithi047.stderr:+ ceph orch host drain smithi191 --zap-osd-devices 2024-09-17T01:26:46.293 INFO:teuthology.orchestra.run.smithi047.stdout:Scheduled to remove the following daemons from host 'smithi191' 2024-09-17T01:26:46.294 INFO:teuthology.orchestra.run.smithi047.stdout:type id 2024-09-17T01:26:46.294 INFO:teuthology.orchestra.run.smithi047.stdout:-------------------- --------------- 2024-09-17T01:26:46.294 INFO:teuthology.orchestra.run.smithi047.stdout:mon c 2024-09-17T01:26:46.294 INFO:teuthology.orchestra.run.smithi047.stdout:osd 4 2024-09-17T01:26:46.294 INFO:teuthology.orchestra.run.smithi047.stdout:osd 5 2024-09-17T01:26:46.309 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch ps --hostname smithi191 2024-09-17T01:26:46.597 INFO:teuthology.orchestra.run.smithi047.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T01:26:46.598 INFO:teuthology.orchestra.run.smithi047.stderr:mon.c smithi191 running (3m) 37s ago 3m 37.0M 2048M 19.1.1-330-gc2ddf972 ebb0615149de 589b8484556b 2024-09-17T01:26:46.598 INFO:teuthology.orchestra.run.smithi047.stderr:osd.4 smithi191 running (66s) 37s ago 65s 34.2M 10.3G 19.1.1-330-gc2ddf972 ebb0615149de 26ae2d26e1e0 2024-09-17T01:26:46.598 INFO:teuthology.orchestra.run.smithi047.stderr:osd.5 smithi191 running (40s) 37s ago 40s 12.1M 10.3G 19.1.1-330-gc2ddf972 ebb0615149de 4cc3d0628d9a ' 2024-09-17T01:26:46.598 INFO:teuthology.orchestra.run.smithi047.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T01:26:46.598 INFO:teuthology.orchestra.run.smithi047.stderr:mon.c smithi191 running (3m) 37s ago 3m 37.0M 2048M 19.1.1-330-gc2ddf972 ebb0615149de 589b8484556b 2024-09-17T01:26:46.598 INFO:teuthology.orchestra.run.smithi047.stderr:osd.4 smithi191 running (66s) 37s ago 65s 34.2M 10.3G 19.1.1-330-gc2ddf972 ebb0615149de 26ae2d26e1e0 2024-09-17T01:26:46.598 INFO:teuthology.orchestra.run.smithi047.stderr:osd.5 smithi191 running (40s) 37s ago 40s 12.1M 10.3G 19.1.1-330-gc2ddf972 ebb0615149de 4cc3d0628d9a ' '!=' 'No daemons reported' ']' 2024-09-17T01:26:46.598 INFO:teuthology.orchestra.run.smithi047.stderr:+ sleep 15 2024-09-17T01:26:46.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi047", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:46.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi160", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:46.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:46.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:26:46.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T01:26:46.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T01:26:46.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:26:46.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:26:46.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:46.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:46.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T01:26:46.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:46 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-17T01:26:46.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi047", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:46.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi160", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:46.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:46.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:26:46.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T01:26:46.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T01:26:46.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:26:46.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:26:46.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:46.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:46.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T01:26:46.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:46 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-17T01:26:46.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi047", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:46.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi160", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:46.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T01:26:46.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:26:46.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T01:26:46.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-17T01:26:46.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:26:46.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:26:46.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:46.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:46.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:46.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T01:26:46.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:46 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-17T01:26:47.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:26:47.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:47.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:26:47.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: Saving service mon spec with placement smithi047:172.21.15.47=a;smithi160:172.21.15.160=b;count:3 2024-09-17T01:26:47.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi191", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:26:47.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: Added label _no_schedule to host smithi191 2024-09-17T01:26:47.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: Added label _no_conf_keyring to host smithi191 2024-09-17T01:26:47.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: osd.4 crush weight is 0.0872955322265625 2024-09-17T01:26:47.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: osd.5 crush weight is 0.0872955322265625 2024-09-17T01:26:47.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: Removing smithi191:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:26:47.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: Removing smithi191:/etc/ceph/ceph.client.admin.keyring 2024-09-17T01:26:47.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: Removing smithi191:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T01:26:47.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:47.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:47.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T01:26:47.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:26:47.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-17T01:26:47.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: osdmap e45: 6 total, 6 up, 6 in 2024-09-17T01:26:47.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:47.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T01:26:47.881 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:47 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-17T01:26:47.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:26:47.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:47.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:26:47.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: Saving service mon spec with placement smithi047:172.21.15.47=a;smithi160:172.21.15.160=b;count:3 2024-09-17T01:26:47.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi191", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:26:47.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: Added label _no_schedule to host smithi191 2024-09-17T01:26:47.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: Added label _no_conf_keyring to host smithi191 2024-09-17T01:26:47.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: osd.4 crush weight is 0.0872955322265625 2024-09-17T01:26:47.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: osd.5 crush weight is 0.0872955322265625 2024-09-17T01:26:47.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: Removing smithi191:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:26:47.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: Removing smithi191:/etc/ceph/ceph.client.admin.keyring 2024-09-17T01:26:47.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: Removing smithi191:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T01:26:47.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:47.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:47.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T01:26:47.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:26:47.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-17T01:26:47.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: osdmap e45: 6 total, 6 up, 6 in 2024-09-17T01:26:47.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:47.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T01:26:47.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:47 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-17T01:26:47.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a[29634]: 2024-09-17T01:26:47.541+0000 7f38986a5640 -1 mon.a@0(leader).osd e45 definitely_dead 0 2024-09-17T01:26:47.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:26:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:26:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: Saving service mon spec with placement smithi047:172.21.15.47=a;smithi160:172.21.15.160=b;count:3 2024-09-17T01:26:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi191", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:26:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: Added label _no_schedule to host smithi191 2024-09-17T01:26:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: Added label _no_conf_keyring to host smithi191 2024-09-17T01:26:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: osd.4 crush weight is 0.0872955322265625 2024-09-17T01:26:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: osd.5 crush weight is 0.0872955322265625 2024-09-17T01:26:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: Removing smithi191:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:26:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: Removing smithi191:/etc/ceph/ceph.client.admin.keyring 2024-09-17T01:26:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: Removing smithi191:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T01:26:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:47.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:47.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-17T01:26:47.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:26:47.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-17T01:26:47.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: osdmap e45: 6 total, 6 up, 6 in 2024-09-17T01:26:47.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:47.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T01:26:47.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:47 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-17T01:26:48.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:48 smithi191 ceph-mon[33187]: osd.5 weight is now 0.0 2024-09-17T01:26:48.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:48 smithi191 ceph-mon[33187]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:48.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:48 smithi191 ceph-mon[33187]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T01:26:48.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:48 smithi191 ceph-mon[33187]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T01:26:48.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:48 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-17T01:26:48.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:48 smithi191 ceph-mon[33187]: osdmap e46: 6 total, 5 up, 6 in 2024-09-17T01:26:48.880 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:48 smithi191 systemd[1]: Stopping Ceph osd.4 for 181a7ed8-7493-11ef-bceb-c7b262605968... 2024-09-17T01:26:48.880 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:48 smithi191 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4[37389]: 2024-09-17T01:26:48.747+0000 7f230b4ab640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.4 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-17T01:26:48.880 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:48 smithi191 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4[37389]: 2024-09-17T01:26:48.747+0000 7f230b4ab640 -1 osd.4 45 *** Got signal Terminated *** 2024-09-17T01:26:48.880 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:48 smithi191 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4[37389]: 2024-09-17T01:26:48.747+0000 7f230b4ab640 -1 osd.4 45 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T01:26:48.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:48 smithi160 ceph-mon[32760]: osd.5 weight is now 0.0 2024-09-17T01:26:48.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:48 smithi160 ceph-mon[32760]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:48.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:48 smithi160 ceph-mon[32760]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T01:26:48.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:48 smithi160 ceph-mon[32760]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T01:26:48.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:48 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-17T01:26:48.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:48 smithi160 ceph-mon[32760]: osdmap e46: 6 total, 5 up, 6 in 2024-09-17T01:26:48.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:48 smithi047 ceph-mon[29638]: osd.5 weight is now 0.0 2024-09-17T01:26:48.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:48 smithi047 ceph-mon[29638]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:48.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:48 smithi047 ceph-mon[29638]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-17T01:26:48.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:48 smithi047 ceph-mon[29638]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T01:26:48.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:48 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-17T01:26:48.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:48 smithi047 ceph-mon[29638]: osdmap e46: 6 total, 5 up, 6 in 2024-09-17T01:26:49.545 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:49 smithi191 podman[47260]: 2024-09-17 01:26:49.269160938 +0000 UTC m=+0.618652147 container died 26ae2d26e1e00c649e9520eb5864278be81f0e27ce8ea6989b5e3dac4f0482f4 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, ceph=True, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, GIT_CLEAN=True, RELEASE=squid-c2ddf97, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux ) 2024-09-17T01:26:49.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:49 smithi191 ceph-mon[33187]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:49.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:49 smithi191 ceph-mon[33187]: osd.4 now down 2024-09-17T01:26:49.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:49 smithi191 ceph-mon[33187]: Removing daemon osd.4 from smithi191 -- ports [] 2024-09-17T01:26:49.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:49 smithi191 ceph-mon[33187]: osdmap e47: 6 total, 5 up, 6 in 2024-09-17T01:26:49.880 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:49 smithi191 podman[47260]: 2024-09-17 01:26:49.722856983 +0000 UTC m=+1.072348231 container cleanup 26ae2d26e1e00c649e9520eb5864278be81f0e27ce8ea6989b5e3dac4f0482f4 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, RELEASE=squid-c2ddf97, CEPH_POINT_RELEASE=) 2024-09-17T01:26:49.880 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:49 smithi191 bash[47260]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4 2024-09-17T01:26:49.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:49 smithi160 ceph-mon[32760]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:49.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:49 smithi160 ceph-mon[32760]: osd.4 now down 2024-09-17T01:26:49.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:49 smithi160 ceph-mon[32760]: Removing daemon osd.4 from smithi191 -- ports [] 2024-09-17T01:26:49.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:49 smithi160 ceph-mon[32760]: osdmap e47: 6 total, 5 up, 6 in 2024-09-17T01:26:49.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:49 smithi047 ceph-mon[29638]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:49.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:49 smithi047 ceph-mon[29638]: osd.4 now down 2024-09-17T01:26:49.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:49 smithi047 ceph-mon[29638]: Removing daemon osd.4 from smithi191 -- ports [] 2024-09-17T01:26:49.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:49 smithi047 ceph-mon[29638]: osdmap e47: 6 total, 5 up, 6 in 2024-09-17T01:26:50.335 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:50 smithi191 podman[47275]: 2024-09-17 01:26:50.007734273 +0000 UTC m=+0.732176267 container remove 26ae2d26e1e00c649e9520eb5864278be81f0e27ce8ea6989b5e3dac4f0482f4 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, RELEASE=squid-c2ddf97, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T01:26:50.630 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:50 smithi191 podman[47364]: 2024-09-17 01:26:50.240292473 +0000 UTC m=+0.016272166 image pull ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3 2024-09-17T01:26:50.630 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:50 smithi191 podman[47364]: 2024-09-17 01:26:50.350145792 +0000 UTC m=+0.126125522 container create f72d219a3a66456aef5b044ef6851c59eeeb8df00b5618e8eae4554ff75eb31d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4-deactivate, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, ceph=True, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, RELEASE=squid-c2ddf97, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T01:26:50.630 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:50 smithi191 podman[47364]: 2024-09-17 01:26:50.577653977 +0000 UTC m=+0.353633666 container init f72d219a3a66456aef5b044ef6851c59eeeb8df00b5618e8eae4554ff75eb31d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4-deactivate, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, ceph=True, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, org.label-schema.vendor=CentOS, RELEASE=squid-c2ddf97) 2024-09-17T01:26:50.630 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:50 smithi191 podman[47364]: 2024-09-17 01:26:50.580897789 +0000 UTC m=+0.356877478 container start f72d219a3a66456aef5b044ef6851c59eeeb8df00b5618e8eae4554ff75eb31d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, RELEASE=squid-c2ddf97, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=) 2024-09-17T01:26:51.129 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:50 smithi191 podman[47364]: 2024-09-17 01:26:50.635838102 +0000 UTC m=+0.411817807 container attach f72d219a3a66456aef5b044ef6851c59eeeb8df00b5618e8eae4554ff75eb31d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4-deactivate, GIT_CLEAN=True, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, org.label-schema.vendor=CentOS, RELEASE=squid-c2ddf97, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T01:26:51.130 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:50 smithi191 podman[47364]: 2024-09-17 01:26:50.780001315 +0000 UTC m=+0.555980999 container died f72d219a3a66456aef5b044ef6851c59eeeb8df00b5618e8eae4554ff75eb31d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, RELEASE=squid-c2ddf97, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T01:26:51.602 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:51 smithi191 ceph-mon[33187]: pgmap v160: 1 pgs: 1 remapped+peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:51.602 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:51 smithi191 ceph-mon[33187]: osdmap e48: 6 total, 5 up, 6 in 2024-09-17T01:26:51.602 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:51 smithi191 podman[47387]: 2024-09-17 01:26:51.314875319 +0000 UTC m=+0.528975053 container remove f72d219a3a66456aef5b044ef6851c59eeeb8df00b5618e8eae4554ff75eb31d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-4-deactivate, io.buildah.version=1.37.2, GIT_CLEAN=True, ceph=True, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, RELEASE=squid-c2ddf97, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T01:26:51.602 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:51 smithi191 systemd[1]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.4.service: Deactivated successfully. 2024-09-17T01:26:51.602 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:51 smithi191 systemd[1]: Stopped Ceph osd.4 for 181a7ed8-7493-11ef-bceb-c7b262605968. 2024-09-17T01:26:51.602 INFO:journalctl@ceph.osd.4.smithi191.stdout:Sep 17 01:26:51 smithi191 systemd[1]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.4.service: Consumed 1.558s CPU time. 2024-09-17T01:26:51.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:51 smithi160 ceph-mon[32760]: pgmap v160: 1 pgs: 1 remapped+peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:51.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:51 smithi160 ceph-mon[32760]: osdmap e48: 6 total, 5 up, 6 in 2024-09-17T01:26:51.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:51 smithi047 ceph-mon[29638]: pgmap v160: 1 pgs: 1 remapped+peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-09-17T01:26:51.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:51 smithi047 ceph-mon[29638]: osdmap e48: 6 total, 5 up, 6 in 2024-09-17T01:26:52.591 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:52 smithi191 ceph-mon[33187]: Removing key for osd.4 2024-09-17T01:26:52.591 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:52 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-17T01:26:52.592 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:52 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-17T01:26:52.592 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:52 smithi191 ceph-mon[33187]: Successfully removed osd.4 on smithi191 2024-09-17T01:26:52.592 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:52 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T01:26:52.592 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:52 smithi191 ceph-mon[33187]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T01:26:52.592 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:52 smithi191 ceph-mon[33187]: Cluster is now healthy 2024-09-17T01:26:52.593 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:52 smithi191 ceph-mon[33187]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-17T01:26:52.593 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:52 smithi191 ceph-mon[33187]: osdmap e49: 5 total, 5 up, 5 in 2024-09-17T01:26:52.593 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:52 smithi191 ceph-mon[33187]: Successfully purged osd.4 on smithi191 2024-09-17T01:26:52.593 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:52 smithi191 ceph-mon[33187]: Zapping devices for osd.4 on smithi191 2024-09-17T01:26:52.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:52 smithi160 ceph-mon[32760]: Removing key for osd.4 2024-09-17T01:26:52.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:52 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-17T01:26:52.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:52 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-17T01:26:52.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:52 smithi160 ceph-mon[32760]: Successfully removed osd.4 on smithi191 2024-09-17T01:26:52.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:52 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T01:26:52.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:52 smithi160 ceph-mon[32760]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T01:26:52.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:52 smithi160 ceph-mon[32760]: Cluster is now healthy 2024-09-17T01:26:52.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:52 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-17T01:26:52.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:52 smithi160 ceph-mon[32760]: osdmap e49: 5 total, 5 up, 5 in 2024-09-17T01:26:52.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:52 smithi160 ceph-mon[32760]: Successfully purged osd.4 on smithi191 2024-09-17T01:26:52.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:52 smithi160 ceph-mon[32760]: Zapping devices for osd.4 on smithi191 2024-09-17T01:26:52.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:52 smithi047 ceph-mon[29638]: Removing key for osd.4 2024-09-17T01:26:52.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:52 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-17T01:26:52.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:52 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-17T01:26:52.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:52 smithi047 ceph-mon[29638]: Successfully removed osd.4 on smithi191 2024-09-17T01:26:52.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:52 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T01:26:52.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:52 smithi047 ceph-mon[29638]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T01:26:52.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:52 smithi047 ceph-mon[29638]: Cluster is now healthy 2024-09-17T01:26:52.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:52 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-17T01:26:52.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:52 smithi047 ceph-mon[29638]: osdmap e49: 5 total, 5 up, 5 in 2024-09-17T01:26:52.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:52 smithi047 ceph-mon[29638]: Successfully purged osd.4 on smithi191 2024-09-17T01:26:52.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:52 smithi047 ceph-mon[29638]: Zapping devices for osd.4 on smithi191 2024-09-17T01:26:53.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:53 smithi191 ceph-mon[33187]: pgmap v163: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:53.880 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:53 smithi191 ceph-mon[33187]: osdmap e50: 5 total, 5 up, 5 in 2024-09-17T01:26:53.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:53 smithi160 ceph-mon[32760]: pgmap v163: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:53.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:53 smithi160 ceph-mon[32760]: osdmap e50: 5 total, 5 up, 5 in 2024-09-17T01:26:53.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:53 smithi047 ceph-mon[29638]: pgmap v163: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:53.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:53 smithi047 ceph-mon[29638]: osdmap e50: 5 total, 5 up, 5 in 2024-09-17T01:26:54.713 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:54 smithi191 podman[47738]: 2024-09-17 01:26:54.449068169 +0000 UTC m=+0.018550778 container died 589b8484556b4b7d3f708bc4cb666fd388caedd7ee69c6007be5bbe75d28b8de (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-c, RELEASE=squid-c2ddf97, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=) 2024-09-17T01:26:55.379 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:55 smithi191 podman[47738]: 2024-09-17 01:26:55.007837298 +0000 UTC m=+0.577319943 container remove 589b8484556b4b7d3f708bc4cb666fd388caedd7ee69c6007be5bbe75d28b8de (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-c, RELEASE=squid-c2ddf97, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T01:26:55.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:55 smithi191 systemd[1]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.c.service: Deactivated successfully. 2024-09-17T01:26:55.879 INFO:journalctl@ceph.mon.c.smithi191.stdout:Sep 17 01:26:55 smithi191 systemd[1]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.c.service: Consumed 3.051s CPU time. 2024-09-17T01:26:56.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: pgmap v166: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:56.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: Successfully zapped devices for osd.4 on smithi191 2024-09-17T01:26:56.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:56.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-17T01:26:56.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: Removing monitor c from monmap... 2024-09-17T01:26:56.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-17T01:26:56.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:26:56.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:26:56.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: mon.b calling monitor election 2024-09-17T01:26:56.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: mon.a calling monitor election 2024-09-17T01:26:56.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-17T01:26:56.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: monmap epoch 4 2024-09-17T01:26:56.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: fsid 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:26:56.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: last_changed 2024-09-17T01:26:54.412539+0000 2024-09-17T01:26:56.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: created 2024-09-17T01:21:45.503842+0000 2024-09-17T01:26:56.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: min_mon_release 19 (squid) 2024-09-17T01:26:56.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: election_strategy: 1 2024-09-17T01:26:56.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-09-17T01:26:56.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: 1: [v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0] mon.b 2024-09-17T01:26:56.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: fsmap 2024-09-17T01:26:56.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: osdmap e51: 5 total, 5 up, 5 in 2024-09-17T01:26:56.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: mgrmap e15: a(active, since 4m), standbys: b 2024-09-17T01:26:56.886 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:56 smithi160 ceph-mon[32760]: overall HEALTH_OK 2024-09-17T01:26:56.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: pgmap v166: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:26:56.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: Successfully zapped devices for osd.4 on smithi191 2024-09-17T01:26:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:26:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-17T01:26:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: Removing monitor c from monmap... 2024-09-17T01:26:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-17T01:26:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-17T01:26:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-17T01:26:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: mon.b calling monitor election 2024-09-17T01:26:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: mon.a calling monitor election 2024-09-17T01:26:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-17T01:26:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: monmap epoch 4 2024-09-17T01:26:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: fsid 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:26:56.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: last_changed 2024-09-17T01:26:54.412539+0000 2024-09-17T01:26:56.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: created 2024-09-17T01:21:45.503842+0000 2024-09-17T01:26:56.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: min_mon_release 19 (squid) 2024-09-17T01:26:56.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: election_strategy: 1 2024-09-17T01:26:56.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: 0: [v2:172.21.15.47:3300/0,v1:172.21.15.47:6789/0] mon.a 2024-09-17T01:26:56.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: 1: [v2:172.21.15.160:3300/0,v1:172.21.15.160:6789/0] mon.b 2024-09-17T01:26:56.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: fsmap 2024-09-17T01:26:56.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: osdmap e51: 5 total, 5 up, 5 in 2024-09-17T01:26:56.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: mgrmap e15: a(active, since 4m), standbys: b 2024-09-17T01:26:56.925 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:56 smithi047 ceph-mon[29638]: overall HEALTH_OK 2024-09-17T01:26:57.785 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:57 smithi160 ceph-mon[32760]: pgmap v167: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 105 KiB/s, 0 objects/s recovering 2024-09-17T01:26:57.785 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:57 smithi160 ceph-mon[32760]: Removing daemon mon.c from smithi191 -- ports [] 2024-09-17T01:26:57.785 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:57 smithi160 ceph-mon[32760]: osdmap e52: 5 total, 5 up, 5 in 2024-09-17T01:26:57.786 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:57 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:57.786 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:57 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:57.786 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:57 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:26:57.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:57 smithi047 ceph-mon[29638]: pgmap v167: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 105 KiB/s, 0 objects/s recovering 2024-09-17T01:26:57.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:57 smithi047 ceph-mon[29638]: Removing daemon mon.c from smithi191 -- ports [] 2024-09-17T01:26:57.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:57 smithi047 ceph-mon[29638]: osdmap e52: 5 total, 5 up, 5 in 2024-09-17T01:26:57.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:57.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:57.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:57 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:26:58.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:58 smithi160 ceph-mon[32760]: osdmap e53: 5 total, 5 up, 5 in 2024-09-17T01:26:58.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:58 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:58.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:58 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:58.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:58 smithi047 ceph-mon[29638]: osdmap e53: 5 total, 5 up, 5 in 2024-09-17T01:26:58.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:58 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:58.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:58 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:59.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:59 smithi160 ceph-mon[32760]: pgmap v170: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 112 KiB/s, 0 objects/s recovering 2024-09-17T01:26:59.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:26:59 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:26:59.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:59 smithi047 ceph-mon[29638]: pgmap v170: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 112 KiB/s, 0 objects/s recovering 2024-09-17T01:26:59.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:26:59 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:01.599 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch ps --hostname smithi191 2024-09-17T01:27:01.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a[29634]: 2024-09-17T01:27:01.376+0000 7f38986a5640 -1 mon.a@0(leader).osd e53 definitely_dead 0 2024-09-17T01:27:01.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-mon[29638]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 94 KiB/s, 0 objects/s recovering 2024-09-17T01:27:01.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:01.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:01.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:01.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:27:01.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:01.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:01.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:01.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:01.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:27:01.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:27:01.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:27:01.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T01:27:01.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:01 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-17T01:27:01.882 INFO:teuthology.orchestra.run.smithi047.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T01:27:01.883 INFO:teuthology.orchestra.run.smithi047.stderr:osd.5 smithi191 running (56s) 3s ago 55s 44.2M 10.3G 19.1.1-330-gc2ddf972 ebb0615149de 4cc3d0628d9a ' 2024-09-17T01:27:01.883 INFO:teuthology.orchestra.run.smithi047.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T01:27:01.883 INFO:teuthology.orchestra.run.smithi047.stderr:osd.5 smithi191 running (56s) 3s ago 55s 44.2M 10.3G 19.1.1-330-gc2ddf972 ebb0615149de 4cc3d0628d9a ' '!=' 'No daemons reported' ']' 2024-09-17T01:27:01.883 INFO:teuthology.orchestra.run.smithi047.stderr:+ sleep 15 2024-09-17T01:27:01.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:01 smithi160 ceph-mon[32760]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 94 KiB/s, 0 objects/s recovering 2024-09-17T01:27:01.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:01 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:01.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:01 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:01.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:01 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:01.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:01 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:27:01.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:01 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:01.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:01 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:01.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:01 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:01.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:01 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:01.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:01 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:27:01.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:01 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:27:01.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:01 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:27:01.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:01 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T01:27:01.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:01 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-17T01:27:02.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:02 smithi160 ceph-mon[32760]: Detected new or changed devices on smithi191 2024-09-17T01:27:02.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:02 smithi160 ceph-mon[32760]: Updating smithi047:/etc/ceph/ceph.conf 2024-09-17T01:27:02.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:02 smithi160 ceph-mon[32760]: Updating smithi160:/etc/ceph/ceph.conf 2024-09-17T01:27:02.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:02 smithi160 ceph-mon[32760]: Updating smithi047:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:27:02.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:02 smithi160 ceph-mon[32760]: Updating smithi160:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:27:02.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:02 smithi160 ceph-mon[32760]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:27:02.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:02 smithi160 ceph-mon[32760]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:27:02.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:02 smithi160 ceph-mon[32760]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:27:02.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:02 smithi160 ceph-mon[32760]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T01:27:02.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:02 smithi160 ceph-mon[32760]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T01:27:02.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:02 smithi160 ceph-mon[32760]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-17T01:27:02.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:02 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-17T01:27:02.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:02 smithi160 ceph-mon[32760]: osdmap e54: 5 total, 4 up, 5 in 2024-09-17T01:27:02.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:02 smithi047 ceph-mon[29638]: Detected new or changed devices on smithi191 2024-09-17T01:27:02.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:02 smithi047 ceph-mon[29638]: Updating smithi047:/etc/ceph/ceph.conf 2024-09-17T01:27:02.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:02 smithi047 ceph-mon[29638]: Updating smithi160:/etc/ceph/ceph.conf 2024-09-17T01:27:02.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:02 smithi047 ceph-mon[29638]: Updating smithi047:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:27:02.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:02 smithi047 ceph-mon[29638]: Updating smithi160:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T01:27:02.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:02 smithi047 ceph-mon[29638]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:27:02.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:02 smithi047 ceph-mon[29638]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:27:02.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:02 smithi047 ceph-mon[29638]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-17T01:27:02.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:02 smithi047 ceph-mon[29638]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-17T01:27:02.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:02 smithi047 ceph-mon[29638]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-17T01:27:02.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:02 smithi047 ceph-mon[29638]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-17T01:27:02.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:02 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-17T01:27:02.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:02 smithi047 ceph-mon[29638]: osdmap e54: 5 total, 4 up, 5 in 2024-09-17T01:27:03.129 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:02 smithi191 systemd[1]: Stopping Ceph osd.5 for 181a7ed8-7493-11ef-bceb-c7b262605968... 2024-09-17T01:27:03.129 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:02 smithi191 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5[43287]: 2024-09-17T01:27:02.877+0000 7f1687f43640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.5 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-17T01:27:03.129 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:02 smithi191 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5[43287]: 2024-09-17T01:27:02.877+0000 7f1687f43640 -1 osd.5 53 *** Got signal Terminated *** 2024-09-17T01:27:03.129 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:02 smithi191 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5[43287]: 2024-09-17T01:27:02.877+0000 7f1687f43640 -1 osd.5 53 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T01:27:03.691 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:03 smithi191 podman[50520]: 2024-09-17 01:27:03.397862966 +0000 UTC m=+0.608463414 container died 4cc3d0628d9ab48ff0c70fb62ef22d9b869cadc553da546fe54ff36da34dbee6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_CLEAN=True, io.buildah.version=1.37.2, ceph=True, RELEASE=squid-c2ddf97, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T01:27:03.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:03 smithi160 ceph-mon[32760]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-17T01:27:03.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:03 smithi160 ceph-mon[32760]: from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:27:03.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:03 smithi160 ceph-mon[32760]: osd.5 now down 2024-09-17T01:27:03.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:03 smithi160 ceph-mon[32760]: Removing daemon osd.5 from smithi191 -- ports [] 2024-09-17T01:27:03.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:03 smithi047 ceph-mon[29638]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-17T01:27:03.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:03 smithi047 ceph-mon[29638]: from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:27:03.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:03 smithi047 ceph-mon[29638]: osd.5 now down 2024-09-17T01:27:03.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:03 smithi047 ceph-mon[29638]: Removing daemon osd.5 from smithi191 -- ports [] 2024-09-17T01:27:04.033 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:03 smithi191 podman[50520]: 2024-09-17 01:27:03.785096831 +0000 UTC m=+0.995697276 container cleanup 4cc3d0628d9ab48ff0c70fb62ef22d9b869cadc553da546fe54ff36da34dbee6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, RELEASE=squid-c2ddf97, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, ceph=True, org.label-schema.license=GPLv2) 2024-09-17T01:27:04.033 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:03 smithi191 bash[50520]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5 2024-09-17T01:27:04.334 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:04 smithi191 podman[50538]: 2024-09-17 01:27:04.036135829 +0000 UTC m=+0.628964209 container remove 4cc3d0628d9ab48ff0c70fb62ef22d9b869cadc553da546fe54ff36da34dbee6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, RELEASE=squid-c2ddf97, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True) 2024-09-17T01:27:04.587 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:04 smithi191 podman[50624]: 2024-09-17 01:27:04.336974419 +0000 UTC m=+0.110230829 container create 6d5fb0306ea85c83869b9cc16f4e563eabfe9d1bb8c6ecff4f4146615fda05ba (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, RELEASE=squid-c2ddf97, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.build-date=20240731) 2024-09-17T01:27:04.587 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:04 smithi191 podman[50624]: 2024-09-17 01:27:04.242432527 +0000 UTC m=+0.015688944 image pull ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3 2024-09-17T01:27:04.587 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:04 smithi191 podman[50624]: 2024-09-17 01:27:04.531313191 +0000 UTC m=+0.304569617 container init 6d5fb0306ea85c83869b9cc16f4e563eabfe9d1bb8c6ecff4f4146615fda05ba (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5-deactivate, GIT_CLEAN=True, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, RELEASE=squid-c2ddf97, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, ceph=True) 2024-09-17T01:27:04.587 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:04 smithi191 podman[50624]: 2024-09-17 01:27:04.534577212 +0000 UTC m=+0.307833632 container start 6d5fb0306ea85c83869b9cc16f4e563eabfe9d1bb8c6ecff4f4146615fda05ba (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5-deactivate, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, io.buildah.version=1.37.2, GIT_CLEAN=True, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, RELEASE=squid-c2ddf97, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731) 2024-09-17T01:27:04.587 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:04 smithi191 podman[50624]: 2024-09-17 01:27:04.589537339 +0000 UTC m=+0.362793765 container attach 6d5fb0306ea85c83869b9cc16f4e563eabfe9d1bb8c6ecff4f4146615fda05ba (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=squid-c2ddf97, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731) 2024-09-17T01:27:04.879 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:04 smithi191 podman[50624]: 2024-09-17 01:27:04.716982667 +0000 UTC m=+0.490239079 container died 6d5fb0306ea85c83869b9cc16f4e563eabfe9d1bb8c6ecff4f4146615fda05ba (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5-deactivate, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=squid-c2ddf97, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T01:27:05.301 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:05 smithi191 podman[50647]: 2024-09-17 01:27:05.284126423 +0000 UTC m=+0.561111489 container remove 6d5fb0306ea85c83869b9cc16f4e563eabfe9d1bb8c6ecff4f4146615fda05ba (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-5-deactivate, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=squid-c2ddf97, GIT_CLEAN=True, GIT_BRANCH=HEAD, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T01:27:05.629 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:05 smithi191 systemd[1]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.5.service: Deactivated successfully. 2024-09-17T01:27:05.629 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:05 smithi191 systemd[1]: Stopped Ceph osd.5 for 181a7ed8-7493-11ef-bceb-c7b262605968. 2024-09-17T01:27:05.629 INFO:journalctl@ceph.osd.5.smithi191.stdout:Sep 17 01:27:05 smithi191 systemd[1]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.5.service: Consumed 1.756s CPU time. 2024-09-17T01:27:05.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:05 smithi160 ceph-mon[32760]: pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:27:05.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:05 smithi047 ceph-mon[29638]: pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-17T01:27:06.825 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:06 smithi047 ceph-mon[29638]: Removing key for osd.5 2024-09-17T01:27:06.838 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-17T01:27:06.838 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-17T01:27:06.838 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:06 smithi047 ceph-mon[29638]: Successfully removed osd.5 on smithi191 2024-09-17T01:27:06.838 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T01:27:06.838 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:06 smithi047 ceph-mon[29638]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T01:27:06.838 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:06 smithi047 ceph-mon[29638]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-17T01:27:06.838 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:06 smithi047 ceph-mon[29638]: Cluster is now healthy 2024-09-17T01:27:06.839 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:06 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-17T01:27:06.839 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:06 smithi047 ceph-mon[29638]: osdmap e55: 4 total, 4 up, 4 in 2024-09-17T01:27:06.839 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:06 smithi047 ceph-mon[29638]: Successfully purged osd.5 on smithi191 2024-09-17T01:27:06.839 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:06 smithi047 ceph-mon[29638]: Zapping devices for osd.5 on smithi191 2024-09-17T01:27:06.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:06 smithi160 ceph-mon[32760]: Removing key for osd.5 2024-09-17T01:27:06.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:06 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-17T01:27:06.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:06 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-17T01:27:06.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:06 smithi160 ceph-mon[32760]: Successfully removed osd.5 on smithi191 2024-09-17T01:27:06.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:06 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T01:27:06.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:06 smithi160 ceph-mon[32760]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-17T01:27:06.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:06 smithi160 ceph-mon[32760]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-17T01:27:06.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:06 smithi160 ceph-mon[32760]: Cluster is now healthy 2024-09-17T01:27:06.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:06 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-17T01:27:06.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:06 smithi160 ceph-mon[32760]: osdmap e55: 4 total, 4 up, 4 in 2024-09-17T01:27:06.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:06 smithi160 ceph-mon[32760]: Successfully purged osd.5 on smithi191 2024-09-17T01:27:06.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:06 smithi160 ceph-mon[32760]: Zapping devices for osd.5 on smithi191 2024-09-17T01:27:07.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:07 smithi160 ceph-mon[32760]: pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:07.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:07 smithi047 ceph-mon[29638]: pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:09.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:09 smithi047 ceph-mon[29638]: pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:09.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:09 smithi047 ceph-mon[29638]: Successfully zapped devices for osd.5 on smithi191 2024-09-17T01:27:09.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:09.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:09 smithi047 ceph-mon[29638]: Reconfiguring mon.a (monmap changed)... 2024-09-17T01:27:09.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:27:09.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T01:27:09.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:09 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:09.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:09 smithi047 ceph-mon[29638]: Reconfiguring daemon mon.a on smithi047 2024-09-17T01:27:09.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:09 smithi160 ceph-mon[32760]: pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:09.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:09 smithi160 ceph-mon[32760]: Successfully zapped devices for osd.5 on smithi191 2024-09-17T01:27:09.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:09.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:09 smithi160 ceph-mon[32760]: Reconfiguring mon.a (monmap changed)... 2024-09-17T01:27:09.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:27:09.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T01:27:09.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:09 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:09.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:09 smithi160 ceph-mon[32760]: Reconfiguring daemon mon.a on smithi047 2024-09-17T01:27:11.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:11 smithi160 ceph-mon[32760]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:11.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:11 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:11.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:11 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:11.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:11 smithi160 ceph-mon[32760]: Reconfiguring mgr.a (monmap changed)... 2024-09-17T01:27:11.385 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:11 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T01:27:11.385 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:11 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T01:27:11.385 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:11 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:11.385 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:11 smithi160 ceph-mon[32760]: Reconfiguring daemon mgr.a on smithi047 2024-09-17T01:27:11.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:11 smithi047 ceph-mon[29638]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:11.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:11 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:11.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:11 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:11.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:11 smithi047 ceph-mon[29638]: Reconfiguring mgr.a (monmap changed)... 2024-09-17T01:27:11.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:11 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T01:27:11.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:11 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T01:27:11.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:11 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:11.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:11 smithi047 ceph-mon[29638]: Reconfiguring daemon mgr.a on smithi047 2024-09-17T01:27:12.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:12 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:12.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:12 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:12.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:12 smithi160 ceph-mon[32760]: Reconfiguring osd.0 (monmap changed)... 2024-09-17T01:27:12.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:12 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T01:27:12.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:12 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:12.885 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:12 smithi160 ceph-mon[32760]: Reconfiguring daemon osd.0 on smithi047 2024-09-17T01:27:12.917 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:12 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:12.917 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:12 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:12.917 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:12 smithi047 ceph-mon[29638]: Reconfiguring osd.0 (monmap changed)... 2024-09-17T01:27:12.917 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:12 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T01:27:12.917 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:12 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:12.918 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:12 smithi047 ceph-mon[29638]: Reconfiguring daemon osd.0 on smithi047 2024-09-17T01:27:13.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:13 smithi047 ceph-mon[29638]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:13.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:13.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:13.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T01:27:13.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:13 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:13.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:13 smithi160 ceph-mon[32760]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:13.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:13 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:13.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:13 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:13.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:13 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T01:27:13.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:13 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:14 smithi160 ceph-mon[32760]: Reconfiguring osd.1 (monmap changed)... 2024-09-17T01:27:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:14 smithi160 ceph-mon[32760]: Reconfiguring daemon osd.1 on smithi047 2024-09-17T01:27:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:14 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:14 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:14 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:27:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:14 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T01:27:14.884 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:14 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:14.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:14 smithi047 ceph-mon[29638]: Reconfiguring osd.1 (monmap changed)... 2024-09-17T01:27:14.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:14 smithi047 ceph-mon[29638]: Reconfiguring daemon osd.1 on smithi047 2024-09-17T01:27:14.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:14 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:14.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:14 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:14.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:14 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T01:27:14.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:14 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T01:27:14.924 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:14 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:15.873 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:15 smithi160 ceph-mon[32760]: pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:15.873 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:15 smithi160 ceph-mon[32760]: Reconfiguring mon.b (monmap changed)... 2024-09-17T01:27:15.873 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:15 smithi160 ceph-mon[32760]: Reconfiguring daemon mon.b on smithi160 2024-09-17T01:27:15.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:15 smithi047 ceph-mon[29638]: pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:15.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:15 smithi047 ceph-mon[29638]: Reconfiguring mon.b (monmap changed)... 2024-09-17T01:27:15.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:15 smithi047 ceph-mon[29638]: Reconfiguring daemon mon.b on smithi160 2024-09-17T01:27:16.885 INFO:teuthology.orchestra.run.smithi047.stderr:++ ceph orch ps --hostname smithi191 2024-09-17T01:27:17.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:16 smithi047 ceph-mon[29638]: pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:17.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:16 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:17.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:16 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:17.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:16 smithi047 ceph-mon[29638]: Reconfiguring mgr.b (monmap changed)... 2024-09-17T01:27:17.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:16 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T01:27:17.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:16 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T01:27:17.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:16 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:17.174 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:16 smithi047 ceph-mon[29638]: Reconfiguring daemon mgr.b on smithi160 2024-09-17T01:27:17.178 INFO:teuthology.orchestra.run.smithi047.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-17T01:27:17.178 INFO:teuthology.orchestra.run.smithi047.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-17T01:27:17.178 INFO:teuthology.orchestra.run.smithi047.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-17T01:27:17.211 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:16 smithi160 ceph-mon[32760]: pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:17.211 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:16 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:17.211 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:16 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:17.211 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:16 smithi160 ceph-mon[32760]: Reconfiguring mgr.b (monmap changed)... 2024-09-17T01:27:17.211 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:16 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T01:27:17.211 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:16 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T01:27:17.211 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:16 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:17.211 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:16 smithi160 ceph-mon[32760]: Reconfiguring daemon mgr.b on smithi160 2024-09-17T01:27:17.442 INFO:teuthology.orchestra.run.smithi047.stderr:17 2024-09-17T01:27:17.453 INFO:teuthology.orchestra.run.smithi047.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-17T01:27:17.465 INFO:teuthology.orchestra.run.smithi047.stderr:++ cat crushmap.txt 2024-09-17T01:27:17.466 INFO:teuthology.orchestra.run.smithi047.stderr:+ CRUSH_MAP='# begin crush map 2024-09-17T01:27:17.466 INFO:teuthology.orchestra.run.smithi047.stderr:tunable choose_local_tries 0 2024-09-17T01:27:17.467 INFO:teuthology.orchestra.run.smithi047.stderr:tunable choose_local_fallback_tries 0 2024-09-17T01:27:17.467 INFO:teuthology.orchestra.run.smithi047.stderr:tunable choose_total_tries 50 2024-09-17T01:27:17.467 INFO:teuthology.orchestra.run.smithi047.stderr:tunable chooseleaf_descend_once 1 2024-09-17T01:27:17.467 INFO:teuthology.orchestra.run.smithi047.stderr:tunable chooseleaf_vary_r 1 2024-09-17T01:27:17.467 INFO:teuthology.orchestra.run.smithi047.stderr:tunable chooseleaf_stable 1 2024-09-17T01:27:17.467 INFO:teuthology.orchestra.run.smithi047.stderr:tunable straw_calc_version 1 2024-09-17T01:27:17.467 INFO:teuthology.orchestra.run.smithi047.stderr:tunable allowed_bucket_algs 54 2024-09-17T01:27:17.467 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-09-17T01:27:17.467 INFO:teuthology.orchestra.run.smithi047.stderr:# devices 2024-09-17T01:27:17.467 INFO:teuthology.orchestra.run.smithi047.stderr:device 0 osd.0 class ssd 2024-09-17T01:27:17.467 INFO:teuthology.orchestra.run.smithi047.stderr:device 1 osd.1 class ssd 2024-09-17T01:27:17.467 INFO:teuthology.orchestra.run.smithi047.stderr:device 2 osd.2 class ssd 2024-09-17T01:27:17.467 INFO:teuthology.orchestra.run.smithi047.stderr:device 3 osd.3 class ssd 2024-09-17T01:27:17.467 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-09-17T01:27:17.468 INFO:teuthology.orchestra.run.smithi047.stderr:# types 2024-09-17T01:27:17.468 INFO:teuthology.orchestra.run.smithi047.stderr:type 0 osd 2024-09-17T01:27:17.468 INFO:teuthology.orchestra.run.smithi047.stderr:type 1 host 2024-09-17T01:27:17.468 INFO:teuthology.orchestra.run.smithi047.stderr:type 2 chassis 2024-09-17T01:27:17.468 INFO:teuthology.orchestra.run.smithi047.stderr:type 3 rack 2024-09-17T01:27:17.468 INFO:teuthology.orchestra.run.smithi047.stderr:type 4 row 2024-09-17T01:27:17.468 INFO:teuthology.orchestra.run.smithi047.stderr:type 5 pdu 2024-09-17T01:27:17.468 INFO:teuthology.orchestra.run.smithi047.stderr:type 6 pod 2024-09-17T01:27:17.468 INFO:teuthology.orchestra.run.smithi047.stderr:type 7 room 2024-09-17T01:27:17.468 INFO:teuthology.orchestra.run.smithi047.stderr:type 8 datacenter 2024-09-17T01:27:17.468 INFO:teuthology.orchestra.run.smithi047.stderr:type 9 zone 2024-09-17T01:27:17.468 INFO:teuthology.orchestra.run.smithi047.stderr:type 10 region 2024-09-17T01:27:17.468 INFO:teuthology.orchestra.run.smithi047.stderr:type 11 root 2024-09-17T01:27:17.469 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-09-17T01:27:17.469 INFO:teuthology.orchestra.run.smithi047.stderr:# buckets 2024-09-17T01:27:17.469 INFO:teuthology.orchestra.run.smithi047.stderr:host smithi047 { 2024-09-17T01:27:17.469 INFO:teuthology.orchestra.run.smithi047.stderr: id -3 # do not change unnecessarily 2024-09-17T01:27:17.469 INFO:teuthology.orchestra.run.smithi047.stderr: id -4 class ssd # do not change unnecessarily 2024-09-17T01:27:17.469 INFO:teuthology.orchestra.run.smithi047.stderr: # weight 0.17459 2024-09-17T01:27:17.469 INFO:teuthology.orchestra.run.smithi047.stderr: alg straw2 2024-09-17T01:27:17.469 INFO:teuthology.orchestra.run.smithi047.stderr: hash 0 # rjenkins1 2024-09-17T01:27:17.469 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.0 weight 0.08730 2024-09-17T01:27:17.469 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.1 weight 0.08730 2024-09-17T01:27:17.469 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-09-17T01:27:17.469 INFO:teuthology.orchestra.run.smithi047.stderr:host smithi160 { 2024-09-17T01:27:17.469 INFO:teuthology.orchestra.run.smithi047.stderr: id -5 # do not change unnecessarily 2024-09-17T01:27:17.470 INFO:teuthology.orchestra.run.smithi047.stderr: id -6 class ssd # do not change unnecessarily 2024-09-17T01:27:17.470 INFO:teuthology.orchestra.run.smithi047.stderr: # weight 0.17459 2024-09-17T01:27:17.470 INFO:teuthology.orchestra.run.smithi047.stderr: alg straw2 2024-09-17T01:27:17.470 INFO:teuthology.orchestra.run.smithi047.stderr: hash 0 # rjenkins1 2024-09-17T01:27:17.470 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.2 weight 0.08730 2024-09-17T01:27:17.470 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.3 weight 0.08730 2024-09-17T01:27:17.470 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-09-17T01:27:17.470 INFO:teuthology.orchestra.run.smithi047.stderr:host smithi191 { 2024-09-17T01:27:17.470 INFO:teuthology.orchestra.run.smithi047.stderr: id -7 # do not change unnecessarily 2024-09-17T01:27:17.470 INFO:teuthology.orchestra.run.smithi047.stderr: id -8 class ssd # do not change unnecessarily 2024-09-17T01:27:17.470 INFO:teuthology.orchestra.run.smithi047.stderr: # weight 0.00000 2024-09-17T01:27:17.470 INFO:teuthology.orchestra.run.smithi047.stderr: alg straw2 2024-09-17T01:27:17.470 INFO:teuthology.orchestra.run.smithi047.stderr: hash 0 # rjenkins1 2024-09-17T01:27:17.471 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-09-17T01:27:17.471 INFO:teuthology.orchestra.run.smithi047.stderr:root default { 2024-09-17T01:27:17.471 INFO:teuthology.orchestra.run.smithi047.stderr: id -1 # do not change unnecessarily 2024-09-17T01:27:17.471 INFO:teuthology.orchestra.run.smithi047.stderr: id -2 class ssd # do not change unnecessarily 2024-09-17T01:27:17.471 INFO:teuthology.orchestra.run.smithi047.stderr: # weight 0.34918 2024-09-17T01:27:17.471 INFO:teuthology.orchestra.run.smithi047.stderr: alg straw2 2024-09-17T01:27:17.471 INFO:teuthology.orchestra.run.smithi047.stderr: hash 0 # rjenkins1 2024-09-17T01:27:17.471 INFO:teuthology.orchestra.run.smithi047.stderr: item smithi047 weight 0.17459 2024-09-17T01:27:17.471 INFO:teuthology.orchestra.run.smithi047.stderr: item smithi160 weight 0.17459 2024-09-17T01:27:17.471 INFO:teuthology.orchestra.run.smithi047.stderr: item smithi191 weight 0.00000 2024-09-17T01:27:17.471 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-09-17T01:27:17.471 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-09-17T01:27:17.471 INFO:teuthology.orchestra.run.smithi047.stderr:# rules 2024-09-17T01:27:17.471 INFO:teuthology.orchestra.run.smithi047.stderr:rule replicated_rule { 2024-09-17T01:27:17.472 INFO:teuthology.orchestra.run.smithi047.stderr: id 0 2024-09-17T01:27:17.472 INFO:teuthology.orchestra.run.smithi047.stderr: type replicated 2024-09-17T01:27:17.472 INFO:teuthology.orchestra.run.smithi047.stderr: step take default 2024-09-17T01:27:17.472 INFO:teuthology.orchestra.run.smithi047.stderr: step choose firstn 0 type osd 2024-09-17T01:27:17.472 INFO:teuthology.orchestra.run.smithi047.stderr: step emit 2024-09-17T01:27:17.472 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-09-17T01:27:17.472 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-09-17T01:27:17.472 INFO:teuthology.orchestra.run.smithi047.stderr:# end crush map' 2024-09-17T01:27:17.472 INFO:teuthology.orchestra.run.smithi047.stderr:+ grep -q smithi191 2024-09-17T01:27:17.472 INFO:teuthology.orchestra.run.smithi047.stderr:+ ceph orch host rm smithi191 --rm-crush-entry 2024-09-17T01:27:18.288 INFO:teuthology.orchestra.run.smithi047.stdout:Removed host 'smithi191' 2024-09-17T01:27:18.299 INFO:teuthology.orchestra.run.smithi047.stderr:+ sleep 30 2024-09-17T01:27:18.541 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:18 smithi160 ceph-mon[32760]: from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:27:18.541 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:18 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:18.541 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:18 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:18.541 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:18 smithi160 ceph-mon[32760]: Reconfiguring osd.2 (monmap changed)... 2024-09-17T01:27:18.541 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:18 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T01:27:18.541 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:18 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:18.542 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:18 smithi160 ceph-mon[32760]: Reconfiguring daemon osd.2 on smithi160 2024-09-17T01:27:18.542 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:18 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/3791614275' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-17T01:27:18.542 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:18 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi191"}]: dispatch 2024-09-17T01:27:18.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:18 smithi047 ceph-mon[29638]: from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi191", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:27:18.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:18 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:18.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:18 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:18.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:18 smithi047 ceph-mon[29638]: Reconfiguring osd.2 (monmap changed)... 2024-09-17T01:27:18.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:18 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T01:27:18.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:18 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:18.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:18 smithi047 ceph-mon[29638]: Reconfiguring daemon osd.2 on smithi160 2024-09-17T01:27:18.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:18 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/3791614275' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-17T01:27:18.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:18 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi191"}]: dispatch 2024-09-17T01:27:19.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:19 smithi160 ceph-mon[32760]: pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:19.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:19 smithi160 ceph-mon[32760]: from='client.14530 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi191", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:27:19.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:19 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi191"}]': finished 2024-09-17T01:27:19.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:19 smithi160 ceph-mon[32760]: osdmap e56: 4 total, 4 up, 4 in 2024-09-17T01:27:19.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:19 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:19.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:19 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi191"}]: dispatch 2024-09-17T01:27:19.634 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:19 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi191"}]': finished 2024-09-17T01:27:19.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:19 smithi160 ceph-mon[32760]: Removed host smithi191 2024-09-17T01:27:19.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:19 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:19.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:19 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:19.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:19 smithi160 ceph-mon[32760]: Reconfiguring osd.3 (monmap changed)... 2024-09-17T01:27:19.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:19 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T01:27:19.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:19 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:19.635 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:19 smithi160 ceph-mon[32760]: Reconfiguring daemon osd.3 on smithi160 2024-09-17T01:27:19.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:19 smithi047 ceph-mon[29638]: pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:19.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:19 smithi047 ceph-mon[29638]: from='client.14530 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi191", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T01:27:19.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:19 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi191"}]': finished 2024-09-17T01:27:19.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:19 smithi047 ceph-mon[29638]: osdmap e56: 4 total, 4 up, 4 in 2024-09-17T01:27:19.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:19 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:19.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:19 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi191"}]: dispatch 2024-09-17T01:27:19.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:19 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi191"}]': finished 2024-09-17T01:27:19.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:19 smithi047 ceph-mon[29638]: Removed host smithi191 2024-09-17T01:27:19.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:19 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:19.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:19 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:19.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:19 smithi047 ceph-mon[29638]: Reconfiguring osd.3 (monmap changed)... 2024-09-17T01:27:19.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:19 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T01:27:19.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:19 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:19.674 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:19 smithi047 ceph-mon[29638]: Reconfiguring daemon osd.3 on smithi160 2024-09-17T01:27:21.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:20 smithi160 ceph-mon[32760]: pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:21.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:20 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:21.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:20 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:21.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:20 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:27:21.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:20 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:21.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:20 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:27:21.385 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:20 smithi160 ceph-mon[32760]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:21.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:20 smithi047 ceph-mon[29638]: pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:21.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:20 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:21.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:20 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:21.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:20 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T01:27:21.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:20 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T01:27:21.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:20 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T01:27:21.424 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:20 smithi047 ceph-mon[29638]: from='mgr.14150 172.21.15.47:0/3156471636' entity='mgr.a' 2024-09-17T01:27:23.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:22 smithi160 ceph-mon[32760]: pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:23.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:22 smithi047 ceph-mon[29638]: pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:25.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:24 smithi160 ceph-mon[32760]: pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:25.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:24 smithi047 ceph-mon[29638]: pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:27.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:26 smithi160 ceph-mon[32760]: pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:27.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:26 smithi047 ceph-mon[29638]: pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:29.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:29 smithi160 ceph-mon[32760]: pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:29.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:29 smithi047 ceph-mon[29638]: pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:31.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:31 smithi160 ceph-mon[32760]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:31.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:31 smithi047 ceph-mon[29638]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:33.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:33 smithi160 ceph-mon[32760]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:33.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:33 smithi047 ceph-mon[29638]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:35.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:35 smithi160 ceph-mon[32760]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:35.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:35 smithi047 ceph-mon[29638]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:37.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:37 smithi160 ceph-mon[32760]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:37.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:37 smithi047 ceph-mon[29638]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:39.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:39 smithi160 ceph-mon[32760]: pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:39.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:39 smithi047 ceph-mon[29638]: pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:41.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:41 smithi160 ceph-mon[32760]: pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:41.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:41 smithi047 ceph-mon[29638]: pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:43.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:43 smithi160 ceph-mon[32760]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:43.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:43 smithi047 ceph-mon[29638]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:45.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:45 smithi160 ceph-mon[32760]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:45.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:45 smithi047 ceph-mon[29638]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:47.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:47 smithi160 ceph-mon[32760]: pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:47.423 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:47 smithi047 ceph-mon[29638]: pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:48.302 INFO:teuthology.orchestra.run.smithi047.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-17T01:27:48.575 INFO:teuthology.orchestra.run.smithi047.stderr:18 2024-09-17T01:27:48.585 INFO:teuthology.orchestra.run.smithi047.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-17T01:27:48.598 INFO:teuthology.orchestra.run.smithi047.stderr:++ cat crushmap.txt 2024-09-17T01:27:48.599 INFO:teuthology.orchestra.run.smithi047.stderr:+ CRUSH_MAP='# begin crush map 2024-09-17T01:27:48.599 INFO:teuthology.orchestra.run.smithi047.stderr:tunable choose_local_tries 0 2024-09-17T01:27:48.599 INFO:teuthology.orchestra.run.smithi047.stderr:tunable choose_local_fallback_tries 0 2024-09-17T01:27:48.599 INFO:teuthology.orchestra.run.smithi047.stderr:tunable choose_total_tries 50 2024-09-17T01:27:48.599 INFO:teuthology.orchestra.run.smithi047.stderr:tunable chooseleaf_descend_once 1 2024-09-17T01:27:48.600 INFO:teuthology.orchestra.run.smithi047.stderr:tunable chooseleaf_vary_r 1 2024-09-17T01:27:48.600 INFO:teuthology.orchestra.run.smithi047.stderr:tunable chooseleaf_stable 1 2024-09-17T01:27:48.600 INFO:teuthology.orchestra.run.smithi047.stderr:tunable straw_calc_version 1 2024-09-17T01:27:48.600 INFO:teuthology.orchestra.run.smithi047.stderr:tunable allowed_bucket_algs 54 2024-09-17T01:27:48.600 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-09-17T01:27:48.600 INFO:teuthology.orchestra.run.smithi047.stderr:# devices 2024-09-17T01:27:48.600 INFO:teuthology.orchestra.run.smithi047.stderr:device 0 osd.0 class ssd 2024-09-17T01:27:48.600 INFO:teuthology.orchestra.run.smithi047.stderr:device 1 osd.1 class ssd 2024-09-17T01:27:48.600 INFO:teuthology.orchestra.run.smithi047.stderr:device 2 osd.2 class ssd 2024-09-17T01:27:48.600 INFO:teuthology.orchestra.run.smithi047.stderr:device 3 osd.3 class ssd 2024-09-17T01:27:48.600 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-09-17T01:27:48.600 INFO:teuthology.orchestra.run.smithi047.stderr:# types 2024-09-17T01:27:48.601 INFO:teuthology.orchestra.run.smithi047.stderr:type 0 osd 2024-09-17T01:27:48.601 INFO:teuthology.orchestra.run.smithi047.stderr:type 1 host 2024-09-17T01:27:48.601 INFO:teuthology.orchestra.run.smithi047.stderr:type 2 chassis 2024-09-17T01:27:48.601 INFO:teuthology.orchestra.run.smithi047.stderr:type 3 rack 2024-09-17T01:27:48.601 INFO:teuthology.orchestra.run.smithi047.stderr:type 4 row 2024-09-17T01:27:48.601 INFO:teuthology.orchestra.run.smithi047.stderr:type 5 pdu 2024-09-17T01:27:48.601 INFO:teuthology.orchestra.run.smithi047.stderr:type 6 pod 2024-09-17T01:27:48.601 INFO:teuthology.orchestra.run.smithi047.stderr:type 7 room 2024-09-17T01:27:48.601 INFO:teuthology.orchestra.run.smithi047.stderr:type 8 datacenter 2024-09-17T01:27:48.601 INFO:teuthology.orchestra.run.smithi047.stderr:type 9 zone 2024-09-17T01:27:48.601 INFO:teuthology.orchestra.run.smithi047.stderr:type 10 region 2024-09-17T01:27:48.601 INFO:teuthology.orchestra.run.smithi047.stderr:type 11 root 2024-09-17T01:27:48.601 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-09-17T01:27:48.602 INFO:teuthology.orchestra.run.smithi047.stderr:# buckets 2024-09-17T01:27:48.602 INFO:teuthology.orchestra.run.smithi047.stderr:host smithi047 { 2024-09-17T01:27:48.602 INFO:teuthology.orchestra.run.smithi047.stderr: id -3 # do not change unnecessarily 2024-09-17T01:27:48.602 INFO:teuthology.orchestra.run.smithi047.stderr: id -4 class ssd # do not change unnecessarily 2024-09-17T01:27:48.602 INFO:teuthology.orchestra.run.smithi047.stderr: # weight 0.17459 2024-09-17T01:27:48.602 INFO:teuthology.orchestra.run.smithi047.stderr: alg straw2 2024-09-17T01:27:48.602 INFO:teuthology.orchestra.run.smithi047.stderr: hash 0 # rjenkins1 2024-09-17T01:27:48.602 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.0 weight 0.08730 2024-09-17T01:27:48.602 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.1 weight 0.08730 2024-09-17T01:27:48.602 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-09-17T01:27:48.602 INFO:teuthology.orchestra.run.smithi047.stderr:host smithi160 { 2024-09-17T01:27:48.602 INFO:teuthology.orchestra.run.smithi047.stderr: id -5 # do not change unnecessarily 2024-09-17T01:27:48.603 INFO:teuthology.orchestra.run.smithi047.stderr: id -6 class ssd # do not change unnecessarily 2024-09-17T01:27:48.603 INFO:teuthology.orchestra.run.smithi047.stderr: # weight 0.17459 2024-09-17T01:27:48.603 INFO:teuthology.orchestra.run.smithi047.stderr: alg straw2 2024-09-17T01:27:48.603 INFO:teuthology.orchestra.run.smithi047.stderr: hash 0 # rjenkins1 2024-09-17T01:27:48.603 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.2 weight 0.08730 2024-09-17T01:27:48.603 INFO:teuthology.orchestra.run.smithi047.stderr: item osd.3 weight 0.08730 2024-09-17T01:27:48.603 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-09-17T01:27:48.603 INFO:teuthology.orchestra.run.smithi047.stderr:root default { 2024-09-17T01:27:48.603 INFO:teuthology.orchestra.run.smithi047.stderr: id -1 # do not change unnecessarily 2024-09-17T01:27:48.603 INFO:teuthology.orchestra.run.smithi047.stderr: id -2 class ssd # do not change unnecessarily 2024-09-17T01:27:48.603 INFO:teuthology.orchestra.run.smithi047.stderr: # weight 0.34918 2024-09-17T01:27:48.603 INFO:teuthology.orchestra.run.smithi047.stderr: alg straw2 2024-09-17T01:27:48.603 INFO:teuthology.orchestra.run.smithi047.stderr: hash 0 # rjenkins1 2024-09-17T01:27:48.604 INFO:teuthology.orchestra.run.smithi047.stderr: item smithi047 weight 0.17459 2024-09-17T01:27:48.604 INFO:teuthology.orchestra.run.smithi047.stderr: item smithi160 weight 0.17459 2024-09-17T01:27:48.604 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-09-17T01:27:48.604 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-09-17T01:27:48.604 INFO:teuthology.orchestra.run.smithi047.stderr:# rules 2024-09-17T01:27:48.604 INFO:teuthology.orchestra.run.smithi047.stderr:rule replicated_rule { 2024-09-17T01:27:48.604 INFO:teuthology.orchestra.run.smithi047.stderr: id 0 2024-09-17T01:27:48.604 INFO:teuthology.orchestra.run.smithi047.stderr: type replicated 2024-09-17T01:27:48.604 INFO:teuthology.orchestra.run.smithi047.stderr: step take default 2024-09-17T01:27:48.604 INFO:teuthology.orchestra.run.smithi047.stderr: step choose firstn 0 type osd 2024-09-17T01:27:48.605 INFO:teuthology.orchestra.run.smithi047.stderr: step emit 2024-09-17T01:27:48.605 INFO:teuthology.orchestra.run.smithi047.stderr:} 2024-09-17T01:27:48.605 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-09-17T01:27:48.605 INFO:teuthology.orchestra.run.smithi047.stderr:# end crush map' 2024-09-17T01:27:48.605 INFO:teuthology.orchestra.run.smithi047.stderr:+ grep -q smithi191 2024-09-17T01:27:49.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:49 smithi047 ceph-mon[29638]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:49.173 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:49 smithi047 ceph-mon[29638]: from='client.? 172.21.15.47:0/281971446' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-17T01:27:49.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:49 smithi160 ceph-mon[32760]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-09-17T01:27:49.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:49 smithi160 ceph-mon[32760]: from='client.? 172.21.15.47:0/281971446' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-17T01:27:49.459 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-17T01:27:49.467 INFO:tasks.cephadm:Teardown begin 2024-09-17T01:27:49.468 DEBUG:teuthology.orchestra.run.smithi047:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T01:27:49.499 DEBUG:teuthology.orchestra.run.smithi160:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T01:27:49.532 DEBUG:teuthology.orchestra.run.smithi191:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T01:27:49.566 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-17T01:27:49.567 DEBUG:teuthology.orchestra.run.smithi047:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T01:27:49.586 DEBUG:teuthology.orchestra.run.smithi160:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T01:27:49.604 DEBUG:teuthology.orchestra.run.smithi191:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T01:27:49.625 INFO:tasks.cephadm:Stopping all daemons... 2024-09-17T01:27:49.625 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-17T01:27:49.625 DEBUG:teuthology.orchestra.run.smithi047:> sudo systemctl stop ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.a 2024-09-17T01:27:49.923 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:49 smithi047 systemd[1]: Stopping Ceph mon.a for 181a7ed8-7493-11ef-bceb-c7b262605968... 2024-09-17T01:27:50.257 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:49 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a[29634]: 2024-09-17T01:27:49.931+0000 7f389deb0640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-17T01:27:50.258 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:49 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a[29634]: 2024-09-17T01:27:49.931+0000 7f389deb0640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-17T01:27:50.258 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:49 smithi047 podman[56731]: 2024-09-17 01:27:49.973567367 +0000 UTC m=+0.146947688 container died 3b2a12b780814d19007e0255d183bc520fb6e4a226495d9f43debd5649c3417e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a, ceph=True, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, RELEASE=squid-c2ddf97, GIT_CLEAN=True) 2024-09-17T01:27:50.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:50 smithi047 podman[56731]: 2024-09-17 01:27:50.442914338 +0000 UTC m=+0.616294644 container cleanup 3b2a12b780814d19007e0255d183bc520fb6e4a226495d9f43debd5649c3417e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a, maintainer=Guillaume Abrioux , ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=squid-c2ddf97, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T01:27:50.673 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:50 smithi047 bash[56731]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a 2024-09-17T01:27:51.040 DEBUG:teuthology.orchestra.run.smithi047:> sudo pkill -f 'journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.a.service' 2024-09-17T01:27:51.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:50 smithi047 podman[56759]: 2024-09-17 01:27:50.802646377 +0000 UTC m=+0.832102398 container remove 3b2a12b780814d19007e0255d183bc520fb6e4a226495d9f43debd5649c3417e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-a, GIT_CLEAN=True, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=squid-c2ddf97, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0) 2024-09-17T01:27:51.063 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:51 smithi047 systemd[1]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-17T01:27:51.064 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:51 smithi047 systemd[1]: Stopped Ceph mon.a for 181a7ed8-7493-11ef-bceb-c7b262605968. 2024-09-17T01:27:51.064 INFO:journalctl@ceph.mon.a.smithi047.stdout:Sep 17 01:27:51 smithi047 systemd[1]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.a.service: Consumed 6.568s CPU time. 2024-09-17T01:27:51.085 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T01:27:51.085 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-17T01:27:51.086 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-17T01:27:51.086 DEBUG:teuthology.orchestra.run.smithi160:> sudo systemctl stop ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.b 2024-09-17T01:27:51.384 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:51 smithi160 systemd[1]: Stopping Ceph mon.b for 181a7ed8-7493-11ef-bceb-c7b262605968... 2024-09-17T01:27:51.766 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:51 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-b[32756]: 2024-09-17T01:27:51.400+0000 7f1a2340f640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.b -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-17T01:27:51.766 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:51 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-b[32756]: 2024-09-17T01:27:51.400+0000 7f1a2340f640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-17T01:27:51.766 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:51 smithi160 podman[47474]: 2024-09-17 01:27:51.45195704 +0000 UTC m=+0.170257866 container died c356c179e3f810b6155a3c24e7e31485ce4cf9371069796fd577ab5475631057 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-b, CEPH_POINT_RELEASE=, ceph=True, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=squid-c2ddf97, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2) 2024-09-17T01:27:52.091 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:51 smithi160 podman[47474]: 2024-09-17 01:27:51.859115748 +0000 UTC m=+0.577416574 container cleanup c356c179e3f810b6155a3c24e7e31485ce4cf9371069796fd577ab5475631057 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-b, GIT_BRANCH=HEAD, ceph=True, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, RELEASE=squid-c2ddf97, org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0) 2024-09-17T01:27:52.091 INFO:journalctl@ceph.mon.b.smithi160.stdout:Sep 17 01:27:51 smithi160 bash[47474]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mon-b 2024-09-17T01:27:52.234 DEBUG:teuthology.orchestra.run.smithi160:> sudo pkill -f 'journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.b.service' 2024-09-17T01:27:52.280 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T01:27:52.280 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-17T01:27:52.280 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-17T01:27:52.280 DEBUG:teuthology.orchestra.run.smithi191:> sudo systemctl stop ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.c 2024-09-17T01:27:52.322 DEBUG:teuthology.orchestra.run.smithi191:> sudo pkill -f 'journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mon.c.service' 2024-09-17T01:27:52.418 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T01:27:52.418 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-17T01:27:52.419 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-17T01:27:52.419 DEBUG:teuthology.orchestra.run.smithi047:> sudo systemctl stop ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mgr.a 2024-09-17T01:27:52.745 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:27:52 smithi047 systemd[1]: Stopping Ceph mgr.a for 181a7ed8-7493-11ef-bceb-c7b262605968... 2024-09-17T01:27:53.162 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:27:52 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a[29867]: 2024-09-17T01:27:52.746+0000 7fc253d07640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mgr -n mgr.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-17T01:27:53.162 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:27:52 smithi047 podman[56950]: 2024-09-17 01:27:52.778688717 +0000 UTC m=+0.160226167 container died 15fd3ded3274899be509f3fdbc70c78dd799c78e6d347a89a73819523e55958a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , RELEASE=squid-c2ddf97, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_CLEAN=True, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2) 2024-09-17T01:27:53.423 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:27:53 smithi047 podman[56950]: 2024-09-17 01:27:53.347030592 +0000 UTC m=+0.728568025 container cleanup 15fd3ded3274899be509f3fdbc70c78dd799c78e6d347a89a73819523e55958a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , RELEASE=squid-c2ddf97, GIT_BRANCH=HEAD, ceph=True, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2) 2024-09-17T01:27:53.423 INFO:journalctl@ceph.mgr.a.smithi047.stdout:Sep 17 01:27:53 smithi047 bash[56950]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-a 2024-09-17T01:27:53.789 DEBUG:teuthology.orchestra.run.smithi047:> sudo pkill -f 'journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mgr.a.service' 2024-09-17T01:27:53.824 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T01:27:53.824 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-17T01:27:53.825 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-17T01:27:53.825 DEBUG:teuthology.orchestra.run.smithi160:> sudo systemctl stop ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mgr.b 2024-09-17T01:27:54.134 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:27:53 smithi160 systemd[1]: Stopping Ceph mgr.b for 181a7ed8-7493-11ef-bceb-c7b262605968... 2024-09-17T01:27:54.468 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:27:54 smithi160 podman[47593]: 2024-09-17 01:27:54.167248079 +0000 UTC m=+0.150473937 container died bb5def9d85c41cb6cdfd22ff31dcfd6f82859007f7b22d361a04757c9ed0e9f6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, RELEASE=squid-c2ddf97, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2) 2024-09-17T01:27:54.468 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:27:54 smithi160 podman[47593]: 2024-09-17 01:27:54.471321129 +0000 UTC m=+0.454546976 container cleanup bb5def9d85c41cb6cdfd22ff31dcfd6f82859007f7b22d361a04757c9ed0e9f6 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, RELEASE=squid-c2ddf97, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2) 2024-09-17T01:27:54.737 INFO:journalctl@ceph.mgr.b.smithi160.stdout:Sep 17 01:27:54 smithi160 bash[47593]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968-mgr-b 2024-09-17T01:27:54.895 DEBUG:teuthology.orchestra.run.smithi160:> sudo pkill -f 'journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@mgr.b.service' 2024-09-17T01:27:54.927 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T01:27:54.927 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-17T01:27:54.928 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-17T01:27:54.928 DEBUG:teuthology.orchestra.run.smithi047:> sudo systemctl stop ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.0 2024-09-17T01:27:55.208 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:27:54 smithi047 systemd[1]: Stopping Ceph osd.0 for 181a7ed8-7493-11ef-bceb-c7b262605968... 2024-09-17T01:27:55.673 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:27:55 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0[42560]: 2024-09-17T01:27:55.209+0000 7fdd30879640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.0 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-17T01:27:55.673 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:27:55 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0[42560]: 2024-09-17T01:27:55.209+0000 7fdd30879640 -1 osd.0 56 *** Got signal Terminated *** 2024-09-17T01:27:55.673 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:27:55 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0[42560]: 2024-09-17T01:27:55.209+0000 7fdd30879640 -1 osd.0 56 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T01:28:00.850 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:28:00 smithi047 podman[57073]: 2024-09-17 01:28:00.587929419 +0000 UTC m=+5.457872345 container died 32c430a005b225659e5f75791aa60a9807fef26d2694e6e9f365b5a9ec52d4ef (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0, org.label-schema.vendor=CentOS, RELEASE=squid-c2ddf97, ceph=True, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731) 2024-09-17T01:28:01.173 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:28:01 smithi047 podman[57073]: 2024-09-17 01:28:01.043271234 +0000 UTC m=+5.913214142 container cleanup 32c430a005b225659e5f75791aa60a9807fef26d2694e6e9f365b5a9ec52d4ef (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0, GIT_BRANCH=HEAD, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, RELEASE=squid-c2ddf97, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T01:28:01.173 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:28:01 smithi047 bash[57073]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0 2024-09-17T01:28:01.673 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:28:01 smithi047 podman[57088]: 2024-09-17 01:28:01.403192087 +0000 UTC m=+0.807767209 container remove 32c430a005b225659e5f75791aa60a9807fef26d2694e6e9f365b5a9ec52d4ef (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0, io.buildah.version=1.37.2, RELEASE=squid-c2ddf97, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.license=GPLv2, GIT_CLEAN=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS) 2024-09-17T01:28:02.128 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:28:01 smithi047 podman[57179]: 2024-09-17 01:28:01.812276574 +0000 UTC m=+0.111185048 container create bb4c9de9757c2fa6ac411db1fac92b56a9130b5ec5b7cdf483709fb4d95a0521 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0-deactivate, org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, RELEASE=squid-c2ddf97, ceph=True, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2) 2024-09-17T01:28:02.128 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:28:01 smithi047 podman[57179]: 2024-09-17 01:28:01.71728028 +0000 UTC m=+0.016188727 image pull ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3 2024-09-17T01:28:02.129 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:28:02 smithi047 podman[57179]: 2024-09-17 01:28:02.048067309 +0000 UTC m=+0.346975749 container init bb4c9de9757c2fa6ac411db1fac92b56a9130b5ec5b7cdf483709fb4d95a0521 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0-deactivate, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, RELEASE=squid-c2ddf97, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731) 2024-09-17T01:28:02.129 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:28:02 smithi047 podman[57179]: 2024-09-17 01:28:02.051534241 +0000 UTC m=+0.350442680 container start bb4c9de9757c2fa6ac411db1fac92b56a9130b5ec5b7cdf483709fb4d95a0521 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=squid-c2ddf97, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_CLEAN=True, ceph=True, org.label-schema.schema-version=1.0) 2024-09-17T01:28:02.129 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:28:02 smithi047 podman[57179]: 2024-09-17 01:28:02.131109107 +0000 UTC m=+0.430017541 container attach bb4c9de9757c2fa6ac411db1fac92b56a9130b5ec5b7cdf483709fb4d95a0521 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0-deactivate, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, RELEASE=squid-c2ddf97, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0) 2024-09-17T01:28:02.423 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:28:02 smithi047 podman[57179]: 2024-09-17 01:28:02.249538692 +0000 UTC m=+0.548447123 container died bb4c9de9757c2fa6ac411db1fac92b56a9130b5ec5b7cdf483709fb4d95a0521 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0-deactivate, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, io.buildah.version=1.37.2, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, RELEASE=squid-c2ddf97) 2024-09-17T01:28:03.055 DEBUG:teuthology.orchestra.run.smithi047:> sudo pkill -f 'journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.0.service' 2024-09-17T01:28:03.081 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:28:03 smithi047 podman[57202]: 2024-09-17 01:28:03.03500433 +0000 UTC m=+0.779091006 container remove bb4c9de9757c2fa6ac411db1fac92b56a9130b5ec5b7cdf483709fb4d95a0521 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-0-deactivate, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, ceph=True, RELEASE=squid-c2ddf97, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS) 2024-09-17T01:28:03.081 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:28:03 smithi047 systemd[1]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.0.service: Deactivated successfully. 2024-09-17T01:28:03.081 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:28:03 smithi047 systemd[1]: Stopped Ceph osd.0 for 181a7ed8-7493-11ef-bceb-c7b262605968. 2024-09-17T01:28:03.081 INFO:journalctl@ceph.osd.0.smithi047.stdout:Sep 17 01:28:03 smithi047 systemd[1]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.0.service: Consumed 3.297s CPU time. 2024-09-17T01:28:03.097 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T01:28:03.098 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-17T01:28:03.098 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-17T01:28:03.098 DEBUG:teuthology.orchestra.run.smithi047:> sudo systemctl stop ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.1 2024-09-17T01:28:03.423 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:03 smithi047 systemd[1]: Stopping Ceph osd.1 for 181a7ed8-7493-11ef-bceb-c7b262605968... 2024-09-17T01:28:03.923 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:03 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1[48387]: 2024-09-17T01:28:03.448+0000 7feb10f53640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.1 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-17T01:28:03.923 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:03 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1[48387]: 2024-09-17T01:28:03.448+0000 7feb10f53640 -1 osd.1 56 *** Got signal Terminated *** 2024-09-17T01:28:03.923 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:03 smithi047 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1[48387]: 2024-09-17T01:28:03.448+0000 7feb10f53640 -1 osd.1 56 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T01:28:09.219 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:08 smithi047 podman[57284]: 2024-09-17 01:28:08.962532946 +0000 UTC m=+5.637454645 container died 13cdce09a534d300acbf56fb7a48b9ab798ec75a5b8d8f8ee0e824f5a24755a8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1, RELEASE=squid-c2ddf97, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.build-date=20240731) 2024-09-17T01:28:09.586 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:09 smithi047 podman[57284]: 2024-09-17 01:28:09.403901206 +0000 UTC m=+6.078822892 container cleanup 13cdce09a534d300acbf56fb7a48b9ab798ec75a5b8d8f8ee0e824f5a24755a8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_CLEAN=True, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, RELEASE=squid-c2ddf97, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731) 2024-09-17T01:28:09.586 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:09 smithi047 bash[57284]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1 2024-09-17T01:28:09.923 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:09 smithi047 podman[57299]: 2024-09-17 01:28:09.588328534 +0000 UTC m=+0.624235663 container remove 13cdce09a534d300acbf56fb7a48b9ab798ec75a5b8d8f8ee0e824f5a24755a8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=squid-c2ddf97, CEPH_POINT_RELEASE=, ceph=True, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux ) 2024-09-17T01:28:10.298 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:10 smithi047 podman[57389]: 2024-09-17 01:28:10.005789288 +0000 UTC m=+0.101505854 container create 915579b7e93f48a37cc0af02123b09e96283e433596d289ad7b4fbc0af4c3276 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1-deactivate, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, CEPH_POINT_RELEASE=, RELEASE=squid-c2ddf97) 2024-09-17T01:28:10.298 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:10 smithi047 podman[57389]: 2024-09-17 01:28:09.920878102 +0000 UTC m=+0.016594610 image pull ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3 2024-09-17T01:28:10.298 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:10 smithi047 podman[57389]: 2024-09-17 01:28:10.217047576 +0000 UTC m=+0.312764092 container init 915579b7e93f48a37cc0af02123b09e96283e433596d289ad7b4fbc0af4c3276 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1-deactivate, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, RELEASE=squid-c2ddf97, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731) 2024-09-17T01:28:10.298 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:10 smithi047 podman[57389]: 2024-09-17 01:28:10.22040219 +0000 UTC m=+0.316118698 container start 915579b7e93f48a37cc0af02123b09e96283e433596d289ad7b4fbc0af4c3276 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1-deactivate, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, RELEASE=squid-c2ddf97, CEPH_POINT_RELEASE=, GIT_CLEAN=True, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731) 2024-09-17T01:28:10.298 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:10 smithi047 podman[57389]: 2024-09-17 01:28:10.300051302 +0000 UTC m=+0.395767821 container attach 915579b7e93f48a37cc0af02123b09e96283e433596d289ad7b4fbc0af4c3276 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1-deactivate, RELEASE=squid-c2ddf97, GIT_CLEAN=True, ceph=True, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T01:28:10.673 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:10 smithi047 podman[57389]: 2024-09-17 01:28:10.422151872 +0000 UTC m=+0.517868388 container died 915579b7e93f48a37cc0af02123b09e96283e433596d289ad7b4fbc0af4c3276 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1-deactivate, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=squid-c2ddf97, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, ceph=True, org.label-schema.build-date=20240731) 2024-09-17T01:28:11.125 INFO:journalctl@ceph.osd.1.smithi047.stdout:Sep 17 01:28:11 smithi047 podman[57413]: 2024-09-17 01:28:11.111346366 +0000 UTC m=+0.683496763 container remove 915579b7e93f48a37cc0af02123b09e96283e433596d289ad7b4fbc0af4c3276 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-1-deactivate, RELEASE=squid-c2ddf97, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, ceph=True, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T01:28:11.132 DEBUG:teuthology.orchestra.run.smithi047:> sudo pkill -f 'journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.1.service' 2024-09-17T01:28:11.177 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T01:28:11.177 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-17T01:28:11.177 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-17T01:28:11.177 DEBUG:teuthology.orchestra.run.smithi160:> sudo systemctl stop ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.2 2024-09-17T01:28:11.489 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:11 smithi160 systemd[1]: Stopping Ceph osd.2 for 181a7ed8-7493-11ef-bceb-c7b262605968... 2024-09-17T01:28:11.884 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:11 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2[36924]: 2024-09-17T01:28:11.489+0000 7f0ce951c640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.2 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-17T01:28:11.884 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:11 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2[36924]: 2024-09-17T01:28:11.489+0000 7f0ce951c640 -1 osd.2 56 *** Got signal Terminated *** 2024-09-17T01:28:11.884 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:11 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2[36924]: 2024-09-17T01:28:11.489+0000 7f0ce951c640 -1 osd.2 56 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T01:28:17.264 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:16 smithi160 podman[47727]: 2024-09-17 01:28:16.974142831 +0000 UTC m=+5.587206159 container died 6f832da2465ca1463bb299d7642d777546542fdd453b3bbd33d33435351aebfe (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2, ceph=True, GIT_BRANCH=HEAD, RELEASE=squid-c2ddf97, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=) 2024-09-17T01:28:17.606 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:17 smithi160 podman[47727]: 2024-09-17 01:28:17.424080195 +0000 UTC m=+6.037143519 container cleanup 6f832da2465ca1463bb299d7642d777546542fdd453b3bbd33d33435351aebfe (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2, CEPH_POINT_RELEASE=, ceph=True, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, RELEASE=squid-c2ddf97, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T01:28:17.606 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:17 smithi160 bash[47727]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2 2024-09-17T01:28:17.884 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:17 smithi160 podman[47744]: 2024-09-17 01:28:17.608886443 +0000 UTC m=+0.623638724 container remove 6f832da2465ca1463bb299d7642d777546542fdd453b3bbd33d33435351aebfe (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2, CEPH_POINT_RELEASE=, RELEASE=squid-c2ddf97, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, GIT_CLEAN=True, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T01:28:18.336 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:18 smithi160 podman[47828]: 2024-09-17 01:28:17.931682819 +0000 UTC m=+0.015650935 image pull ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3 2024-09-17T01:28:18.336 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:18 smithi160 podman[47828]: 2024-09-17 01:28:18.034634111 +0000 UTC m=+0.118602255 container create 89eb27b56a04dcd37655d5a7e49aa482d55772a1e915bd308ba71dd7845dd306 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, ceph=True, org.label-schema.vendor=CentOS, GIT_CLEAN=True, RELEASE=squid-c2ddf97, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=) 2024-09-17T01:28:18.336 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:18 smithi160 podman[47828]: 2024-09-17 01:28:18.264281082 +0000 UTC m=+0.348249198 container init 89eb27b56a04dcd37655d5a7e49aa482d55772a1e915bd308ba71dd7845dd306 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2-deactivate, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, RELEASE=squid-c2ddf97, GIT_CLEAN=True, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0) 2024-09-17T01:28:18.336 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:18 smithi160 podman[47828]: 2024-09-17 01:28:18.267516322 +0000 UTC m=+0.351484425 container start 89eb27b56a04dcd37655d5a7e49aa482d55772a1e915bd308ba71dd7845dd306 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2-deactivate, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.build-date=20240731, RELEASE=squid-c2ddf97) 2024-09-17T01:28:18.336 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:18 smithi160 podman[47828]: 2024-09-17 01:28:18.338949165 +0000 UTC m=+0.422917265 container attach 89eb27b56a04dcd37655d5a7e49aa482d55772a1e915bd308ba71dd7845dd306 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2-deactivate, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, RELEASE=squid-c2ddf97, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2) 2024-09-17T01:28:18.634 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:18 smithi160 podman[47828]: 2024-09-17 01:28:18.45716877 +0000 UTC m=+0.541136879 container died 89eb27b56a04dcd37655d5a7e49aa482d55772a1e915bd308ba71dd7845dd306 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2-deactivate, RELEASE=squid-c2ddf97, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS) 2024-09-17T01:28:18.992 INFO:journalctl@ceph.osd.2.smithi160.stdout:Sep 17 01:28:18 smithi160 podman[47850]: 2024-09-17 01:28:18.975378196 +0000 UTC m=+0.509029938 container remove 89eb27b56a04dcd37655d5a7e49aa482d55772a1e915bd308ba71dd7845dd306 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-2-deactivate, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=squid-c2ddf97, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux ) 2024-09-17T01:28:18.997 DEBUG:teuthology.orchestra.run.smithi160:> sudo pkill -f 'journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.2.service' 2024-09-17T01:28:19.036 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T01:28:19.036 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-17T01:28:19.036 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-17T01:28:19.036 DEBUG:teuthology.orchestra.run.smithi160:> sudo systemctl stop ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.3 2024-09-17T01:28:19.261 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:19 smithi160 systemd[1]: Stopping Ceph osd.3 for 181a7ed8-7493-11ef-bceb-c7b262605968... 2024-09-17T01:28:19.634 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:19 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3[42388]: 2024-09-17T01:28:19.353+0000 7fa31e1e2640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.3 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-09-17T01:28:19.634 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:19 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3[42388]: 2024-09-17T01:28:19.353+0000 7fa31e1e2640 -1 osd.3 56 *** Got signal Terminated *** 2024-09-17T01:28:19.634 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:19 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3[42388]: 2024-09-17T01:28:19.353+0000 7fa31e1e2640 -1 osd.3 56 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-17T01:28:23.884 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:23 smithi160 ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3[42388]: 2024-09-17T01:28:23.547+0000 7fa31a7f8640 -1 osd.3 56 heartbeat_check: no reply from 172.21.15.47:6806 osd.0 since back 2024-09-17T01:27:58.483114+0000 front 2024-09-17T01:27:58.483099+0000 (oldest deadline 2024-09-17T01:28:22.582895+0000) 2024-09-17T01:28:25.185 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:24 smithi160 podman[47931]: 2024-09-17 01:28:24.905310907 +0000 UTC m=+5.639883656 container died 14240e9c0d33414336773d47143cf7f155dc879b6bb565eaef2211995ee74e6e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3, ceph=True, GIT_CLEAN=True, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=squid-c2ddf97) 2024-09-17T01:28:25.618 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:25 smithi160 podman[47931]: 2024-09-17 01:28:25.38654848 +0000 UTC m=+6.121121221 container cleanup 14240e9c0d33414336773d47143cf7f155dc879b6bb565eaef2211995ee74e6e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, RELEASE=squid-c2ddf97, ceph=True, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T01:28:25.618 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:25 smithi160 bash[47931]: ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3 2024-09-17T01:28:25.884 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:25 smithi160 podman[47959]: 2024-09-17 01:28:25.620939881 +0000 UTC m=+0.712020087 container remove 14240e9c0d33414336773d47143cf7f155dc879b6bb565eaef2211995ee74e6e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3, RELEASE=squid-c2ddf97, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2) 2024-09-17T01:28:26.204 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:25 smithi160 podman[48046]: 2024-09-17 01:28:25.921655529 +0000 UTC m=+0.112041127 container create 3857fd0bfc9cc18a1f5d9ce8ba1fa9e7dee6a3eb1452558873292e5b351f4d58 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3-deactivate, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, ceph=True, GIT_CLEAN=True, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, RELEASE=squid-c2ddf97, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD) 2024-09-17T01:28:26.204 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:25 smithi160 podman[48046]: 2024-09-17 01:28:25.825301484 +0000 UTC m=+0.015687087 image pull ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3 2024-09-17T01:28:26.204 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:26 smithi160 podman[48046]: 2024-09-17 01:28:26.132136715 +0000 UTC m=+0.322522320 container init 3857fd0bfc9cc18a1f5d9ce8ba1fa9e7dee6a3eb1452558873292e5b351f4d58 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3-deactivate, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, ceph=True, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, RELEASE=squid-c2ddf97, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T01:28:26.205 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:26 smithi160 podman[48046]: 2024-09-17 01:28:26.135686598 +0000 UTC m=+0.326072199 container start 3857fd0bfc9cc18a1f5d9ce8ba1fa9e7dee6a3eb1452558873292e5b351f4d58 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3-deactivate, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, RELEASE=squid-c2ddf97, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T01:28:26.205 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:26 smithi160 podman[48046]: 2024-09-17 01:28:26.207128438 +0000 UTC m=+0.397514035 container attach 3857fd0bfc9cc18a1f5d9ce8ba1fa9e7dee6a3eb1452558873292e5b351f4d58 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3-deactivate, RELEASE=squid-c2ddf97, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, ceph=True, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731) 2024-09-17T01:28:26.598 INFO:journalctl@ceph.osd.3.smithi160.stdout:Sep 17 01:28:26 smithi160 podman[48046]: 2024-09-17 01:28:26.32160045 +0000 UTC m=+0.511986064 container died 3857fd0bfc9cc18a1f5d9ce8ba1fa9e7dee6a3eb1452558873292e5b351f4d58 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-181a7ed8-7493-11ef-bceb-c7b262605968-osd-3-deactivate, RELEASE=squid-c2ddf97, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T01:28:26.873 DEBUG:teuthology.orchestra.run.smithi160:> sudo pkill -f 'journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.3.service' 2024-09-17T01:28:26.910 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T01:28:26.911 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-17T01:28:26.911 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-17T01:28:26.911 DEBUG:teuthology.orchestra.run.smithi191:> sudo systemctl stop ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.4 2024-09-17T01:28:26.957 DEBUG:teuthology.orchestra.run.smithi191:> sudo pkill -f 'journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.4.service' 2024-09-17T01:28:26.992 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T01:28:26.992 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-17T01:28:26.992 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-17T01:28:26.992 DEBUG:teuthology.orchestra.run.smithi191:> sudo systemctl stop ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.5 2024-09-17T01:28:27.070 DEBUG:teuthology.orchestra.run.smithi191:> sudo pkill -f 'journalctl -f -n 0 -u ceph-181a7ed8-7493-11ef-bceb-c7b262605968@osd.5.service' 2024-09-17T01:28:27.143 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T01:28:27.144 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-17T01:28:27.144 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T01:28:27.357 INFO:teuthology.orchestra.run.smithi047.stdout:Deleting cluster with fsid: 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:28:28.646 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T01:28:28.847 INFO:teuthology.orchestra.run.smithi160.stdout:Deleting cluster with fsid: 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:28:30.141 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T01:28:30.343 INFO:teuthology.orchestra.run.smithi191.stdout:Deleting cluster with fsid: 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:28:30.744 DEBUG:teuthology.orchestra.run.smithi047:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T01:28:30.782 DEBUG:teuthology.orchestra.run.smithi160:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T01:28:30.810 DEBUG:teuthology.orchestra.run.smithi191:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T01:28:30.838 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-17T01:28:30.840 DEBUG:teuthology.misc:Transferring archived files from smithi047:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7908028/remote/smithi047/crash 2024-09-17T01:28:30.841 DEBUG:teuthology.orchestra.run.smithi047:> sudo tar c -f - -C /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/crash -- . 2024-09-17T01:28:30.882 INFO:teuthology.orchestra.run.smithi047.stderr:tar: /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T01:28:30.882 INFO:teuthology.orchestra.run.smithi047.stderr:tar: Error is not recoverable: exiting now 2024-09-17T01:28:30.884 DEBUG:teuthology.misc:Transferring archived files from smithi160:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7908028/remote/smithi160/crash 2024-09-17T01:28:30.885 DEBUG:teuthology.orchestra.run.smithi160:> sudo tar c -f - -C /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/crash -- . 2024-09-17T01:28:30.932 INFO:teuthology.orchestra.run.smithi160.stderr:tar: /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T01:28:30.933 INFO:teuthology.orchestra.run.smithi160.stderr:tar: Error is not recoverable: exiting now 2024-09-17T01:28:30.934 DEBUG:teuthology.misc:Transferring archived files from smithi191:/var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7908028/remote/smithi191/crash 2024-09-17T01:28:30.935 DEBUG:teuthology.orchestra.run.smithi191:> sudo tar c -f - -C /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/crash -- . 2024-09-17T01:28:30.976 INFO:teuthology.orchestra.run.smithi191.stderr:tar: /var/lib/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T01:28:30.977 INFO:teuthology.orchestra.run.smithi191.stderr:tar: Error is not recoverable: exiting now 2024-09-17T01:28:30.978 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-17T01:28:30.978 DEBUG:teuthology.orchestra.run.smithi047:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | egrep -v CEPHADM_STRAY_HOST | egrep -v CEPHADM_STRAY_DAEMON | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-17T01:28:31.014 INFO:tasks.cephadm:Compressing logs... 2024-09-17T01:28:31.015 DEBUG:teuthology.orchestra.run.smithi047:> 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-17T01:28:31.058 DEBUG:teuthology.orchestra.run.smithi160:> 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-17T01:28:31.060 DEBUG:teuthology.orchestra.run.smithi191:> 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-17T01:28:31.083 INFO:teuthology.orchestra.run.smithi160.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-17T01:28:31.083 INFO:teuthology.orchestra.run.smithi160.stderr:: No such file or directory 2024-09-17T01:28:31.083 INFO:teuthology.orchestra.run.smithi160.stderr:gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mgr.b.log 2024-09-17T01:28:31.083 INFO:teuthology.orchestra.run.smithi160.stderr:gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-17T01:28:31.083 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-volume.log: /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-17T01:28:31.087 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.2.log 2024-09-17T01:28:31.087 INFO:teuthology.orchestra.run.smithi160.stderr:gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.log 2024-09-17T01:28:31.087 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.cephadm.log: /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mon.b.log 2024-09-17T01:28:31.087 INFO:teuthology.orchestra.run.smithi160.stderr: 82.6% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-17T01:28:31.087 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.log: gzip -5 90.1% --verbose -- -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-17T01:28:31.087 INFO:teuthology.orchestra.run.smithi160.stderr: /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.3.log 2024-09-17T01:28:31.088 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mon.b.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-17T01:28:31.088 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.3.log: 85.6% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-17T01:28:31.088 INFO:teuthology.orchestra.run.smithi160.stderr:/var/log/ceph/cephadm.log: 90.8% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mgr.b.log.gz 2024-09-17T01:28:31.088 INFO:teuthology.orchestra.run.smithi160.stderr: 90.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-17T01:28:31.089 INFO:teuthology.orchestra.run.smithi047.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.0.log 2024-09-17T01:28:31.089 INFO:teuthology.orchestra.run.smithi047.stderr:: No such file or directory 2024-09-17T01:28:31.089 INFO:teuthology.orchestra.run.smithi047.stderr:gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.1.log 2024-09-17T01:28:31.089 INFO:teuthology.orchestra.run.smithi047.stderr:gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mgr.a.log 2024-09-17T01:28:31.090 INFO:teuthology.orchestra.run.smithi047.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.0.log: /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-17T01:28:31.090 INFO:teuthology.orchestra.run.smithi047.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mgr.a.log: gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-17T01:28:31.090 INFO:teuthology.orchestra.run.smithi047.stderr:gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-17T01:28:31.090 INFO:teuthology.orchestra.run.smithi047.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-volume.log: /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mon.a.log 2024-09-17T01:28:31.090 INFO:teuthology.orchestra.run.smithi047.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.log 2024-09-17T01:28:31.090 INFO:teuthology.orchestra.run.smithi047.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mon.a.log: 82.9% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-17T01:28:31.090 INFO:teuthology.orchestra.run.smithi047.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-17T01:28:31.090 INFO:teuthology.orchestra.run.smithi047.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.log: /var/log/ceph/cephadm.log: 89.9% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-17T01:28:31.090 INFO:teuthology.orchestra.run.smithi047.stderr: 85.8% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-17T01:28:31.090 INFO:teuthology.orchestra.run.smithi047.stderr: 89.8% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-17T01:28:31.091 INFO:teuthology.orchestra.run.smithi160.stderr: 91.2% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-17T01:28:31.092 INFO:teuthology.orchestra.run.smithi191.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-17T01:28:31.092 INFO:teuthology.orchestra.run.smithi191.stderr:: No such file or directory 2024-09-17T01:28:31.092 INFO:teuthology.orchestra.run.smithi191.stderr:gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.4.log 2024-09-17T01:28:31.092 INFO:teuthology.orchestra.run.smithi191.stderr:gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-17T01:28:31.093 INFO:teuthology.orchestra.run.smithi191.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-volume.log: /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.4.log: gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mon.c.log 2024-09-17T01:28:31.093 INFO:teuthology.orchestra.run.smithi191.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-17T01:28:31.094 INFO:teuthology.orchestra.run.smithi191.stderr:gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.5.log 2024-09-17T01:28:31.095 INFO:teuthology.orchestra.run.smithi191.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mon.c.log: /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.log 2024-09-17T01:28:31.095 INFO:teuthology.orchestra.run.smithi191.stderr: 80.4% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-17T01:28:31.095 INFO:teuthology.orchestra.run.smithi191.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-17T01:28:31.095 INFO:teuthology.orchestra.run.smithi191.stderr: 90.0% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-17T01:28:31.095 INFO:teuthology.orchestra.run.smithi191.stderr:/var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.log: /var/log/ceph/cephadm.log: 85.1% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-17T01:28:31.095 INFO:teuthology.orchestra.run.smithi191.stderr: 88.7% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-17T01:28:31.095 INFO:teuthology.orchestra.run.smithi191.stderr: 91.4% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-17T01:28:31.095 INFO:teuthology.orchestra.run.smithi047.stderr: 91.1% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-17T01:28:31.104 INFO:teuthology.orchestra.run.smithi191.stderr: 92.8% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.4.log.gz 2024-09-17T01:28:31.106 INFO:teuthology.orchestra.run.smithi191.stderr: 92.7% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.5.log.gz 2024-09-17T01:28:31.124 INFO:teuthology.orchestra.run.smithi047.stderr: 93.3% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.1.log.gz 2024-09-17T01:28:31.129 INFO:teuthology.orchestra.run.smithi160.stderr: 93.0% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.3.log.gz 2024-09-17T01:28:31.132 INFO:teuthology.orchestra.run.smithi191.stderr: 92.5% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mon.c.log.gz 2024-09-17T01:28:31.134 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-09-17T01:28:31.134 INFO:teuthology.orchestra.run.smithi191.stderr:real 0m0.059s 2024-09-17T01:28:31.134 INFO:teuthology.orchestra.run.smithi191.stderr:user 0m0.103s 2024-09-17T01:28:31.134 INFO:teuthology.orchestra.run.smithi191.stderr:sys 0m0.020s 2024-09-17T01:28:31.148 INFO:teuthology.orchestra.run.smithi047.stderr: 89.4% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mgr.a.log.gz 2024-09-17T01:28:31.149 INFO:teuthology.orchestra.run.smithi047.stderr: 93.2% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.0.log.gz 2024-09-17T01:28:31.167 INFO:teuthology.orchestra.run.smithi160.stderr: 92.2% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mon.b.log.gz 2024-09-17T01:28:31.178 INFO:teuthology.orchestra.run.smithi160.stderr: 93.4% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-osd.2.log.gz 2024-09-17T01:28:31.180 INFO:teuthology.orchestra.run.smithi160.stderr: 2024-09-17T01:28:31.180 INFO:teuthology.orchestra.run.smithi160.stderr:real 0m0.107s 2024-09-17T01:28:31.180 INFO:teuthology.orchestra.run.smithi160.stderr:user 0m0.227s 2024-09-17T01:28:31.180 INFO:teuthology.orchestra.run.smithi160.stderr:sys 0m0.034s 2024-09-17T01:28:31.309 INFO:teuthology.orchestra.run.smithi047.stderr: 91.0% -- replaced with /var/log/ceph/181a7ed8-7493-11ef-bceb-c7b262605968/ceph-mon.a.log.gz 2024-09-17T01:28:31.310 INFO:teuthology.orchestra.run.smithi047.stderr: 2024-09-17T01:28:31.310 INFO:teuthology.orchestra.run.smithi047.stderr:real 0m0.238s 2024-09-17T01:28:31.310 INFO:teuthology.orchestra.run.smithi047.stderr:user 0m0.391s 2024-09-17T01:28:31.310 INFO:teuthology.orchestra.run.smithi047.stderr:sys 0m0.043s 2024-09-17T01:28:31.311 INFO:tasks.cephadm:Archiving logs... 2024-09-17T01:28:31.312 DEBUG:teuthology.misc:Transferring archived files from smithi047:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7908028/remote/smithi047/log 2024-09-17T01:28:31.313 DEBUG:teuthology.orchestra.run.smithi047:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T01:28:31.450 DEBUG:teuthology.misc:Transferring archived files from smithi160:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7908028/remote/smithi160/log 2024-09-17T01:28:31.450 DEBUG:teuthology.orchestra.run.smithi160:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T01:28:31.514 DEBUG:teuthology.misc:Transferring archived files from smithi191:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7908028/remote/smithi191/log 2024-09-17T01:28:31.515 DEBUG:teuthology.orchestra.run.smithi191:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T01:28:31.559 INFO:tasks.cephadm:Removing cluster... 2024-09-17T01:28:31.559 DEBUG:teuthology.orchestra.run.smithi047:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 --force 2024-09-17T01:28:31.755 INFO:teuthology.orchestra.run.smithi047.stdout:Deleting cluster with fsid: 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:28:32.017 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 --force 2024-09-17T01:28:32.208 INFO:teuthology.orchestra.run.smithi160.stdout:Deleting cluster with fsid: 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:28:32.457 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 181a7ed8-7493-11ef-bceb-c7b262605968 --force 2024-09-17T01:28:32.653 INFO:teuthology.orchestra.run.smithi191.stdout:Deleting cluster with fsid: 181a7ed8-7493-11ef-bceb-c7b262605968 2024-09-17T01:28:32.898 INFO:tasks.cephadm:Removing cephadm ... 2024-09-17T01:28:32.898 DEBUG:teuthology.orchestra.run.smithi047:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T01:28:32.917 DEBUG:teuthology.orchestra.run.smithi160:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T01:28:32.934 DEBUG:teuthology.orchestra.run.smithi191:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T01:28:32.949 INFO:tasks.cephadm:Teardown complete 2024-09-17T01:28:32.949 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-17T01:28:32.958 INFO:teuthology.task.install.util:Removing shipped files: /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer... 2024-09-17T01:28:32.958 DEBUG:teuthology.orchestra.run.smithi047:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-17T01:28:32.961 DEBUG:teuthology.orchestra.run.smithi160:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-17T01:28:32.976 DEBUG:teuthology.orchestra.run.smithi191:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-17T01:28:33.090 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-17T01:28:33.100 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-17T01:28:33.100 DEBUG:teuthology.orchestra.run.smithi047:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T01:28:33.103 DEBUG:teuthology.orchestra.run.smithi160:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T01:28:33.105 DEBUG:teuthology.orchestra.run.smithi191:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T01:28:33.117 INFO:teuthology.orchestra.run.smithi160.stderr:bash: line 1: ntpq: command not found 2024-09-17T01:28:33.118 INFO:teuthology.orchestra.run.smithi047.stderr:bash: line 1: ntpq: command not found 2024-09-17T01:28:33.119 INFO:teuthology.orchestra.run.smithi191.stderr:bash: line 1: ntpq: command not found 2024-09-17T01:28:33.121 INFO:teuthology.orchestra.run.smithi160.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T01:28:33.121 INFO:teuthology.orchestra.run.smithi160.stdout:=============================================================================== 2024-09-17T01:28:33.121 INFO:teuthology.orchestra.run.smithi160.stdout:^* hv01.front.sepia.ceph.com 3 6 377 31 +3245us[+3250us] +/- 49ms 2024-09-17T01:28:33.121 INFO:teuthology.orchestra.run.smithi160.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 28 -3713us[-3713us] +/- 61ms 2024-09-17T01:28:33.122 INFO:teuthology.orchestra.run.smithi160.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 29 -2201us[-2201us] +/- 101ms 2024-09-17T01:28:33.122 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:28:33.122 INFO:teuthology.orchestra.run.smithi047.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T01:28:33.122 INFO:teuthology.orchestra.run.smithi047.stdout:=============================================================================== 2024-09-17T01:28:33.123 INFO:teuthology.orchestra.run.smithi047.stdout:^* hv01.front.sepia.ceph.com 3 6 377 29 +3483us[+3271us] +/- 49ms 2024-09-17T01:28:33.123 INFO:teuthology.orchestra.run.smithi047.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 30 -3487us[-3699us] +/- 61ms 2024-09-17T01:28:33.123 INFO:teuthology.orchestra.run.smithi047.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 29 -1965us[-1965us] +/- 101ms 2024-09-17T01:28:33.123 INFO:teuthology.orchestra.run.smithi047.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:28:33.124 INFO:teuthology.orchestra.run.smithi191.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T01:28:33.124 INFO:teuthology.orchestra.run.smithi191.stdout:=============================================================================== 2024-09-17T01:28:33.124 INFO:teuthology.orchestra.run.smithi191.stdout:^* hv01.front.sepia.ceph.com 3 6 377 30 +3256us[+3264us] +/- 49ms 2024-09-17T01:28:33.125 INFO:teuthology.orchestra.run.smithi191.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 29 -3712us[-3712us] +/- 61ms 2024-09-17T01:28:33.125 INFO:teuthology.orchestra.run.smithi191.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 30 -2191us[-2191us] +/- 101ms 2024-09-17T01:28:33.125 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T01:28:33.126 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-17T01:28:33.135 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-17T01:28:33.135 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-17T01:28:33.143 DEBUG:teuthology.orchestra.run.smithi047:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-09-17T01:28:33.242 DEBUG:teuthology.orchestra.run.smithi160:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-09-17T01:28:33.308 DEBUG:teuthology.orchestra.run.smithi191:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-09-17T01:28:33.372 DEBUG:teuthology.orchestra.run.smithi047:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-17T01:28:33.402 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T01:28:33.403 DEBUG:teuthology.orchestra.run.smithi160:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-17T01:28:33.431 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T01:28:33.431 DEBUG:teuthology.orchestra.run.smithi191:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-17T01:28:33.458 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T01:28:33.459 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-17T01:28:33.468 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-17T01:28:33.477 INFO:teuthology.task.internal:Duration was 848.053047 seconds 2024-09-17T01:28:33.477 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-17T01:28:33.485 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-17T01:28:33.486 DEBUG:teuthology.orchestra.run.smithi047:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T01:28:33.488 DEBUG:teuthology.orchestra.run.smithi160:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T01:28:33.491 DEBUG:teuthology.orchestra.run.smithi191:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T01:28:33.527 INFO:teuthology.orchestra.run.smithi160.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T01:28:33.528 INFO:teuthology.orchestra.run.smithi047.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T01:28:33.537 INFO:teuthology.orchestra.run.smithi191.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T01:28:33.924 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-17T01:28:33.924 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi047.front.sepia.ceph.com 2024-09-17T01:28:33.924 DEBUG:teuthology.orchestra.run.smithi047:> 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-17T01:28:33.947 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi160.front.sepia.ceph.com 2024-09-17T01:28:33.947 DEBUG:teuthology.orchestra.run.smithi160:> 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-17T01:28:33.991 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi191.front.sepia.ceph.com 2024-09-17T01:28:33.991 DEBUG:teuthology.orchestra.run.smithi191:> 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-17T01:28:34.020 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-17T01:28:34.021 DEBUG:teuthology.orchestra.run.smithi047:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T01:28:34.023 DEBUG:teuthology.orchestra.run.smithi160:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T01:28:34.034 DEBUG:teuthology.orchestra.run.smithi191:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T01:28:34.087 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-17T01:28:34.087 DEBUG:teuthology.orchestra.run.smithi047:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T01:28:34.091 DEBUG:teuthology.orchestra.run.smithi160:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T01:28:34.101 DEBUG:teuthology.orchestra.run.smithi191:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T01:28:34.274 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-17T01:28:34.289 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-17T01:28:34.289 DEBUG:teuthology.orchestra.run.smithi047:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T01:28:34.315 DEBUG:teuthology.orchestra.run.smithi160:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T01:28:34.341 DEBUG:teuthology.orchestra.run.smithi191:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T01:28:34.366 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-17T01:28:34.376 DEBUG:teuthology.orchestra.run.smithi047:> 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-17T01:28:34.379 DEBUG:teuthology.orchestra.run.smithi160:> 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-17T01:28:34.383 DEBUG:teuthology.orchestra.run.smithi191:> 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-17T01:28:34.401 INFO:teuthology.orchestra.run.smithi047.stdout:kernel.core_pattern = core 2024-09-17T01:28:34.404 INFO:teuthology.orchestra.run.smithi160.stdout:kernel.core_pattern = core 2024-09-17T01:28:34.430 INFO:teuthology.orchestra.run.smithi191.stdout:kernel.core_pattern = core 2024-09-17T01:28:34.451 DEBUG:teuthology.orchestra.run.smithi047:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T01:28:34.483 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T01:28:34.483 DEBUG:teuthology.orchestra.run.smithi160:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T01:28:34.498 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T01:28:34.498 DEBUG:teuthology.orchestra.run.smithi191:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T01:28:34.512 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T01:28:34.513 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-17T01:28:34.522 INFO:teuthology.task.internal:Transferring archived files... 2024-09-17T01:28:34.523 DEBUG:teuthology.misc:Transferring archived files from smithi047:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7908028/remote/smithi047 2024-09-17T01:28:34.523 DEBUG:teuthology.orchestra.run.smithi047:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T01:28:34.561 DEBUG:teuthology.misc:Transferring archived files from smithi160:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7908028/remote/smithi160 2024-09-17T01:28:34.562 DEBUG:teuthology.orchestra.run.smithi160:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T01:28:34.597 DEBUG:teuthology.misc:Transferring archived files from smithi191:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7908028/remote/smithi191 2024-09-17T01:28:34.598 DEBUG:teuthology.orchestra.run.smithi191:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T01:28:34.631 INFO:teuthology.task.internal:Removing archive directory... 2024-09-17T01:28:34.631 DEBUG:teuthology.orchestra.run.smithi047:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T01:28:34.634 DEBUG:teuthology.orchestra.run.smithi160:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T01:28:34.636 DEBUG:teuthology.orchestra.run.smithi191:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T01:28:34.682 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-17T01:28:34.694 INFO:teuthology.task.internal:Not uploading archives. 2024-09-17T01:28:34.694 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-17T01:28:34.703 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-17T01:28:34.703 DEBUG:teuthology.orchestra.run.smithi047:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T01:28:34.705 DEBUG:teuthology.orchestra.run.smithi160:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T01:28:34.707 DEBUG:teuthology.orchestra.run.smithi191:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T01:28:34.718 INFO:teuthology.orchestra.run.smithi047.stdout: 262169 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 01:28 /home/ubuntu/cephtest 2024-09-17T01:28:34.720 INFO:teuthology.orchestra.run.smithi160.stdout: 262169 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 01:28 /home/ubuntu/cephtest 2024-09-17T01:28:34.736 INFO:teuthology.orchestra.run.smithi191.stdout: 262169 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 01:28 /home/ubuntu/cephtest 2024-09-17T01:28:34.737 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-17T01:28:34.747 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-17T01:28:34.768 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} duration: 848.0530469417572 flavor: default owner: scheduled_teuthology@teuthology success: true 2024-09-17T01:28:34.768 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T01:28:34.857 INFO:teuthology.run:pass